requirements.txt 510 B

12345678910111213141516171819202122232425262728
  1. # FastAPI and server
  2. fastapi==0.109.0
  3. uvicorn[standard]==0.27.0
  4. python-multipart==0.0.6
  5. # Pydantic for data validation
  6. pydantic==2.5.3
  7. pydantic-settings==2.1.0
  8. # HTTP client
  9. httpx==0.26.0
  10. aiohttp==3.9.1
  11. # NER and NLP
  12. # spacy==3.7.2 # Uncomment if using spaCy
  13. # transformers==4.36.2 # Uncomment if using Transformers
  14. # torch==2.1.2 # Uncomment if using PyTorch
  15. # For DeepSeek/Qwen API fallback
  16. openai==1.6.1
  17. # Utilities
  18. python-dotenv==1.0.0
  19. loguru==0.7.2
  20. # Testing
  21. pytest==7.4.4
  22. pytest-asyncio==0.23.3