Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +25 -6
requirements.txt
CHANGED
@@ -1,6 +1,25 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|