1234567891011121314151617181920212223242526272829303132333435363738394041 |
- [tool.poetry]
- name = "celery_tasks"
- version = "0.1.0"
- description = ""
- authors = ["sprivacy <sprivacy@DESKTOP-4J47F0K.localhost>"]
- readme = "README.md"
- [tool.poetry.dependencies]
- python = ">=3.9, <3.13"
- jieba = "0.42.1"
- numpy = "1.26.2"
- pandas = "1.5.3"
- torch = "2.3.0"
- camelot = "0.20.1"
- chromadb = "^0.5.5"
- transformers = "4.41.2"
- scikit-learn = "1.1.1"
- celery = {extras = ["redis"], version = "^5.4.0"}
- jiagu = "^0.2.3"
- fuzzywuzzy = "^0.18.0"
- instructor = "^1.4.2"
- sqlalchemy = "^2.0.35"
- langchain = "^0.3.9"
- langchain-community = "^0.3.8"
- sentence-transformers = "^3.3.1"
- langchain-experimental = "^0.3.3"
- unstructured = "^0.16.8"
- markdown = "^3.7"
- langchain-huggingface = "^0.1.2"
- langchain-chroma = "^0.1.4"
- faiss-cpu = "^1.9.0.post1"
- python-multipart = "^0.0.20"
- [[tool.poetry.source]]
- name = "tsinghua"
- url = "https://pypi.tuna.tsinghua.edu.cn/simple"
- priority = "primary"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
|