-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 865 Bytes
/
pyproject.toml
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 = "llm-reviewer"
version = "0.1.0"
description = ""
authors = ["Romulo Assis <romuloassis.as@gmail.com.br>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.4"
langchain = "0.3.6"
langchain-community = "^0.3.5"
importlib = "^1.0.4"
streamlit = "^1.40.0"
langchain-huggingface = "^0.1.2"
langchain-openai = "^0.3.3"
langchain-chroma = "^0.2.1"
uuid = "^1.30"
chromadb = "^0.6.3"
poetry-plugin-dotenv = "^2.6.1"
[tool.poetry.group.dev.dependencies]
langchain-ollama = "^0.2.0"
[tool.poetry.scripts]
dev = "llm_reviewer.app:main"
[tool.mypy]
ignore_missing_imports = true
[tool.poetry.plugins.dotenv]
ignore = "false"
location = ".env"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"