Upload 3 files
Browse files- .env +3 -0
- app.py +1 -0
- requirements.txt +9 -0
.env
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
HF_TOKEN=your_huggingface_token
|
| 2 |
+
SERPAPI_KEY=your_serpapi_key
|
| 3 |
+
JWT_SECRET=changeme123
|
app.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
# Place the final fixed app.py code here
|
requirements.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fastapi==0.105.0
|
| 2 |
+
uvicorn==0.23.0
|
| 3 |
+
gradio==3.42.0
|
| 4 |
+
transformers==4.34.0
|
| 5 |
+
torch>=2.0.0
|
| 6 |
+
langchain==0.0.318
|
| 7 |
+
langchain-community==0.1.34
|
| 8 |
+
python-dotenv==1.0.1
|
| 9 |
+
chromadb==0.3.29
|