-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 898 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 898 Bytes
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
[project]
name = "agentic-annotator"
version = "0.1.0"
description = "Multi-agent data annotation pipeline for Banking77 intent classification"
requires-python = ">=3.11"
dependencies = [
"langchain-groq",
"langchain-community",
"langgraph",
"fastmcp",
"langfuse",
"redis",
"sentence-transformers",
"fastapi",
"uvicorn",
"datasets<4.0.0",
"pandas",
"pyarrow",
"scikit-learn",
"tenacity",
"python-dotenv",
"cerebras-cloud-sdk",
"langgraph-checkpoint-sqlite>=3.1.0",
]
[dependency-groups]
dev = [
"pytest",
"ruff",
"mypy",
"httpx>=0.28.1",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"] # LLM prompt strings and guidelines data have inherently long lines
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true