pyproject.toml 562 B

1234567891011121314151617181920212223242526
  1. [tool.poetry]
  2. name = "privategpt"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Ivan Martinez <ivanmartit@gmail.com>"]
  6. license = "Apache Version 2.0"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.10"
  10. langchain = "0.0.261"
  11. gpt4all = "^1.0.3"
  12. chromadb = "^0.3.26"
  13. PyMuPDF = "^1.22.5"
  14. python-dotenv = "^1.0.0"
  15. unstructured = "^0.8.0"
  16. extract-msg = "^0.41.5"
  17. tabulate = "^0.9.0"
  18. pandoc = "^2.3"
  19. pypandoc = "^1.11"
  20. tqdm = "^4.65.0"
  21. sentence-transformers = "^2.2.2"
  22. [build-system]
  23. requires = ["poetry-core"]
  24. build-backend = "poetry.core.masonry.api"