Spaces:
Sleeping
Sleeping
joelorellana
commited on
Commit
·
05efb8e
1
Parent(s):
3b44961
modifying config to delete api keys
Browse files- .gitignore +1 -1
- config.py +5 -0
.gitignore
CHANGED
@@ -207,7 +207,7 @@ poetry.toml
|
|
207 |
pyrightconfig.json
|
208 |
|
209 |
# files
|
210 |
-
config.py
|
211 |
img/
|
212 |
output_img/
|
213 |
test.py
|
|
|
207 |
pyrightconfig.json
|
208 |
|
209 |
# files
|
210 |
+
# config.py
|
211 |
img/
|
212 |
output_img/
|
213 |
test.py
|
config.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
""" This module contains all the environment variables for the project. """
|
2 |
+
OPENAI_API_KEY = "" # OpenAI API Key
|
3 |
+
REPLICATE_API_TOKEN = '' # Replicate API Token
|
4 |
+
GOAPIKEY = "" # GOAPIKEY
|
5 |
+
STABILITY_API_KEY = '' # Stability API Key
|