Spaces:
Running
Running
Commit
·
4fb11a9
1
Parent(s):
20f762e
fix: add limits package to requirements.txt for HuggingFace Spaces
Browse filesThe `limits` package was added in Phase 17 (rate limiting) to pyproject.toml
but not to requirements.txt. HuggingFace Spaces uses requirements.txt,
causing the Space to crash with ModuleNotFoundError.
- requirements.txt +1 -0
requirements.txt
CHANGED
|
@@ -20,6 +20,7 @@ python-dotenv>=1.0
|
|
| 20 |
tenacity>=8.2
|
| 21 |
structlog>=24.1
|
| 22 |
requests>=2.32.5
|
|
|
|
| 23 |
|
| 24 |
# Optional: Modal for code execution
|
| 25 |
modal>=0.63.0
|
|
|
|
| 20 |
tenacity>=8.2
|
| 21 |
structlog>=24.1
|
| 22 |
requests>=2.32.5
|
| 23 |
+
limits>=3.0 # Rate limiting (Phase 17)
|
| 24 |
|
| 25 |
# Optional: Modal for code execution
|
| 26 |
modal>=0.63.0
|