-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (66 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
81 lines (66 loc) · 1.56 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
[tool.poetry]
name = "ad-bidding-agent"
version = "0.1.0"
description = "LangGraph Ad Bidding Recommendation System"
authors = []
readme = "README.md"
packages = [{include = "agent"}, {include = "api"}, {include = "data"}, {include = "eval"}]
[tool.poetry.dependencies]
python = "^3.11"
# Agent / LLM
langgraph = "^0.2"
langchain = "^0.3"
langchain-aws = "^0.2"
langchain-community = "^0.3"
langsmith = "^0.1"
# API
fastapi = "^0.115"
uvicorn = {extras = ["standard"], version = "^0.30"}
python-jose = {extras = ["cryptography"], version = "^3.3"}
httpx = "^0.27"
# Data / Warehouse
snowflake-connector-python = {extras = ["pandas"], version = "^3.10"}
dbt-snowflake = "^1.8"
redis = "^5.0"
pydantic = "^2.8"
pydantic-settings = "^2.4"
# Streaming
confluent-kafka = "^2.5"
fastavro = "^1.9"
# MLOps
mlflow = "^2.15"
boto3 = "^1.35"
# Guardrails
nemoguardrails = "^0.10"
# Observability
prometheus-client = "^0.21"
opentelemetry-sdk = "^1.27"
opentelemetry-instrumentation-fastapi = "^0.48"
# Utilities
python-dotenv = "^1.0"
structlog = "^24.4"
tenacity = "^9.0"
numpy = "^1.26"
pandas = "^2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
pytest-asyncio = "^0.24"
pytest-cov = "^5.0"
ruff = "^0.6"
mypy = "^1.11"
pre-commit = "^3.8"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]