Spaces:
Sleeping
Sleeping
EtienneB
commited on
Commit
·
70d4afb
1
Parent(s):
c777509
Update requirements.txt
Browse files- requirements.txt +17 -17
requirements.txt
CHANGED
|
@@ -1,30 +1,30 @@
|
|
| 1 |
# UI and OAuth
|
| 2 |
-
gradio[oauth]
|
| 3 |
-
requests
|
| 4 |
-
pandas
|
| 5 |
|
| 6 |
# LangChain and ecosystem
|
| 7 |
-
langchain
|
| 8 |
-
langchain-core
|
| 9 |
-
langchain-community
|
| 10 |
-
langgraph
|
| 11 |
|
| 12 |
# Hugging Face integration
|
| 13 |
-
huggingface_hub
|
| 14 |
-
transformers
|
| 15 |
-
accelerate
|
| 16 |
|
| 17 |
# Environment config
|
| 18 |
-
python-dotenv
|
| 19 |
|
| 20 |
# Tools dependencies
|
| 21 |
-
duckduckgo-search
|
| 22 |
-
pytz
|
| 23 |
|
| 24 |
# Additional utilities for better error handling and performance
|
| 25 |
-
typing-extensions
|
| 26 |
-
asyncio-throttle
|
| 27 |
-
tenacity
|
| 28 |
|
| 29 |
# Optional: For better logging and monitoring
|
| 30 |
-
loguru
|
|
|
|
| 1 |
# UI and OAuth
|
| 2 |
+
gradio[oauth]
|
| 3 |
+
requests
|
| 4 |
+
pandas
|
| 5 |
|
| 6 |
# LangChain and ecosystem
|
| 7 |
+
langchain
|
| 8 |
+
langchain-core
|
| 9 |
+
langchain-community
|
| 10 |
+
langgraph
|
| 11 |
|
| 12 |
# Hugging Face integration
|
| 13 |
+
huggingface_hub
|
| 14 |
+
transformers
|
| 15 |
+
accelerate # Needed for many transformer-based models
|
| 16 |
|
| 17 |
# Environment config
|
| 18 |
+
python-dotenv
|
| 19 |
|
| 20 |
# Tools dependencies
|
| 21 |
+
duckduckgo-search # Required for web_search tool
|
| 22 |
+
pytz # Required for get_current_time_in_timezone tool
|
| 23 |
|
| 24 |
# Additional utilities for better error handling and performance
|
| 25 |
+
typing-extensions
|
| 26 |
+
asyncio-throttle # For rate limiting (optional)
|
| 27 |
+
tenacity # For retry logic (optional)
|
| 28 |
|
| 29 |
# Optional: For better logging and monitoring
|
| 30 |
+
loguru # Better logging (optional)
|