edouardlgp commited on
Commit
fd66696
·
verified ·
1 Parent(s): 9ecf4d4

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +25 -6
requirements.txt CHANGED
@@ -1,6 +1,25 @@
1
- crewai==0.28.8
2
- langchain==0.1.16 # Specific version compatible with both
3
- langchain-community==0.0.32 # The exact version langchain 0.1.16 requires
4
- gradio==4.24.0
5
- huggingface-hub==0.23.0
6
- python-dotenv==1.0.0 # Explicitly matching crewai's requirement
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies
2
+ python-dotenv
3
+ gradio
4
+ uvicorn
5
+ fastapi
6
+
7
+ # LangChain dependencies
8
+ langchain
9
+ langchain-openai
10
+ langchain-community
11
+
12
+ # CrewAI dependencies
13
+ crewai
14
+
15
+ # Hugging Face for LLMs
16
+ huggingface_hub
17
+ setuptools # Explicitly matching crewai's requirement
18
+
19
+ # Pydantic - Ensuring compatibility
20
+ pydantic # Use Pydantic v1 (FastAPI & LangChain expect this)
21
+
22
+ # Optional: If you're using Azure OpenAI
23
+ openai
24
+ azure-core
25
+ azure-ai-textanalytics