Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name = "dana"
version = "0.2.0"
description = "Dana Agent - Domain-Aware Neurosymbolic Agents"
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.11,<3.14"
authors = [{ name = "Christopher Nguyen", email = "ctn@aitomatic.com" }]
maintainers = [
{ name = "Vinh Luong", email = "vinh@aitomatic.com" },
Expand All @@ -33,10 +33,14 @@ maintainers = [
dependencies = [
# Core LLM Integration
"openai>=1.55.3",
"anthropic==0.30.1",
# anthropic>=0.40.0 is required: it's the first release supporting httpx 0.28.x
# (0.30.1 caps httpx<0.28). API surface used by dana (AsyncAnthropic, messages.create/stream,
# content/usage blocks, APITimeoutError/BadRequestError) is stable across 0.40 -> 0.116.
"anthropic>=0.40.0",
"google-genai>=1.0.0",
# HTTP client for API calls
"httpx>=0.27.0,<0.28.0",
# HTTP client for API calls. 0.28.1 is the latest published release; >0.28.1 is unsatisfiable.
# Required by anthropic>=0.40 and unblocks dana-agent[langsmith]'s websockets>=15 in one workspace.
"httpx>=0.28.1",
# Configuration management
"python-dotenv>=1.0.0",
"pydantic-settings>=2.11.0",
Expand Down Expand Up @@ -69,8 +73,9 @@ web = [
]

# Local LLM providers (Ollama, LlamaStack) - Install with: pip install dana[local]
# llama-stack requires Python >=3.12; gated by marker so [local] resolves on 3.11 (ollama-only).
local = [
"llama-stack>=0.3.0",
"llama-stack>=0.3.0; python_version>='3.12'",
"ollama>=0.6.0",
]

Expand Down
Loading
Loading