Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +23 -1
requirements.txt
CHANGED
@@ -1,2 +1,24 @@
|
|
1 |
gradio
|
2 |
-
requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
gradio
|
2 |
+
requests
|
3 |
+
|
4 |
+
langchain==0.2.0
|
5 |
+
langgraph==0.0.33
|
6 |
+
langchain-openai==0.1.7
|
7 |
+
langchain-community==0.2.0
|
8 |
+
|
9 |
+
# Tools and Utilities
|
10 |
+
duckduckgo-search==5.1.0
|
11 |
+
wikipedia==1.4.0
|
12 |
+
requests==2.31.0
|
13 |
+
|
14 |
+
# Optional (but recommended) for enhanced functionality
|
15 |
+
python-dotenv==1.0.1 # For environment variable management
|
16 |
+
tiktoken==0.7.0 # For token counting
|
17 |
+
faiss-cpu==1.8.0 # For vector storage (if adding memory)
|
18 |
+
sentence-transformers==2.7.0 # For embeddings
|
19 |
+
pydantic==2.7.1 # For data validation
|
20 |
+
|
21 |
+
# Development/Testing
|
22 |
+
pytest==8.1.1
|
23 |
+
ipython==8.22.2 # For interactive debugging
|
24 |
+
black==24.3.0 # Code formatting
|