-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 1.3 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
[project]
name = "generic-agent"
version = "0.0.1"
description = "Simple ollama-based Langgraph agent with MCP tool calling."
requires-python = ">=3.11"
dependencies = [
"a2a-sdk>=1.1.2,<2",
"langgraph>=1.2.10",
"langchain-core>=1.5.3",
"langchain-community>=0.4.2",
"langchain-ollama>=1.1.0",
"langchain-openai>=1.4.3",
"openinference-instrumentation-langchain>=0.1.70",
"pydantic-settings>=2.15.0",
"langchain-mcp-adapters>=0.3.2",
"python-keycloak>=7.1.1",
"opentelemetry-exporter-otlp>=1.44.0",
"urllib3>=2.7.0", # Indirect; prevents CVE-2025-66418
"python-multipart>=0.0.32", # Indirect; prevents CVE-2026-24486
"langsmith>=0.10.17", # Indirect; prevents CVE-2026-45134
"pyasn1>=0.6.4", # Indirect; prevents CVE-2026-30922
"starlette>=1.6.0", # Indirect; prevents CVE-2025-62727
"protobuf>=6.33.5", # Indirect; prevents CVE-2026-0994
"mcp>=1.28.1", # Indirect; prevents CVE-2025-66416
"aiohttp>=3.14.3", # Indirect; prevents CVE-2026-34525, CVE-2026-34516, CVE-2026-34515, CVE-2026-22815
"cryptography>=49.0.0,<50", # Indirect; prevents CVE-2026-26007
]
[project.scripts]
server = "generic_agent.agent:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"