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