agent-starter-pack 0.15.6__tar.gz → 0.16.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of agent-starter-pack might be problematic. Click here for more details.
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.claude/settings.local.json +11 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/test_templated_agents.yaml +1 -1
- agent_starter_pack-0.16.0/.cloudbuild/terraform/backend.tf +6 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/build_triggers.tf +19 -7
- agent_starter_pack-0.16.0/.cloudbuild/terraform/vars/env.tfvars +13 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.gitignore +0 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/GEMINI.md +3 -3
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/PKG-INFO +2 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/README.md +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/.template/templateconfig.yaml +1 -1
- {agent_starter_pack-0.15.6/agents/live_api → agent_starter_pack-0.16.0/agents/adk_live}/.template/templateconfig.yaml +5 -7
- agent_starter_pack-0.16.0/agents/adk_live/README.md +31 -0
- agent_starter_pack-0.16.0/agents/adk_live/app/agent.py +48 -0
- agent_starter_pack-0.16.0/agents/adk_live/tests/unit/test_dummy.py +38 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/.template/templateconfig.yaml +1 -1
- agent_starter_pack-0.16.0/agents/crewai_coding_crew/app/agent.py +47 -0
- agent_starter_pack-0.16.0/agents/langgraph_base_react/app/agent.py +34 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/agents/overview.md +2 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/deploy-ui.md +2 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/template-config-reference.md +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/llm.txt +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/pyproject.toml +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/GEMINI.md +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/Makefile +130 -61
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/README.md +6 -6
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/apis.tf +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/variables.tf +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/locals.tf +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/variables.tf +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/pyproject.toml +22 -21
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml +2 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml +71 -8
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml +2 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/pr_checks.yaml +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml +90 -8
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{{cookiecutter.agent_directory}}/utils/tracing.py +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{{cookiecutter.agent_directory}}/utils/typing.py +4 -4
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/commands/create.py +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/template.py +12 -5
- agent_starter_pack-0.16.0/src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +387 -0
- agent_starter_pack-0.16.0/src/deployment_targets/agent_engine/tests/load_test/README.md +84 -0
- agent_starter_pack-0.16.0/src/deployment_targets/agent_engine/tests/load_test/load_test.py +255 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py +11 -3
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/utils/deployment.py +5 -1
- agent_starter_pack-0.16.0/src/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/utils/{% if cookiecutter.is_adk_live %}expose_app.py{% else %}unused_expose_app.py{% endif %} +461 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/Dockerfile +3 -3
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/deployment/terraform/dev/service.tf +4 -4
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/deployment/terraform/service.tf +7 -7
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/tests/integration/test_server_e2e.py +207 -5
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/tests/load_test/README.md +82 -0
- agent_starter_pack-0.16.0/src/deployment_targets/cloud_run/tests/load_test/load_test.py +249 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}/server.py +178 -146
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/package-lock.json +39 -1007
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/package.json +1 -9
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/App.tsx +1 -1
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/logger/Logger.tsx +8 -3
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/logger/logger.scss +26 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/side-panel/SidePanel.tsx +11 -5
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/side-panel/side-panel.scss +146 -115
- agent_starter_pack-0.16.0/src/frontends/adk_live_react/frontend/src/components/transcription-preview/TranscriptionPreview.tsx +106 -0
- agent_starter_pack-0.16.0/src/frontends/adk_live_react/frontend/src/components/transcription-preview/transcription-preview.scss +150 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/hooks/use-live-api.ts +8 -2
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/multimodal-live-types.ts +38 -2
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/audio-recorder.ts +1 -1
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/audio-streamer.ts +1 -1
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/multimodal-live-client.ts +204 -23
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/utils.ts +27 -5
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/local_chat_history.py +2 -0
- agent_starter_pack-0.16.0/src/resources/idx/.idx/dev.nix +64 -0
- agent_starter_pack-0.16.0/src/resources/idx/idx-template.json +6 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/idx/idx-template.nix +2 -3
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-adk_base-agent_engine.lock +434 -349
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-adk_base-cloud_run.lock +502 -409
- agent_starter_pack-0.16.0/src/resources/locks/uv-adk_live-agent_engine.lock +4189 -0
- agent_starter_pack-0.15.6/src/resources/locks/uv-live_api-cloud_run.lock → agent_starter_pack-0.16.0/src/resources/locks/uv-adk_live-cloud_run.lock +884 -2219
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-agentic_rag-agent_engine.lock +473 -388
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-agentic_rag-cloud_run.lock +557 -464
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +498 -515
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +898 -687
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-langgraph_base_react-agent_engine.lock +455 -483
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/locks/uv-langgraph_base_react-cloud_run.lock +910 -645
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/utils/generate_locks.py +8 -4
- agent_starter_pack-0.16.0/tests/cicd/scripts/delete_service_accounts.py +262 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cicd/test_e2e_deployment.py +2 -2
- agent_starter_pack-0.16.0/tests/fixtures/makefile_hashes.json +11 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/adk_base_agent_engine_no_data.makefile +59 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/adk_base_cloud_run_no_data.makefile +70 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/adk_live_agent_engine.makefile +112 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/adk_live_cloud_run.makefile +113 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/agent_with_agent_garden.makefile +70 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/agent_with_custom_commands.makefile +75 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vector_search.makefile +86 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vertex_search.makefile +85 -0
- agent_starter_pack-0.16.0/tests/fixtures/makefile_snapshots/langgraph_cloud_run_no_data.makefile +69 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_makefile_usability.py +3 -3
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_pipeline_parity.py +8 -2
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_template_linting.py +1 -1
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_templated_patterns.py +11 -2
- agent_starter_pack-0.16.0/tests/unit/README_MAKEFILE_TESTS.md +80 -0
- agent_starter_pack-0.16.0/tests/unit/test_makefile_template.py +434 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/uv.lock +1 -1
- agent_starter_pack-0.15.6/agents/crewai_coding_crew/app/agent.py +0 -86
- agent_starter_pack-0.15.6/agents/langgraph_base_react/app/agent.py +0 -73
- agent_starter_pack-0.15.6/agents/live_api/README.md +0 -37
- agent_starter_pack-0.15.6/agents/live_api/app/agent.py +0 -72
- agent_starter_pack-0.15.6/agents/live_api/tests/integration/test_server_e2e.py +0 -260
- agent_starter_pack-0.15.6/agents/live_api/tests/load_test/load_test.py +0 -40
- agent_starter_pack-0.15.6/agents/live_api/tests/unit/test_server.py +0 -144
- agent_starter_pack-0.15.6/src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +0 -186
- agent_starter_pack-0.15.6/src/deployment_targets/agent_engine/tests/load_test/README.md +0 -37
- agent_starter_pack-0.15.6/src/deployment_targets/agent_engine/tests/load_test/load_test.py +0 -126
- agent_starter_pack-0.15.6/src/deployment_targets/cloud_run/tests/load_test/load_test.py +0 -122
- agent_starter_pack-0.15.6/src/resources/idx/.idx/dev.nix +0 -50
- agent_starter_pack-0.15.6/src/resources/idx/idx-template.json +0 -21
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/cd/test_e2e.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/build_use_wheel.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/lint.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/lint_templated_agents.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/test.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/test_makefile.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/test_pipeline_parity.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/ci/test_remote_template.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/apis.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/service_account.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/storage.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/variables.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.github/workflows/docs.yml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/CLAUDE.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/CODE_OF_CONDUCT.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/CONTRIBUTING.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/LICENSE +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/Makefile +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/app/__init__.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/app/agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/adk_base/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/app/__init__.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/app/agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/app/retrievers.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/app/templates.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/agentic_rag/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/.template/templateconfig.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/app/crew/config/agents.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/app/crew/config/tasks.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/app/crew/crew.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/notebooks/evaluating_crewai_agent.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/crewai_coding_crew/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/langgraph_base_react/.template/templateconfig.yaml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/langgraph_base_react/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/langgraph_base_react/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/agents/langgraph_base_react/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/.vitepress/config.js +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/cli/create.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/cli/enhance.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/cli/index.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/cli/list.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/cli/setup_cicd.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/community-showcase.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/data-ingestion.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/deployment.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/development-guide.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/getting-started.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/installation.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/observability.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/troubleshooting.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/video-tutorials.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/why_starter_pack.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/adk_gemini_fullstack.gif +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/adk_gemini_fullstack_architecture.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/adk_logo.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/agent_starter_pack_screenshot.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/ags_high_level_architecture.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/icon.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/logo.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/prototype_to_prod.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/why_sp_edited.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/images/why_starter_pack.png +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/index.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/package-lock.json +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/package.json +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/remote-templates/creating-remote-templates.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/remote-templates/index.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/remote-templates/using-remote-templates.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/.gitignore +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/apis.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/iam.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/log_sinks.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/providers.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/storage.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/dev/vars/env.tfvars +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/github.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/iam.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/log_sinks.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/providers.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/service_accounts.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/storage.tf +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/vars/env.tfvars +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'github_actions' %}wif.tf{% else %}unused_wif.tf{% endif %} +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %} +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/tests/unit/test_dummy.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/base_template/{{cookiecutter.agent_directory}}/utils/gcs.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/commands/enhance.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/commands/list.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/commands/setup_cicd.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/main.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/__init__.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/cicd.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/datastores.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/gcp.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/logging.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/remote_template.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/cli/utils/version.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/README.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/data_ingestion_pipeline/components/ingest_data.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/data_ingestion_pipeline/components/process_data.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/data_ingestion_pipeline/pipeline.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/data_ingestion_pipeline/submit_pipeline.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/pyproject.toml +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/data_ingestion/uv.lock +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/agent_engine/deployment_metadata.json +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/agent_engine/notebooks/intro_agent_engine.ipynb +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/agent_engine/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/deployment_targets/cloud_run/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/public/favicon.ico +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/public/index.html +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/public/robots.txt +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/App.scss +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/App.test.tsx +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/audio-pulse/AudioPulse.tsx +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/audio-pulse/audio-pulse.scss +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/components/logger/mock-logs.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/contexts/LiveAPIContext.tsx +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/hooks/use-media-stream-mux.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/hooks/use-screen-capture.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/hooks/use-webcam.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/index.css +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/index.tsx +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/react-app-env.d.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/reportWebVitals.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/setupTests.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/audioworklet-registry.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/store-logger.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/worklets/audio-processing.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/src/utils/worklets/vol-meter.ts +0 -0
- {agent_starter_pack-0.15.6/src/frontends/live_api_react → agent_starter_pack-0.16.0/src/frontends/adk_live_react}/frontend/tsconfig.json +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/side_bar.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/streamlit_app.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/style/app_markdown.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/chat_utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/message_editing.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/multimodal_utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/stream_handler.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/frontends/streamlit/frontend/utils/title_summary.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/containers/data_processing/Dockerfile +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/containers/e2e-tests/Dockerfile +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/resources/docs/adk-cheatsheet.md +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/utils/lock_utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/src/utils/watch_and_rebuild.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/__init__.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cicd/example.env +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cicd/scripts/delete_agent_engines.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cicd/scripts/delete_alloydb_clusters.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cicd/scripts/delete_vector_search.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/commands/test_create.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/commands/test_create_local.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/commands/test_enhance.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/commands/test_list.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/commands/test_setup_cicd.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/utils/test_cicd.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/cli/utils/test_remote_template.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_agent_directory_functionality.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/test_remote_templating.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/integration/utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_side_bar.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_streamlit_app.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_utils/test_chat_utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_utils/test_local_chat_history.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_utils/test_message_editing.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_utils/test_multimodal_utils.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/test_frontend/test_utils/test_stream_handler.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/utils/__init__.py +0 -0
- {agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/tests/utils/get_agents.py +0 -0
|
@@ -15,7 +15,17 @@
|
|
|
15
15
|
"Bash(uv run ruff check tests/cli/utils/test_remote_template.py)",
|
|
16
16
|
"Bash(uv run pytest tests/cli/utils/test_remote_template.py -v)",
|
|
17
17
|
"Bash(uv run pytest tests/integration/test_pipeline_parity.py::test_staging_parity -v -s)",
|
|
18
|
-
"Bash(python3 -c \"from vertexai.agent_engines._agent_engines import AgentEngine; import inspect; print([m for m in dir(AgentEngine) if not m.startswith(''_'')])\")"
|
|
18
|
+
"Bash(python3 -c \"from vertexai.agent_engines._agent_engines import AgentEngine; import inspect; print([m for m in dir(AgentEngine) if not m.startswith(''_'')])\")",
|
|
19
|
+
"Bash(python tests/cicd/scripts/delete_agent_engines.py)",
|
|
20
|
+
"Bash(python tests/cicd/scripts/delete_alloydb_clusters.py)",
|
|
21
|
+
"Bash(python tests/cicd/scripts/delete_service_accounts.py)",
|
|
22
|
+
"Bash(python tests/cicd/scripts/delete_vector_search.py)",
|
|
23
|
+
"Bash(python3 tests/cicd/scripts/delete_alloydb_clusters.py)",
|
|
24
|
+
"Bash(python3 tests/cicd/scripts/delete_service_accounts.py)",
|
|
25
|
+
"Bash(python3 tests/cicd/scripts/delete_vector_search.py)",
|
|
26
|
+
"Bash(PROJECT_IDS=agent-starter-pack-e2e-dev,agent-starter-pack-e2e-st,agent-starter-pack-e2e-pr python3 tests/cicd/scripts/delete_agent_engines.py)",
|
|
27
|
+
"Bash(export _TEST_AGENT_COMBINATION=adk_live,agent_engine)",
|
|
28
|
+
"Bash(make lint-templated-agents)"
|
|
19
29
|
],
|
|
20
30
|
"deny": [],
|
|
21
31
|
"ask": []
|
{agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/.cloudbuild/terraform/build_triggers.tf
RENAMED
|
@@ -91,15 +91,19 @@ locals {
|
|
|
91
91
|
value = "agentic_rag,cloud_run,--include-data-ingestion,--datastore,vertex_ai_vector_search"
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
|
-
name = "
|
|
95
|
-
value = "
|
|
94
|
+
name = "adk_live-agent_engine"
|
|
95
|
+
value = "adk_live,agent_engine"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name = "adk_live-cloud_run"
|
|
99
|
+
value = "adk_live,cloud_run"
|
|
96
100
|
},
|
|
97
101
|
{
|
|
98
102
|
name = "adk_base-cloud_run-alloydb"
|
|
99
103
|
value = "adk_base,cloud_run,--session-type,alloydb"
|
|
100
104
|
},
|
|
101
105
|
{
|
|
102
|
-
name = "
|
|
106
|
+
name = "adk_b-cr-agent_engine"
|
|
103
107
|
value = "adk_base,cloud_run,--session-type,agent_engine"
|
|
104
108
|
},
|
|
105
109
|
]
|
|
@@ -132,6 +136,10 @@ agent_testing_included_files = { for combo in local.agent_testing_combinations :
|
|
|
132
136
|
name = "agentic_rag-agent_engine-vertex_ai_search-github"
|
|
133
137
|
value = "agentic_rag,agent_engine,--include-data-ingestion,--datastore,vertex_ai_search,--cicd-runner,github_actions"
|
|
134
138
|
},
|
|
139
|
+
{
|
|
140
|
+
name = "adk_live-agent_engine-github"
|
|
141
|
+
value = "adk_live,agent_engine,--cicd-runner,github_actions"
|
|
142
|
+
},
|
|
135
143
|
{
|
|
136
144
|
name = "adk_base-agent_engine"
|
|
137
145
|
value = "adk_base,agent_engine,-dir,tag"
|
|
@@ -153,8 +161,12 @@ agent_testing_included_files = { for combo in local.agent_testing_combinations :
|
|
|
153
161
|
value = "agentic_rag,cloud_run,--include-data-ingestion,--datastore,vertex_ai_vector_search"
|
|
154
162
|
},
|
|
155
163
|
{
|
|
156
|
-
name = "
|
|
157
|
-
value = "
|
|
164
|
+
name = "adk_live-agent_engine"
|
|
165
|
+
value = "adk_live,agent_engine"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
name = "adk_live-cloud_run"
|
|
169
|
+
value = "adk_live,cloud_run"
|
|
158
170
|
},
|
|
159
171
|
{
|
|
160
172
|
name = "adk_base-cloud_run-alloydb"
|
|
@@ -180,8 +192,8 @@ agent_testing_included_files = { for combo in local.agent_testing_combinations :
|
|
|
180
192
|
"agents/agentic_rag/**",
|
|
181
193
|
"src/data_ingestion/**",
|
|
182
194
|
"pyproject.toml",
|
|
183
|
-
] : substr(combo.name, 0, 8) == "
|
|
184
|
-
"agents/
|
|
195
|
+
] : substr(combo.name, 0, 8) == "adk_live" ? [
|
|
196
|
+
"agents/adk_live/**",
|
|
185
197
|
"pyproject.toml",
|
|
186
198
|
] : [
|
|
187
199
|
# Only include files for the specific agent being tested
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
cicd_runner_project_id = "agent-starter-pack-cicd"
|
|
2
|
+
|
|
3
|
+
region = "europe-west4"
|
|
4
|
+
|
|
5
|
+
host_connection_name = "git-connection"
|
|
6
|
+
|
|
7
|
+
repository_name = "GoogleCloudPlatform-agent-starter-pack"
|
|
8
|
+
|
|
9
|
+
e2e_test_project_mapping = {
|
|
10
|
+
dev = "agent-starter-pack-e2e-dev"
|
|
11
|
+
staging = "agent-starter-pack-e2e-st"
|
|
12
|
+
prod = "agent-starter-pack-e2e-pr"
|
|
13
|
+
}
|
|
@@ -195,8 +195,6 @@ target
|
|
|
195
195
|
set_projects.sh
|
|
196
196
|
delete_genai_repos.sh
|
|
197
197
|
cleanup_e2e_projects.sh
|
|
198
|
-
.cloudbuild/terraform/backend.tf
|
|
199
|
-
.cloudbuild/terraform/vars/env.tfvars
|
|
200
198
|
docs/.vitepress/cache
|
|
201
199
|
tests/cicd/delete_gcp_resources.sh
|
|
202
200
|
tests/cicd/delete_agent_engines.py
|
|
@@ -139,7 +139,7 @@ Changes often require coordinated updates:
|
|
|
139
139
|
|
|
140
140
|
### Conditional Logic Patterns
|
|
141
141
|
```jinja
|
|
142
|
-
{%- if cookiecutter.agent_name == "
|
|
142
|
+
{%- if cookiecutter.agent_name == "adk_live" %}
|
|
143
143
|
# Agent-specific logic
|
|
144
144
|
{%- elif cookiecutter.deployment_target == "cloud_run" %}
|
|
145
145
|
# Deployment-specific logic
|
|
@@ -148,7 +148,7 @@ Changes often require coordinated updates:
|
|
|
148
148
|
|
|
149
149
|
### Testing Strategy
|
|
150
150
|
Test changes across multiple dimensions:
|
|
151
|
-
- Agent types (
|
|
151
|
+
- Agent types (adk_live, adk_base, etc.)
|
|
152
152
|
- Deployment targets (cloud_run, agent_engine)
|
|
153
153
|
- Feature combinations (data_ingestion, frontend_type)
|
|
154
154
|
- Example command for testing the starter pack creation - from the root of the repo run: `uv run agent-starter-pack create myagent-$(date +%s) --output-dir target`
|
|
@@ -156,7 +156,7 @@ Test changes across multiple dimensions:
|
|
|
156
156
|
### Common Pitfalls
|
|
157
157
|
- **Hardcoded URLs**: Use relative paths for frontend connections
|
|
158
158
|
- **Missing Conditionals**: Wrap agent-specific code in proper `{% if %}` blocks
|
|
159
|
-
- **Dependency Conflicts**: Some agents lack certain extras (e.g.,
|
|
159
|
+
- **Dependency Conflicts**: Some agents lack certain extras (e.g., adk_live + lint)
|
|
160
160
|
|
|
161
161
|
## File Modification Checklist
|
|
162
162
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-starter-pack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0
|
|
4
4
|
Summary: CLI to bootstrap production-ready Google Cloud GenAI agent projects from templates.
|
|
5
5
|
Author-email: Google LLC <agent-starter-pack@google.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -96,7 +96,7 @@ See [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pac
|
|
|
96
96
|
| `agentic_rag` | A RAG agent for document retrieval and Q&A. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview). |
|
|
97
97
|
| `langgraph_base_react` | An agent implementing a base ReAct agent using LangGraph |
|
|
98
98
|
| `crewai_coding_crew` | A multi-agent system implemented with CrewAI created to support coding activities |
|
|
99
|
-
| `
|
|
99
|
+
| `adk_live` | A real-time multimodal RAG agent powered by Gemini, supporting audio/video/text chat with vector DB-backed responses |
|
|
100
100
|
|
|
101
101
|
**More agents are on the way!** We are continuously expanding our [agent library](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview). Have a specific agent type in mind? [Raise an issue as a feature request!](https://github.com/GoogleCloudPlatform/agent-starter-pack/issues/new?labels=enhancement)
|
|
102
102
|
|
|
@@ -72,7 +72,7 @@ See [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pac
|
|
|
72
72
|
| `agentic_rag` | A RAG agent for document retrieval and Q&A. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview). |
|
|
73
73
|
| `langgraph_base_react` | An agent implementing a base ReAct agent using LangGraph |
|
|
74
74
|
| `crewai_coding_crew` | A multi-agent system implemented with CrewAI created to support coding activities |
|
|
75
|
-
| `
|
|
75
|
+
| `adk_live` | A real-time multimodal RAG agent powered by Gemini, supporting audio/video/text chat with vector DB-backed responses |
|
|
76
76
|
|
|
77
77
|
**More agents are on the way!** We are continuously expanding our [agent library](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview). Have a specific agent type in mind? [Raise an issue as a feature request!](https://github.com/GoogleCloudPlatform/agent-starter-pack/issues/new?labels=enhancement)
|
|
78
78
|
|
|
@@ -18,7 +18,7 @@ settings:
|
|
|
18
18
|
requires_data_ingestion: false
|
|
19
19
|
requires_session: true
|
|
20
20
|
deployment_targets: ["agent_engine", "cloud_run"]
|
|
21
|
-
extra_dependencies: ["google-adk
|
|
21
|
+
extra_dependencies: ["google-adk>=1.15.0,<2.0.0"]
|
|
22
22
|
tags: ["adk"]
|
|
23
23
|
frontend_type: "None"
|
|
24
24
|
|
|
@@ -12,13 +12,11 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
|
|
15
|
-
description: "
|
|
15
|
+
description: "Real-time multimodal agent with ADK and Gemini Live API for low-latency voice and video interaction."
|
|
16
16
|
settings:
|
|
17
17
|
requires_data_ingestion: false
|
|
18
|
-
frontend_type: "
|
|
19
|
-
deployment_targets: ["cloud_run"]
|
|
20
|
-
extra_dependencies: [
|
|
21
|
-
|
|
22
|
-
"google-genai>=1.16.0",
|
|
23
|
-
]
|
|
18
|
+
frontend_type: "adk_live_react"
|
|
19
|
+
deployment_targets: ["agent_engine", "cloud_run"]
|
|
20
|
+
extra_dependencies: ["google-adk>=1.15.0,<2.0.0", "click>=8.0.0,<9.0.0", "uvicorn>=0.18.0,<1.0.0", "fastapi>=0.75.0,<1.0.0", "backoff>=2.0.0,<3.0.0"]
|
|
21
|
+
tags: ["adk", "adk_live"]
|
|
24
22
|
example_question: "What's the weather in San Francisco?"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ADK Live Agent
|
|
2
|
+
|
|
3
|
+
Real-time conversational agent built with Google ADK and Gemini's live audio model. Supports audio, video, and text interactions with native tool calling.
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
**Key components:**
|
|
8
|
+
|
|
9
|
+
- **Python Backend** (in `app/` folder): ADK-powered agent using Gemini's live audio model with native tool calling and deployment support for Cloud Run and Agent Engine
|
|
10
|
+
|
|
11
|
+
- **React Frontend** (in `frontend/` folder): Web console for interacting with the live agent via audio, video, and text
|
|
12
|
+
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
Once running, click the play button to connect and interact with the agent. Try asking "What's the weather like in San Francisco?" to see tool calling in action.
|
|
16
|
+
|
|
17
|
+
## Additional Resources for Multimodal Live API
|
|
18
|
+
|
|
19
|
+
Explore these resources to learn more about the Multimodal Live API and see examples of its usage:
|
|
20
|
+
|
|
21
|
+
- [Project Pastra](https://github.com/heiko-hotz/gemini-multimodal-live-dev-guide/tree/main): a comprehensive developer guide for the Gemini Multimodal Live API.
|
|
22
|
+
- [Google Cloud Multimodal Live API demos and samples](https://github.com/GoogleCloudPlatform/generative-ai/tree/main/gemini/multimodal-live-api): Collection of code samples and demo applications leveraging multimodal live API in Vertex AI
|
|
23
|
+
- [Gemini 2 Cookbook](https://github.com/google-gemini/cookbook/tree/main/gemini-2): Practical examples and tutorials for working with Gemini 2
|
|
24
|
+
- [Multimodal Live API Web Console](https://github.com/google-gemini/multimodal-live-api-web-console): Interactive React-based web interface for testing and experimenting with Gemini Multimodal Live API.
|
|
25
|
+
|
|
26
|
+
## Current Status & Future Work
|
|
27
|
+
|
|
28
|
+
This pattern is under active development. Key areas planned for future enhancement include:
|
|
29
|
+
|
|
30
|
+
* **Observability:** Implementing comprehensive monitoring and tracing features.
|
|
31
|
+
* **Load Testing:** Integrating load testing capabilities.
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
import os
|
|
16
|
+
|
|
17
|
+
import google.auth
|
|
18
|
+
import vertexai
|
|
19
|
+
from google.adk.agents import Agent
|
|
20
|
+
|
|
21
|
+
_, project_id = google.auth.default()
|
|
22
|
+
os.environ.setdefault("GOOGLE_CLOUD_PROJECT", project_id)
|
|
23
|
+
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", "us-central1")
|
|
24
|
+
os.environ.setdefault("GOOGLE_GENAI_USE_VERTEXAI", "True")
|
|
25
|
+
|
|
26
|
+
vertexai.init(project=project_id, location="us-central1")
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_weather(query: str) -> str:
|
|
30
|
+
"""Simulates a web search. Use it get information on weather.
|
|
31
|
+
|
|
32
|
+
Args:
|
|
33
|
+
query: A string containing the location to get weather information for.
|
|
34
|
+
|
|
35
|
+
Returns:
|
|
36
|
+
A string with the simulated weather information for the queried location.
|
|
37
|
+
"""
|
|
38
|
+
if "sf" in query.lower() or "san francisco" in query.lower():
|
|
39
|
+
return "It's 60 degrees and foggy."
|
|
40
|
+
return "It's 90 degrees and sunny."
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
root_agent = Agent(
|
|
44
|
+
name="root_agent",
|
|
45
|
+
model="gemini-live-2.5-flash-preview-native-audio-09-2025",
|
|
46
|
+
instruction="You are a helpful AI assistant designed to provide accurate and useful information.",
|
|
47
|
+
tools=[get_weather],
|
|
48
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
"""
|
|
15
|
+
You can add your unit tests here.
|
|
16
|
+
This is where you test your business logic, including agent functionality,
|
|
17
|
+
data processing, and other core components of your application.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from app.agent import get_weather
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def test_get_weather_san_francisco() -> None:
|
|
24
|
+
"""Test get_weather function returns correct weather for San Francisco."""
|
|
25
|
+
result = get_weather("What's the weather in San Francisco?")
|
|
26
|
+
assert result == "It's 60 degrees and foggy."
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def test_get_weather_san_francisco_abbreviation() -> None:
|
|
30
|
+
"""Test get_weather function returns correct weather for SF abbreviation."""
|
|
31
|
+
result = get_weather("weather in sf")
|
|
32
|
+
assert result == "It's 60 degrees and foggy."
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def test_get_weather_other_location() -> None:
|
|
36
|
+
"""Test get_weather function returns default weather for other locations."""
|
|
37
|
+
result = get_weather("What's the weather in New York?")
|
|
38
|
+
assert result == "It's 90 degrees and sunny."
|
|
@@ -19,7 +19,7 @@ settings:
|
|
|
19
19
|
requires_session: true
|
|
20
20
|
deployment_targets: ["agent_engine", "cloud_run"]
|
|
21
21
|
extra_dependencies: [
|
|
22
|
-
"google-adk
|
|
22
|
+
"google-adk>=1.15.0,<2.0.0",
|
|
23
23
|
"langchain-google-vertexai~=2.0.7",
|
|
24
24
|
"langchain~=0.3.24",
|
|
25
25
|
"langchain-core~=0.3.55",
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# mypy: disable-error-code="union-attr"
|
|
16
|
+
from langchain_google_vertexai import ChatVertexAI
|
|
17
|
+
from langgraph.prebuilt import create_react_agent
|
|
18
|
+
|
|
19
|
+
from .crew.crew import DevCrew
|
|
20
|
+
|
|
21
|
+
LOCATION = "global"
|
|
22
|
+
LLM = "gemini-2.5-flash"
|
|
23
|
+
|
|
24
|
+
llm = ChatVertexAI(model=LLM, location=LOCATION, temperature=0)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
def coding_tool(code_instructions: str) -> str:
|
|
28
|
+
"""Use this tool to write a python program given a set of requirements and or instructions."""
|
|
29
|
+
inputs = {"code_instructions": code_instructions}
|
|
30
|
+
return DevCrew().crew().kickoff(inputs=inputs)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
system_message = (
|
|
34
|
+
"You are an expert Lead Software Engineer Manager.\n"
|
|
35
|
+
"Your role is to speak to a user and understand what kind of code they need to "
|
|
36
|
+
"build.\n"
|
|
37
|
+
"Part of your task is therefore to gather requirements and clarifying ambiguity "
|
|
38
|
+
"by asking followup questions. Don't ask all the questions together as the user "
|
|
39
|
+
"has a low attention span, rather ask a question at the time.\n"
|
|
40
|
+
"Once the problem to solve is clear, you will call your tool for writing the "
|
|
41
|
+
"solution.\n"
|
|
42
|
+
"Remember, you are an expert in understanding requirements but you cannot code, "
|
|
43
|
+
"use your coding tool to generate a solution. Keep the test cases if any, they "
|
|
44
|
+
"are useful for the user."
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
agent = create_react_agent(model=llm, tools=[coding_tool], prompt=system_message)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Copyright 2025 Google LLC
|
|
2
|
+
#
|
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
# you may not use this file except in compliance with the License.
|
|
5
|
+
# You may obtain a copy of the License at
|
|
6
|
+
#
|
|
7
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
#
|
|
9
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
# See the License for the specific language governing permissions and
|
|
13
|
+
# limitations under the License.
|
|
14
|
+
|
|
15
|
+
# mypy: disable-error-code="union-attr"
|
|
16
|
+
from langchain_google_vertexai import ChatVertexAI
|
|
17
|
+
from langgraph.prebuilt import create_react_agent
|
|
18
|
+
|
|
19
|
+
LOCATION = "global"
|
|
20
|
+
LLM = "gemini-2.5-flash"
|
|
21
|
+
|
|
22
|
+
llm = ChatVertexAI(model=LLM, location=LOCATION, temperature=0)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def get_weather(query: str) -> str:
|
|
26
|
+
"""Simulates a web search. Use it get information on weather"""
|
|
27
|
+
if "sf" in query.lower() or "san francisco" in query.lower():
|
|
28
|
+
return "It's 60 degrees and foggy."
|
|
29
|
+
return "It's 90 degrees and sunny."
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
agent = create_react_agent(
|
|
33
|
+
model=llm, tools=[get_weather], prompt="You are a helpful assistant"
|
|
34
|
+
)
|
|
@@ -11,7 +11,7 @@ The Agent Starter Pack follows a "bring your own agent" approach. It provides se
|
|
|
11
11
|
| `agentic_rag` | A RAG agent for document retrieval and Q&A | Document search and question answering |
|
|
12
12
|
| `langgraph_base_react` | A base ReAct agent using LangGraph | Graph based conversational agent |
|
|
13
13
|
| `crewai_coding_crew` | A multi-agent system implemented with CrewAI | Collaborative coding assistance |
|
|
14
|
-
| `
|
|
14
|
+
| `adk_live` | A real-time multimodal RAG agent | Audio/video/text chat with knowledge base |
|
|
15
15
|
|
|
16
16
|
## Choosing the Right Template
|
|
17
17
|
|
|
@@ -62,7 +62,7 @@ This template combines [CrewAI](https://www.crewai.com/)'s multi-agent collabora
|
|
|
62
62
|
* Sequential processing for tasks from requirements to implementation and QA.
|
|
63
63
|
* Ideal for complex tasks requiring delegation and simulating team collaboration.
|
|
64
64
|
|
|
65
|
-
### Live API (`
|
|
65
|
+
### Live API (`adk_live`)
|
|
66
66
|
|
|
67
67
|
Powered by Google Gemini, this template showcases a real-time, multimodal conversational RAG agent using the [Vertex AI Live API](https://cloud.google.com/vertex-ai/generative-ai/docs/live-api). Features include:
|
|
68
68
|
|
|
@@ -35,7 +35,7 @@ make backend IAP=true
|
|
|
35
35
|
This single command typically handles building the container, pushing it to a registry, deploying it to Cloud Run, and configuring IAP.
|
|
36
36
|
|
|
37
37
|
#### B. Scenario 2: Custom Frontend
|
|
38
|
-
If you have a separate, custom frontend (e.g., a React app for a `gemini_fullstack` agent or `
|
|
38
|
+
If you have a separate, custom frontend (e.g., a React app for a `gemini_fullstack` agent or `adk_live`) and want to deploy it with the backend for testing, the process requires a custom container configuration.
|
|
39
39
|
|
|
40
40
|
**Strategy**: For development, modify the `Dockerfile` to build and run both the frontend's development server and the backend's API server within a single container.
|
|
41
41
|
|
|
@@ -56,7 +56,7 @@ RUN apt-get update && apt-get install -y \
|
|
|
56
56
|
&& apt-get clean \
|
|
57
57
|
&& rm -rf /var/lib/apt/lists/*
|
|
58
58
|
|
|
59
|
-
RUN pip install --no-cache-dir uv==0.
|
|
59
|
+
RUN pip install --no-cache-dir uv==0.8.13
|
|
60
60
|
|
|
61
61
|
WORKDIR /code
|
|
62
62
|
|
{agent_starter_pack-0.15.6 → agent_starter_pack-0.16.0}/docs/guide/template-config-reference.md
RENAMED
|
@@ -27,7 +27,7 @@ This object contains fields that control the generated project's features and be
|
|
|
27
27
|
| --------------------------- | -------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
28
28
|
| `deployment_targets` | list(string) | A list of deployment targets your template supports. Options: `agent_engine`, `cloud_run`. |
|
|
29
29
|
| `tags` | list(string) | A list of tags for categorization. The `adk` tag enables special integrations with the Agent Development Kit. |
|
|
30
|
-
| `frontend_type` | string | Specifies the frontend to use. Examples: `streamlit`, `
|
|
30
|
+
| `frontend_type` | string | Specifies the frontend to use. Examples: `streamlit`, `adk_live_react`. Defaults to `streamlit`. |
|
|
31
31
|
| `agent_directory` | string | The name of the directory where agent code will be placed. Defaults to `app`. Can be overridden by the CLI `--agent-directory` parameter. |
|
|
32
32
|
| `requires_data_ingestion` | boolean | If `true`, the user will be prompted to configure a datastore. |
|
|
33
33
|
| `requires_session` | boolean | If `true`, the user will be prompted to choose a session storage type (e.g., `alloydb`) when using the `cloud_run` target. |
|
|
@@ -138,7 +138,7 @@ Templates for the `create` command (via `-a` or `--agent`):
|
|
|
138
138
|
| `agentic_rag` | RAG agent for document retrieval & Q&A |
|
|
139
139
|
| `langgraph_base_react` | Base ReAct agent (LangGraph) |
|
|
140
140
|
| `crewai_coding_crew` | Multi-agent collaborative coding assistance |
|
|
141
|
-
| `
|
|
141
|
+
| `adk_live` | Real-time multimodal RAG agent |
|
|
142
142
|
|
|
143
143
|
---
|
|
144
144
|
|