Spaces:
Sleeping
Sleeping
Commit
·
d89a149
1
Parent(s):
280f93c
added gradio
Browse files- requirements.txt +2 -1
- scripts/config.py +1 -1
requirements.txt
CHANGED
@@ -8,4 +8,5 @@ PyPDF2
|
|
8 |
python-docx
|
9 |
openpyxl
|
10 |
sentence-transformers
|
11 |
-
google-generativeai
|
|
|
|
8 |
python-docx
|
9 |
openpyxl
|
10 |
sentence-transformers
|
11 |
+
google-generativeai
|
12 |
+
gradio
|
scripts/config.py
CHANGED
@@ -20,7 +20,7 @@ PROCESSED_DATA_FILE = "processed_data/processed_chunks.csv"
|
|
20 |
UPLOAD_FOLDER = "UPLOADED_DOCUMENTS"
|
21 |
INDEX_STATE_FILE = "processed_data/index_store.json"
|
22 |
|
23 |
-
GOOGLE_API_KEY = os.getenv('GOOGLE_API_KEY'
|
24 |
HF_REPO_ID = "MrSimple01/AIEXP_RAG_FILES"
|
25 |
HF_TOKEN = os.getenv('HF_TOKEN')
|
26 |
LLM_MODEL = "gemini-2.0-flash"
|
|
|
20 |
UPLOAD_FOLDER = "UPLOADED_DOCUMENTS"
|
21 |
INDEX_STATE_FILE = "processed_data/index_store.json"
|
22 |
|
23 |
+
GOOGLE_API_KEY = os.getenv('GOOGLE_API_KEY')
|
24 |
HF_REPO_ID = "MrSimple01/AIEXP_RAG_FILES"
|
25 |
HF_TOKEN = os.getenv('HF_TOKEN')
|
26 |
LLM_MODEL = "gemini-2.0-flash"
|