forked from JoshuaC215/agent-service-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
[project]
name = "agent-service-toolkit"
version = "0.1.0"
description = "Full toolkit for running an AI agent service built with LangGraph, FastAPI and Streamlit"
readme = "README.md"
authors = [{ name = "Joshua Carroll", email = "carroll.joshk@gmail.com" }]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Framework :: FastAPI",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.11, <3.13"
dependencies = [
"duckduckgo-search>=6.4.1",
"fastapi ~=0.115.5",
"httpx ~=0.27.2",
"langchain-core ~=0.3.20",
"langchain-community ~=0.3.7",
"langchain-openai ~=0.2.9",
"langchain-anthropic ~= 0.3.0",
"langchain-google-genai ~=2.0.5",
"langchain-groq ~=0.2.1",
"langchain-aws ~=0.2.7",
"langgraph ~=0.2.53",
"langgraph-checkpoint-sqlite ~=2.0.1",
"langsmith ~=0.1.145",
"numexpr ~=2.10.1",
"pyarrow >=18.1.0", # python 3.13 support
"pydantic ~=2.10.1",
"pydantic-settings ~=2.6.1",
"pyowm ~=3.3.0",
"python-dotenv ~=1.0.1",
"setuptools ~=75.6.0",
"streamlit ~=1.40.1",
"tiktoken >=0.8.0", # python 3.13 support
"uvicorn ~=0.32.1",
]
[dependency-groups]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-env",
"pytest-asyncio",
"ruff",
]
# 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.40.1",
]
[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"