pyproject.toml 939 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [tool.poetry]
  2. name = "celery_tasks"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["sprivacy <sprivacy@DESKTOP-4J47F0K.localhost>"]
  6. readme = "README.md"
  7. [tool.poetry.dependencies]
  8. python = ">=3.9, <3.13"
  9. jieba = "0.42.1"
  10. numpy = "1.26.2"
  11. pandas = "1.5.3"
  12. torch = "2.3.0"
  13. camelot = "0.20.1"
  14. chromadb = "^0.5.5"
  15. transformers = "4.41.2"
  16. scikit-learn = "1.1.1"
  17. celery = {extras = ["redis"], version = "^5.4.0"}
  18. jiagu = "^0.2.3"
  19. fuzzywuzzy = "^0.18.0"
  20. instructor = "^1.4.2"
  21. sqlalchemy = "^2.0.35"
  22. langchain = "^0.3.9"
  23. langchain-community = "^0.3.8"
  24. sentence-transformers = "^3.3.1"
  25. langchain-experimental = "^0.3.3"
  26. unstructured = "^0.16.8"
  27. markdown = "^3.7"
  28. langchain-huggingface = "^0.1.2"
  29. langchain-chroma = "^0.1.4"
  30. faiss-cpu = "^1.9.0.post1"
  31. [[tool.poetry.source]]
  32. name = "tsinghua"
  33. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  34. priority = "primary"
  35. [build-system]
  36. requires = ["poetry-core"]
  37. build-backend = "poetry.core.masonry.api"