Pipfile 598 B

12345678910111213141516171819202122232425262728293031
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. datasets = "*"
  7. pandas = "*"
  8. litellm = "*"
  9. termcolor = "*"
  10. seaborn = "*"
  11. docker = "*"
  12. fastapi = "*"
  13. uvicorn = {extras = ["standard"], version = "*"}
  14. ruff = "*"
  15. mypy = "*"
  16. llama-index = "*"
  17. llama-index-vector-stores-chroma = "*"
  18. chromadb = "*"
  19. llama-index-embeddings-huggingface = "*"
  20. llama-index-embeddings-azure-openai = "*"
  21. llama-index-embeddings-ollama = "*"
  22. google-generativeai = "*"
  23. toml = "*"
  24. json_repair = "*"
  25. numpy = "*" # Added numpy as a dependency
  26. [dev-packages]
  27. [requires]
  28. python_version = "3.11"