requirements-offline-llm.txt 797 B

1234567891011121314151617181920
  1. # LightRAG Offline Dependencies - LLM Providers
  2. # Install with: pip install -r requirements-offline-llm.txt
  3. # For offline installation:
  4. # pip download -r requirements-offline-llm.txt -d ./packages
  5. # pip install --no-index --find-links=./packages -r requirements-offline-llm.txt
  6. #
  7. # Recommended: Use pip install lightrag-hku[offline-llm] for the same effect
  8. # Or use constraints: pip install --constraint constraints-offline.txt -r requirements-offline-llm.txt
  9. # LLM provider dependencies (with version constraints matching pyproject.toml)
  10. aioboto3>=12.0.0,<16.0.0
  11. anthropic>=0.18.0,<1.0.0
  12. google-api-core>=2.0.0,<3.0.0
  13. google-genai>=1.0.0,<3.0.0
  14. llama-index>=0.14.0,<1.0.0
  15. llama-index-llms-openai>=0.6.12
  16. ollama>=0.1.0,<1.0.0
  17. openai>=2.0.0,<3.0.0
  18. voyageai>=0.2.0,<1.0.0
  19. zhipuai>=2.0.0,<3.0.0