| 12345678910111213141516171819202122232425262728 |
- # FastAPI and server
- fastapi==0.109.0
- uvicorn[standard]==0.27.0
- python-multipart==0.0.6
- # Pydantic for data validation
- pydantic==2.5.3
- pydantic-settings==2.1.0
- # HTTP client
- httpx==0.26.0
- aiohttp==3.9.1
- # NER and NLP
- # spacy==3.7.2 # Uncomment if using spaCy
- # transformers==4.36.2 # Uncomment if using Transformers
- # torch==2.1.2 # Uncomment if using PyTorch
- # For DeepSeek/Qwen API fallback
- openai==1.6.1
- # Utilities
- python-dotenv==1.0.0
- loguru==0.7.2
- # Testing
- pytest==7.4.4
- pytest-asyncio==0.23.3
|