Update requirements.txt
Browse files- requirements.txt +39 -25
requirements.txt
CHANGED
|
@@ -1,39 +1,53 @@
|
|
| 1 |
-
# ===== Core Framework =====
|
| 2 |
-
gradio
|
| 3 |
fastapi==0.104.1
|
|
|
|
|
|
|
|
|
|
| 4 |
httpx==0.25.2
|
|
|
|
| 5 |
|
| 6 |
-
# ===== Data
|
| 7 |
pandas==2.1.3
|
| 8 |
-
|
| 9 |
-
pillow==10.1.0
|
| 10 |
python-dateutil==2.8.2
|
| 11 |
|
| 12 |
-
# =====
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
-
# =====
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
pydantic
|
| 20 |
-
tiktoken
|
| 21 |
-
anthropic
|
| 22 |
-
tenacity
|
| 23 |
|
| 24 |
-
# =====
|
| 25 |
-
|
| 26 |
|
| 27 |
-
# ===== AI Models =====
|
| 28 |
-
google-generativeai
|
| 29 |
-
|
| 30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
# ===== Audio Processing =====
|
| 33 |
elevenlabs==1.5.0
|
| 34 |
pydub==0.25.1
|
| 35 |
|
| 36 |
-
# =====
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
# ===== Core Framework (Install First) =====
|
| 2 |
+
gradio==4.44.0
|
| 3 |
fastapi==0.104.1
|
| 4 |
+
uvicorn==0.24.0
|
| 5 |
+
|
| 6 |
+
# ===== HTTP & Networking =====
|
| 7 |
httpx==0.25.2
|
| 8 |
+
requests==2.31.0
|
| 9 |
|
| 10 |
+
# ===== Data Processing =====
|
| 11 |
pandas==2.1.3
|
| 12 |
+
numpy==1.26.2
|
|
|
|
| 13 |
python-dateutil==2.8.2
|
| 14 |
|
| 15 |
+
# ===== Visualization =====
|
| 16 |
+
plotly==5.18.0
|
| 17 |
+
pillow==10.1.0
|
| 18 |
+
|
| 19 |
+
# ===== Environment & Config =====
|
| 20 |
+
python-dotenv==1.0.0
|
| 21 |
+
pydantic==2.5.0
|
| 22 |
|
| 23 |
+
# ===== AI Models - OpenAI =====
|
| 24 |
+
openai==1.3.0
|
| 25 |
+
tiktoken==0.5.1
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
# ===== AI Models - Anthropic =====
|
| 28 |
+
anthropic==0.7.7
|
| 29 |
|
| 30 |
+
# ===== AI Models - Google =====
|
| 31 |
+
google-generativeai==0.3.2
|
| 32 |
+
|
| 33 |
+
# ===== LangChain (Specific versions to avoid conflicts) =====
|
| 34 |
+
langchain==0.0.340
|
| 35 |
+
langchain-anthropic==0.0.1
|
| 36 |
+
langchain-core==0.0.13
|
| 37 |
+
|
| 38 |
+
# ===== LlamaIndex (Compatible versions) =====
|
| 39 |
+
llama-index==0.9.14
|
| 40 |
+
llama-index-core==0.9.14
|
| 41 |
+
llama-index-embeddings-openai==0.1.1
|
| 42 |
+
llama-index-llms-openai==0.1.1
|
| 43 |
|
| 44 |
# ===== Audio Processing =====
|
| 45 |
elevenlabs==1.5.0
|
| 46 |
pydub==0.25.1
|
| 47 |
|
| 48 |
+
# ===== Utilities =====
|
| 49 |
+
tenacity==8.2.3
|
| 50 |
+
huggingface-hub==0.20.0
|
| 51 |
+
|
| 52 |
+
# ===== Database (Optional) =====
|
| 53 |
+
redis==5.0.1
|