Update requirements.txt
Browse files- requirements.txt +16 -32
requirements.txt
CHANGED
|
@@ -1,41 +1,31 @@
|
|
| 1 |
-
|
| 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
|
| 25 |
tiktoken
|
| 26 |
|
| 27 |
-
# ===== AI Models - Anthropic =====
|
| 28 |
-
anthropic
|
| 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
|
| 40 |
llama-index-core
|
| 41 |
llama-index-embeddings-openai
|
|
@@ -45,9 +35,3 @@ llama-index-llms-openai
|
|
| 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
|
|
|
|
| 1 |
+
gradio==4.12.0
|
|
|
|
| 2 |
fastapi==0.104.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
pandas==2.1.3
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
plotly==5.18.0
|
| 5 |
pillow==10.1.0
|
| 6 |
+
python-dateutil==2.8.2
|
| 7 |
+
plotly>=5.18.0
|
| 8 |
+
huggingface-hub>=0.20.0
|
| 9 |
+
python-dotenv>=1.0.0
|
| 10 |
+
langchain==0.1.20 # Agent framework
|
| 11 |
+
langchain-anthropic
|
| 12 |
+
pydantic==2.6.0 # Enhanced data validation
|
| 13 |
+
tiktoken==0.6.0 # Token counting
|
| 14 |
+
|
| 15 |
+
anthropic==0.40.0
|
| 16 |
+
httpx==0.27.2
|
| 17 |
+
tenacity==8.5.0
|
| 18 |
+
redis==5.2.0
|
| 19 |
+
google-generativeai
|
| 20 |
+
|
| 21 |
|
|
|
|
|
|
|
|
|
|
| 22 |
|
|
|
|
| 23 |
openai
|
| 24 |
tiktoken
|
| 25 |
|
|
|
|
|
|
|
| 26 |
|
|
|
|
|
|
|
| 27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
|
|
|
| 29 |
llama-index
|
| 30 |
llama-index-core
|
| 31 |
llama-index-embeddings-openai
|
|
|
|
| 35 |
elevenlabs==1.5.0
|
| 36 |
pydub==0.25.1
|
| 37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|