Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +19 -2
requirements.txt
CHANGED
@@ -1,2 +1,19 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies for MCP Gradio Client
|
2 |
+
gradio>=4.0.0
|
3 |
+
smolagents>=1.18.0
|
4 |
+
|
5 |
+
# Async and HTTP support
|
6 |
+
asyncio>=3.4.3
|
7 |
+
aiohttp>=3.8.0
|
8 |
+
|
9 |
+
# Type hints and utilities
|
10 |
+
typing-extensions>=4.0.0
|
11 |
+
pydantic>=2.0.0
|
12 |
+
|
13 |
+
# Optional: Enhanced event loop for better async performance (Linux/macOS)
|
14 |
+
uvloop>=0.17.0; sys_platform != "win32"
|
15 |
+
|
16 |
+
# Development and testing (optional)
|
17 |
+
pytest>=7.0.0
|
18 |
+
|
19 |
+
# Note: pathlib, os, logging, concurrent.futures are built-in modules in Python 3.4+
|