sammy786 commited on
Commit
198fa70
·
verified ·
1 Parent(s): 74938fe

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +39 -25
requirements.txt CHANGED
@@ -1,39 +1,53 @@
1
- # ===== Core Framework =====
2
- gradio>=4.44.0
3
  fastapi==0.104.1
 
 
 
4
  httpx==0.25.2
 
5
 
6
- # ===== Data & Visualization =====
7
  pandas==2.1.3
8
- plotly>=5.18.0
9
- pillow==10.1.0
10
  python-dateutil==2.8.2
11
 
12
- # ===== Hugging Face & Environment =====
13
- huggingface-hub>=0.20.0
14
- python-dotenv>=1.0.0
 
 
 
 
15
 
16
- # ===== LangChain & AI =====
17
- langchain
18
- langchain-anthropic
19
- pydantic
20
- tiktoken
21
- anthropic
22
- tenacity
23
 
24
- # ===== Database =====
25
- redis
26
 
27
- # ===== AI Models =====
28
- google-generativeai
29
- openai
30
- modal
 
 
 
 
 
 
 
 
 
31
 
32
  # ===== Audio Processing =====
33
  elevenlabs==1.5.0
34
  pydub==0.25.1
35
 
36
- # ===== LlamaIndex RAG =====
37
- llama-index>=0.10.0
38
- llama-index-embeddings-openai>=0.1.0
39
- llama-index-llms-openai>=0.1.0
 
 
 
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