-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.25 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
[tool.poetry]
name = "llm-chatbot"
version = "0.1.0"
description = ""
authors = ["Philip Adzanoukpe <epigos@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
langchain = "^0.3.13"
langchain-openai = "^0.3.0"
langchain-community = "^0.3.13"
faiss-cpu = "^1.9.0.post1"
chainlit = "^2.0.4"
structlog = "^25.1.0"
pydantic-settings = "^2.7.1"
pydantic = "^2.10.5"
langgraph = "^0.2.60"
mem0ai = "^0.1.40"
langchain-anthropic = "^0.3.1"
[tool.poetry.group.dev.dependencies]
mypy = "^1.14.1"
isort = "^5.13.2"
black = "^24.10.0"
autoflake = "^2.3.1"
pre-commit = "^4.0.1"
ipython = "^8.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
default_section = "THIRDPARTY"
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = "tests"
line_length = 88
multi_line_output = 3
use_parentheses = true
skip_glob = ".venv/*,.aws-sam/*,migrations/*"
[tool.black]
target-version = ['py311']
[tool.mypy]
strict = true
exclude = ["tests", "dist", "migrations"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "main.*"
ignore_errors = true
[tool.autoflake]
quiet = true
remove-all-unused-imports = true
recursive = true