-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (99 loc) · 2.62 KB
/
Copy pathpyproject.toml
File metadata and controls
110 lines (99 loc) · 2.62 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "dreampath"
version = "0.1.0"
readme = "README.md"
authors = [{ name = "Kabir Moghe", email = "kabirmoghe@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"docx2txt ~=0.8",
"duckduckgo-search>=7.3.0",
"fastapi ~=0.115.5",
"grpcio >=1.68.0",
"httpx ~=0.27.2",
"jiter ~=0.8.2",
"langchain-core ~=0.3.33",
"langchain-community ~=0.3.16",
"langchain-anthropic ~= 0.3.0",
"langchain-aws ~=0.2.14",
"langchain-chroma ~=0.2.3",
"langchain-google-genai ~=2.0.11",
"langchain-google-vertexai>=2.0.7",
"langchain-groq ~=0.2.1",
"langchain-ollama ~=0.2.3",
"langchain-openai ~=0.3.0",
"langfuse ~=2.60.5",
"langgraph ~=0.5.4",
"langgraph-checkpoint-mongodb ~=0.1.3",
"langgraph-checkpoint-postgres ~=2.0.13",
"langgraph-checkpoint-sqlite ~=2.0.1",
"langgraph-supervisor ~=0.0.27",
"langsmith ~=0.4.0",
"numexpr ~=2.10.1",
"numpy ~=1.26.4; python_version <= '3.12'",
"numpy ~=2.2.3; python_version >= '3.13'",
"onnxruntime ~= 1.21.1",
"pandas ~=2.2.3",
"psycopg[binary,pool] ~=3.2.4",
"pyarrow >=18.1.0",
"pydantic~=2.10.1",
"pydantic-settings ~=2.6.1",
"pypdf ~=5.3.0",
"pyowm ~=3.3.0",
"python-dotenv~=1.0.1",
"setuptools ~=75.6.0",
"streamlit ~=1.46.0",
"tiktoken>=0.8.0",
"uvicorn ~=0.32.1",
"langchain-mcp-adapters>=0.1.10",
"weaviate-client>=4.17.0",
"openai>=1.109.1",
"instructor>=1.11.3",
"selenium>=4.37.0",
"webdriver-manager>=4.0.2",
"bs4>=0.0.2",
"rapidfuzz>=3.14.1",
"beautifulsoup4>=4.14.2",
"requests>=2.32.4",
"matplotlib>=3.10.7",
"networkx==3.5",
"asyncpg>=0.30.0",
]
[dependency-groups]
dev = [
"langgraph-cli[inmem]",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-env",
"pytest-asyncio",
"ruff",
"mypy",
]
# Group for the minimal dependencies to run just the client and Streamlit app.
# These are also installed in the default dependencies.
# To install run: `uv sync --frozen --only-group client`
client = [
"httpx~=0.27.2",
"pydantic ~=2.10.1",
"python-dotenv ~=1.0.1",
"streamlit~=1.46.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
extend-select = ["I", "U"]
[tool.pytest.ini_options]
pythonpath = ["src"]
asyncio_default_fixture_loop_scope = "function"
[tool.pytest_env]
OPENAI_API_KEY = "sk-fake-openai-key"
[tool.mypy]
plugins = "pydantic.mypy"
exclude = "src/streamlit_app.py"
[[tool.mypy.overrides]]
module = ["numexpr.*"]
follow_untyped_imports = true
[[tool.mypy.overrides]]
module = ["langchain_mcp_adapters.*"]
ignore_missing_imports = true