Spaces:
Sleeping
Sleeping
gamingflexer
commited on
Commit
·
04c9f9d
1
Parent(s):
50cdbc5
Add .gitignore and config.py files
Browse files- .gitignore +3 -1
- src/config.py +5 -0
.gitignore
CHANGED
@@ -158,4 +158,6 @@ cython_debug/
|
|
158 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
#.idea/
|
161 |
-
src/module/data/*
|
|
|
|
|
|
158 |
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
159 |
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
160 |
#.idea/
|
161 |
+
src/module/data/*
|
162 |
+
data/*
|
163 |
+
app
|
src/config.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from decouple import config
|
2 |
+
import os
|
3 |
+
|
4 |
+
OPENAI_API_KEY = config('OPENAI_API_KEY', default="")
|
5 |
+
emmbedding_model = "text-embedding-3-large"
|