-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.62 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "kaj-gpt-chat-srvc"
version = "0.1.0"
description = "Kiriminaja GPT Chat"
authors = [ "Sofyan Saputra <sofyansaputra@kiriminaja.com>",]
readme = "README.md"
[[tool.poetry.packages]]
include = "app"
[tool.poetry.scripts]
serve = "main:__main__"
[tool.black]
line-length = 88
target-version = [ "py37", "py38", "py39", "py310", "py311",]
exclude = "((.eggs | .git | .pytest_cache | build | dist))"
[tool.ruff]
line-length = 88
exclude = [ ".git", "__pycache__", ".mypy_cache", ".pytest_cache",]
select = [ "E", "W", "F", "C", "B",]
ignore = [ "B904", "B006", "E501", "B008", "C901",]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
exclude = [ "alembic", "__pycache__",]
[tool.build-system]
requires = [ "poetry-core",]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
httpx = "^0.26.0"
python-dotenv = "^1.0.1"
fastapi-pagination = "^0.12.14"
python-json-logger = "^2.0.7"
loguru = "^0.7.2"
langchain-community = "^0.3.10"
langchain = "^0.3.13"
websockets = "^12.0"
langchain-mistralai = "^0.2.4"
uvicorn = "^0.34.0"
aiosqlite = "^0.20.0"
greenlet = "^3.1.1"
langchain-chroma = "^0.1.4"
pypdf = "^5.1.0"
numpy = "<2.0"
environs = "^14.0.0"
pymysql = "^1.1.1"
aiomysql = "^0.2.0"
sqlalchemy = "^2.0.37"
langchain-redis = "^0.1.2"
aioredis = "^2.0.1"
python-multipart = "^0.0.20"
cryptography = "^44.0.0"
langchain-openai = "^0.3.0"
mysql-connector-python = "^9.1.0"
openai = "^1.59.8"
langchain-groq = "^0.2.3"
langchain-nvidia-ai-endpoints = "^0.3.7"
langchain-elasticsearch = "^0.3.1"
[tool.ruff.per-file-ignores]
"__init__.py" = [ "F401",]