File size: 915 Bytes
d1f325b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
[tool.poetry]
name = "law-bot"
version = "0.1.0"
description = ""
authors = ["anpigon <[email protected]>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
faiss-cpu = "^1.8.0.post1"
transformers = "^4.42.3"
python-dotenv = "^1.0.1"
sentence-transformers = "^3.0.1"
rank-bm25 = "^0.2.2"
langchain = "^0.2.6"
langchain-text-splitters = "^0.2.2"
langchain-community = "^0.2.6"
langchain-google-genai = "^1.0.7"
langchain-anthropic = "^0.1.17"
langchain-openai = "^0.1.13"
langchain-core = "^0.2.10"
langchain-groq = "^0.1.6"
langchain-cohere = "^0.1.8"
chromadb = "^0.5.3"
markdownify = "^0.12.1"
pandas = "^2.2.2"
beautifulsoup4 = "^4.12.3"
pyarrow = "^16.1.0"
langchain-huggingface = "^0.0.3"
kiwipiepy = "^0.17.1"
gradio = "^4.37.2"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|