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
18 changes: 8 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,22 @@ dependencies = [
"google-adk>=1.10.0", # For basic agent architecture
"litellm>=1.74.3", # For model inference
"loguru>=0.7.3", # For better logging
"openinference-instrumentation-google-adk>=0.1.1", # For OpenInference instrumentation
"opentelemetry-exporter-otlp>=1.35.0",
"opentelemetry-instrumentation-logging>=0.56b0",
"wrapt>=1.17.2", # For patching built-in functions
"openai<1.100" # For fix https://github.com/BerriAI/litellm/issues/13710
"openai<1.100", # For fix https://github.com/BerriAI/litellm/issues/13710
"volcengine-python-sdk==4.0.3", # For Volcengine API
"agent-pilot-sdk>=0.0.9", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
"fastmcp>=2.11.3", # For running MCP
"cookiecutter>=2.6.0", # For cloud deploy
"opensearch-py==2.8.0" # For OpenSearch database
]

[project.scripts]
veadk = "veadk.cli.cli:veadk"

[project.optional-dependencies]
database = [
"opensearch-py==2.8.0", # For OpenSearch database
"redis>=6.2.0", # For Redis database
"pymysql>=1.1.1", # For MySQL database
"volcengine>=1.0.193", # For Viking DB
Expand All @@ -41,12 +44,7 @@ eval = [
"deepeval>=3.2.6", # For DeepEval-based evaluation
"google-adk[eval]", # For Google ADK-based evaluation
]
cli = [
"volcengine-python-sdk==4.0.3", # For Volcengine API
"agent-pilot-sdk>=0.0.9", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
"fastmcp>=2.11.3", # For running MCP
"cookiecutter>=2.6.0", # For cloud deploy
]
cli = []
dev = [
"pre-commit>=4.2.0", # Format checking
"pytest>=8.4.1",
Expand Down Expand Up @@ -77,4 +75,4 @@ include-package-data = true
[tool.ruff]
exclude = [
"veadk/integrations/ve_faas/template/*"
]
]
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ while [[ $# -gt 0 ]]; do
done

# in case of deployment deps not installed in user's requirements.txt
python3 -m pip install uvicorn[standard] fastapi fastmcp
python3 -m pip install uvicorn[standard] fastapi

USE_ADK_WEB=${USE_ADK_WEB:-False}

Expand Down