├── .cloudbuild ├── cd │ ├── test_e2e.yaml │ └── test_gemini_enterprise.yaml ├── ci │ ├── build_use_wheel.yaml │ ├── lint.yaml │ ├── lint_templated_agents.yaml │ ├── test.yaml │ ├── test_makefile.yaml │ ├── test_pipeline_parity.yaml │ ├── test_remote_template.yaml │ └── test_templated_agents.yaml ├── scheduled-cleanup.yaml └── terraform │ ├── apis.tf │ ├── backend.tf │ ├── build_triggers.tf │ ├── scheduled_cleanup.tf │ ├── service_account.tf │ ├── storage.tf │ ├── variables.tf │ └── vars │ └── env.tfvars ├── .github └── workflows │ └── docs.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GEMINI.md ├── LICENSE ├── Makefile ├── README.md ├── agent_starter_pack ├── agents │ ├── README.md │ ├── adk_a2a_base │ │ ├── .template │ │ │ └── templateconfig.yaml │ │ ├── README.md │ │ ├── app │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ ├── notebooks │ │ │ ├── adk_a2a_app_testing.ipynb │ │ │ └── evaluating_adk_agent.ipynb │ │ └── tests │ │ │ └── integration │ │ │ └── test_agent.py │ ├── adk_base │ │ ├── .template │ │ │ └── templateconfig.yaml │ │ ├── README.md │ │ ├── app │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ ├── notebooks │ │ │ ├── adk_app_testing.ipynb │ │ │ └── evaluating_adk_agent.ipynb │ │ └── tests │ │ │ └── integration │ │ │ └── test_agent.py │ ├── adk_live │ │ ├── .template │ │ │ └── templateconfig.yaml │ │ ├── README.md │ │ ├── app │ │ │ ├── __init__.py │ │ │ └── agent.py │ │ └── tests │ │ │ └── unit │ │ │ └── test_dummy.py │ ├── agentic_rag │ │ ├── .template │ │ │ └── templateconfig.yaml │ │ ├── README.md │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── agent.py │ │ │ ├── retrievers.py │ │ │ └── templates.py │ │ ├── notebooks │ │ │ ├── adk_app_testing.ipynb │ │ │ └── evaluating_adk_agent.ipynb │ │ └── tests │ │ │ └── integration │ │ │ └── test_agent.py │ └── langgraph_base │ │ ├── .template │ │ └── templateconfig.yaml │ │ ├── README.md │ │ ├── app │ │ ├── __init__.py │ │ └── agent.py │ │ ├── notebooks │ │ └── evaluating_langgraph_agent.ipynb │ │ └── tests │ │ └── integration │ │ └── test_agent.py ├── base_template │ ├── .gitignore │ ├── GEMINI.md │ ├── Makefile │ ├── README.md │ ├── deployment │ │ ├── README.md │ │ └── terraform │ │ │ ├── apis.tf │ │ │ ├── dev │ │ │ ├── apis.tf │ │ │ ├── iam.tf │ │ │ ├── providers.tf │ │ │ ├── storage.tf │ │ │ ├── variables.tf │ │ │ ├── vars │ │ │ │ └── env.tfvars │ │ │ └── {% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %} │ │ │ ├── github.tf │ │ │ ├── iam.tf │ │ │ ├── locals.tf │ │ │ ├── providers.tf │ │ │ ├── service_accounts.tf │ │ │ ├── sql │ │ │ └── completions.sql │ │ │ ├── storage.tf │ │ │ ├── variables.tf │ │ │ ├── vars │ │ │ └── env.tfvars │ │ │ ├── {% if cookiecutter.cicd_runner == 'github_actions' %}wif.tf{% else %}unused_wif.tf{% endif %} │ │ │ ├── {% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %} │ │ │ └── {% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %} │ ├── pyproject.toml │ ├── tests │ │ └── unit │ │ │ └── test_dummy.py │ ├── {% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %} │ │ └── workflows │ │ │ ├── deploy-to-prod.yaml │ │ │ ├── pr_checks.yaml │ │ │ └── staging.yaml │ ├── {% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %} │ │ ├── deploy-to-prod.yaml │ │ ├── pr_checks.yaml │ │ └── staging.yaml │ └── {{cookiecutter.agent_directory}} │ │ └── app_utils │ │ ├── telemetry.py │ │ ├── typing.py │ │ ├── {% if cookiecutter.agent_name == 'adk_live' %}gcs.py{% else %}unused_gcs.py{% endif %} │ │ ├── {% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}converters{% else %}unused_converters{% endif %} │ │ ├── __init__.py │ │ └── part_converter.py │ │ └── {% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %} │ │ ├── __init__.py │ │ ├── a2a_agent_executor.py │ │ └── task_result_aggregator.py ├── cli │ ├── commands │ │ ├── create.py │ │ ├── enhance.py │ │ ├── list.py │ │ ├── register_gemini_enterprise.py │ │ └── setup_cicd.py │ ├── main.py │ └── utils │ │ ├── __init__.py │ │ ├── cicd.py │ │ ├── datastores.py │ │ ├── gcp.py │ │ ├── logging.py │ │ ├── remote_template.py │ │ ├── template.py │ │ └── version.py ├── data_ingestion │ ├── README.md │ ├── data_ingestion_pipeline │ │ ├── components │ │ │ ├── ingest_data.py │ │ │ └── process_data.py │ │ ├── pipeline.py │ │ └── submit_pipeline.py │ ├── pyproject.toml │ └── uv.lock ├── deployment_targets │ ├── agent_engine │ │ ├── deployment_metadata.json │ │ ├── tests │ │ │ ├── integration │ │ │ │ └── test_agent_engine_app.py │ │ │ ├── load_test │ │ │ │ ├── .results │ │ │ │ │ └── .placeholder │ │ │ │ ├── README.md │ │ │ │ └── load_test.py │ │ │ └── {% if cookiecutter.is_a2a %}helpers.py{% else %}unused_helpers.py{% endif %} │ │ └── {{cookiecutter.agent_directory}} │ │ │ ├── agent_engine_app.py │ │ │ └── app_utils │ │ │ ├── deploy.py │ │ │ └── {% if cookiecutter.is_adk_live %}expose_app.py{% else %}unused_expose_app.py{% endif %} │ └── cloud_run │ │ ├── Dockerfile │ │ ├── deployment │ │ └── terraform │ │ │ ├── dev │ │ │ └── service.tf │ │ │ └── service.tf │ │ ├── tests │ │ ├── integration │ │ │ └── test_server_e2e.py │ │ └── load_test │ │ │ ├── .results │ │ │ └── .placeholder │ │ │ ├── README.md │ │ │ └── load_test.py │ │ └── {{cookiecutter.agent_directory}} │ │ └── fast_api_app.py ├── frontends │ └── adk_live_react │ │ └── frontend │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── robots.txt │ │ ├── src │ │ ├── App.scss │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── components │ │ │ ├── audio-pulse │ │ │ │ ├── AudioPulse.tsx │ │ │ │ └── audio-pulse.scss │ │ │ ├── logger │ │ │ │ ├── Logger.tsx │ │ │ │ ├── logger.scss │ │ │ │ └── mock-logs.ts │ │ │ ├── side-panel │ │ │ │ ├── SidePanel.tsx │ │ │ │ └── side-panel.scss │ │ │ └── transcription-preview │ │ │ │ ├── TranscriptionPreview.tsx │ │ │ │ └── transcription-preview.scss │ │ ├── contexts │ │ │ └── LiveAPIContext.tsx │ │ ├── hooks │ │ │ ├── use-live-api.ts │ │ │ ├── use-media-stream-mux.ts │ │ │ ├── use-screen-capture.ts │ │ │ └── use-webcam.ts │ │ ├── index.css │ │ ├── index.tsx │ │ ├── multimodal-live-types.ts │ │ ├── react-app-env.d.ts │ │ ├── reportWebVitals.ts │ │ ├── setupTests.ts │ │ └── utils │ │ │ ├── audio-recorder.ts │ │ │ ├── audio-streamer.ts │ │ │ ├── audioworklet-registry.ts │ │ │ ├── multimodal-live-client.ts │ │ │ ├── store-logger.ts │ │ │ ├── utils.ts │ │ │ └── worklets │ │ │ ├── audio-processing.ts │ │ │ └── vol-meter.ts │ │ └── tsconfig.json ├── resources │ ├── containers │ │ ├── data_processing │ │ │ └── Dockerfile │ │ └── e2e-tests │ │ │ └── Dockerfile │ ├── docs │ │ └── adk-cheatsheet.md │ ├── idx │ │ ├── .idx │ │ │ └── dev.nix │ │ ├── idx-template.json │ │ └── idx-template.nix │ ├── idx_ag │ │ ├── .idx │ │ │ └── dev.nix │ │ ├── idx-template.json │ │ └── idx-template.nix │ └── locks │ │ ├── uv-adk_a2a_base-agent_engine.lock │ │ ├── uv-adk_a2a_base-cloud_run.lock │ │ ├── uv-adk_base-agent_engine.lock │ │ ├── uv-adk_base-cloud_run.lock │ │ ├── uv-adk_live-agent_engine.lock │ │ ├── uv-adk_live-cloud_run.lock │ │ ├── uv-agentic_rag-agent_engine.lock │ │ ├── uv-agentic_rag-cloud_run.lock │ │ ├── uv-langgraph_base-agent_engine.lock │ │ └── uv-langgraph_base-cloud_run.lock └── utils │ ├── generate_locks.py │ ├── lock_utils.py │ └── watch_and_rebuild.py ├── docs ├── .vitepress │ └── config.js ├── agents │ └── overview.md ├── cli │ ├── create.md │ ├── enhance.md │ ├── index.md │ ├── list.md │ ├── register_gemini_enterprise.md │ └── setup_cicd.md ├── guide │ ├── community-showcase.md │ ├── data-ingestion.md │ ├── deploy-ui.md │ ├── deployment.md │ ├── development-guide.md │ ├── getting-started.md │ ├── installation.md │ ├── observability.md │ ├── template-config-reference.md │ ├── troubleshooting.md │ ├── video-tutorials.md │ └── why_starter_pack.md ├── images │ ├── adk_gemini_fullstack.gif │ ├── adk_gemini_fullstack_architecture.png │ ├── adk_logo.png │ ├── agent_starter_pack_screenshot.png │ ├── ags_high_level_architecture.png │ ├── icon.png │ ├── logo.png │ ├── observability.png │ ├── prototype_to_prod.png │ ├── why_sp_edited.png │ └── why_starter_pack.png ├── index.md ├── package-lock.json ├── package.json └── remote-templates │ ├── creating-remote-templates.md │ ├── index.md │ └── using-remote-templates.md ├── llm.txt ├── pyproject.toml ├── src └── resources │ └── idx │ ├── .idx │ └── dev.nix │ ├── idx-template.json │ └── idx-template.nix ├── tests ├── __init__.py ├── cicd │ ├── example.env │ ├── scripts │ │ ├── delete_agent_engines.py │ │ ├── delete_cloud_sql_instances.py │ │ ├── delete_service_accounts.py │ │ ├── delete_vector_search.py │ │ └── force-cleanup.sh │ ├── test_e2e_deployment.py │ └── test_gemini_enterprise_registration.py ├── cli │ ├── commands │ │ ├── test_create.py │ │ ├── test_create_local.py │ │ ├── test_enhance.py │ │ ├── test_list.py │ │ └── test_setup_cicd.py │ └── utils │ │ ├── test_add_base_template_dependencies.py │ │ ├── test_cicd.py │ │ ├── test_register_gemini_enterprise.py │ │ └── test_remote_template.py ├── fixtures │ ├── makefile_hashes.json │ └── makefile_snapshots │ │ ├── adk_a2a_agent_engine.makefile │ │ ├── adk_a2a_cloud_run.makefile │ │ ├── adk_base_agent_engine_no_data.makefile │ │ ├── adk_base_cloud_run_no_data.makefile │ │ ├── adk_live_agent_engine.makefile │ │ ├── adk_live_cloud_run.makefile │ │ ├── agent_with_agent_garden.makefile │ │ ├── agent_with_custom_commands.makefile │ │ ├── agentic_rag_cloud_run_vector_search.makefile │ │ ├── agentic_rag_cloud_run_vertex_search.makefile │ │ ├── langgraph_agent_engine.makefile │ │ └── langgraph_cloud_run.makefile ├── integration │ ├── test_agent_directory_functionality.py │ ├── test_makefile_usability.py │ ├── test_pipeline_parity.py │ ├── test_remote_templating.py │ ├── test_template_linting.py │ ├── test_templated_patterns.py │ └── utils.py ├── unit │ ├── README_MAKEFILE_TESTS.md │ └── test_makefile_template.py └── utils │ ├── __init__.py │ └── get_agents.py └── uv.lock /.cloudbuild/cd/test_e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/cd/test_e2e.yaml -------------------------------------------------------------------------------- /.cloudbuild/cd/test_gemini_enterprise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/cd/test_gemini_enterprise.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/build_use_wheel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/build_use_wheel.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/lint.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/lint_templated_agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/lint_templated_agents.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/test.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/test_makefile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/test_makefile.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/test_pipeline_parity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/test_pipeline_parity.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/test_remote_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/test_remote_template.yaml -------------------------------------------------------------------------------- /.cloudbuild/ci/test_templated_agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/ci/test_templated_agents.yaml -------------------------------------------------------------------------------- /.cloudbuild/scheduled-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/scheduled-cleanup.yaml -------------------------------------------------------------------------------- /.cloudbuild/terraform/apis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/apis.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/backend.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/build_triggers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/build_triggers.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/scheduled_cleanup.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/scheduled_cleanup.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/service_account.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/service_account.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/storage.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/variables.tf -------------------------------------------------------------------------------- /.cloudbuild/terraform/vars/env.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.cloudbuild/terraform/vars/env.tfvars -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/GEMINI.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/.template/templateconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/.template/templateconfig.yaml -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/app/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/app/agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/notebooks/adk_a2a_app_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/notebooks/adk_a2a_app_testing.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/notebooks/evaluating_adk_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/notebooks/evaluating_adk_agent.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_a2a_base/tests/integration/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_a2a_base/tests/integration/test_agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/.template/templateconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/.template/templateconfig.yaml -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/app/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/app/agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/notebooks/adk_app_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/notebooks/adk_app_testing.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/notebooks/evaluating_adk_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/notebooks/evaluating_adk_agent.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_base/tests/integration/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_base/tests/integration/test_agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_live/.template/templateconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_live/.template/templateconfig.yaml -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_live/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_live/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_live/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_live/app/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_live/app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_live/app/agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/adk_live/tests/unit/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/adk_live/tests/unit/test_dummy.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/.template/templateconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/.template/templateconfig.yaml -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/app/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/app/agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/app/retrievers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/app/retrievers.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/app/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/app/templates.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/notebooks/adk_app_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/notebooks/adk_app_testing.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/agentic_rag/tests/integration/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/agentic_rag/tests/integration/test_agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/.template/templateconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/.template/templateconfig.yaml -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/README.md -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/app/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/app/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/app/agent.py -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/notebooks/evaluating_langgraph_agent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/notebooks/evaluating_langgraph_agent.ipynb -------------------------------------------------------------------------------- /agent_starter_pack/agents/langgraph_base/tests/integration/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/agents/langgraph_base/tests/integration/test_agent.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/.gitignore -------------------------------------------------------------------------------- /agent_starter_pack/base_template/GEMINI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/GEMINI.md -------------------------------------------------------------------------------- /agent_starter_pack/base_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/Makefile -------------------------------------------------------------------------------- /agent_starter_pack/base_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/README.md -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/README.md -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/apis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/apis.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/apis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/apis.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/iam.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/providers.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/storage.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/variables.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/vars/env.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/vars/env.tfvars -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/dev/{% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/dev/{% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/github.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/github.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/iam.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/locals.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/providers.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/service_accounts.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/service_accounts.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/sql/completions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/sql/completions.sql -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/storage.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/variables.tf -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/vars/env.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/vars/env.tfvars -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'github_actions' %}wif.tf{% else %}unused_wif.tf{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'github_actions' %}wif.tf{% else %}unused_wif.tf{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/deployment/terraform/{% if cookiecutter.is_adk %}telemetry.tf{% else %}unused_telemetry.tf{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/base_template/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/pyproject.toml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/tests/unit/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/tests/unit/test_dummy.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/pr_checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/pr_checks.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/telemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/telemetry.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/typing.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.agent_name == 'adk_live' %}gcs.py{% else %}unused_gcs.py{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.agent_name == 'adk_live' %}gcs.py{% else %}unused_gcs.py{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}converters{% else %}unused_converters{% endif %}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}converters{% else %}unused_converters{% endif %}/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}converters{% else %}unused_converters{% endif %}/part_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}converters{% else %}unused_converters{% endif %}/part_converter.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/a2a_agent_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/a2a_agent_executor.py -------------------------------------------------------------------------------- /agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/task_result_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_a2a and cookiecutter.agent_name == 'langgraph_base' %}executor{% else %}unused_executor{% endif %}/task_result_aggregator.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/commands/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/commands/create.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/commands/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/commands/enhance.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/commands/list.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/commands/register_gemini_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/commands/register_gemini_enterprise.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/commands/setup_cicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/commands/setup_cicd.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/main.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/__init__.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/cicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/cicd.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/datastores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/datastores.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/gcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/gcp.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/logging.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/remote_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/remote_template.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/template.py -------------------------------------------------------------------------------- /agent_starter_pack/cli/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/cli/utils/version.py -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/README.md -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/data_ingestion_pipeline/components/ingest_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/data_ingestion_pipeline/components/ingest_data.py -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/data_ingestion_pipeline/components/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/data_ingestion_pipeline/components/process_data.py -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/data_ingestion_pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/data_ingestion_pipeline/pipeline.py -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/data_ingestion_pipeline/submit_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/data_ingestion_pipeline/submit_pipeline.py -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/pyproject.toml -------------------------------------------------------------------------------- /agent_starter_pack/data_ingestion/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/data_ingestion/uv.lock -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/deployment_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/deployment_metadata.json -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/tests/load_test/.results/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/tests/load_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/tests/load_test/README.md -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/tests/load_test/load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/tests/load_test/load_test.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/tests/{% if cookiecutter.is_a2a %}helpers.py{% else %}unused_helpers.py{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/tests/{% if cookiecutter.is_a2a %}helpers.py{% else %}unused_helpers.py{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/app_utils/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/app_utils/deploy.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_adk_live %}expose_app.py{% else %}unused_expose_app.py{% endif %}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/app_utils/{% if cookiecutter.is_adk_live %}expose_app.py{% else %}unused_expose_app.py{% endif %} -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/Dockerfile -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/deployment/terraform/dev/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/deployment/terraform/dev/service.tf -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/deployment/terraform/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/deployment/terraform/service.tf -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/tests/integration/test_server_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/tests/integration/test_server_e2e.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/tests/load_test/.results/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/tests/load_test/.results/.placeholder -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/tests/load_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/tests/load_test/README.md -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/tests/load_test/load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/tests/load_test/load_test.py -------------------------------------------------------------------------------- /agent_starter_pack/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}/fast_api_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}/fast_api_app.py -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/package-lock.json -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/package.json -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/public/favicon.ico -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/public/index.html -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/public/robots.txt -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/App.scss -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/App.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/audio-pulse/AudioPulse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/audio-pulse/AudioPulse.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/audio-pulse/audio-pulse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/audio-pulse/audio-pulse.scss -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/Logger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/Logger.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/logger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/logger.scss -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/mock-logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/logger/mock-logs.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/side-panel/SidePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/side-panel/SidePanel.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/side-panel/side-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/side-panel/side-panel.scss -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/transcription-preview/TranscriptionPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/transcription-preview/TranscriptionPreview.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/components/transcription-preview/transcription-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/components/transcription-preview/transcription-preview.scss -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/contexts/LiveAPIContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/contexts/LiveAPIContext.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-live-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-live-api.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-media-stream-mux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-media-stream-mux.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-screen-capture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-screen-capture.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-webcam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/hooks/use-webcam.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/index.css -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/index.tsx -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/multimodal-live-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/multimodal-live-types.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/react-app-env.d.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audio-recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audio-recorder.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audio-streamer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audio-streamer.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audioworklet-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/audioworklet-registry.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/multimodal-live-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/multimodal-live-client.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/store-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/store-logger.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/utils.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/worklets/audio-processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/worklets/audio-processing.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/src/utils/worklets/vol-meter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/src/utils/worklets/vol-meter.ts -------------------------------------------------------------------------------- /agent_starter_pack/frontends/adk_live_react/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/frontends/adk_live_react/frontend/tsconfig.json -------------------------------------------------------------------------------- /agent_starter_pack/resources/containers/data_processing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/containers/data_processing/Dockerfile -------------------------------------------------------------------------------- /agent_starter_pack/resources/containers/e2e-tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/containers/e2e-tests/Dockerfile -------------------------------------------------------------------------------- /agent_starter_pack/resources/docs/adk-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/docs/adk-cheatsheet.md -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx/.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx/.idx/dev.nix -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx/idx-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx/idx-template.json -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx/idx-template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx/idx-template.nix -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx_ag/.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx_ag/.idx/dev.nix -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx_ag/idx-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx_ag/idx-template.json -------------------------------------------------------------------------------- /agent_starter_pack/resources/idx_ag/idx-template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/idx_ag/idx-template.nix -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_a2a_base-agent_engine.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_a2a_base-agent_engine.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_a2a_base-cloud_run.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_a2a_base-cloud_run.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_base-agent_engine.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_base-agent_engine.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_base-cloud_run.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_base-cloud_run.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_live-agent_engine.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_live-agent_engine.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-adk_live-cloud_run.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-adk_live-cloud_run.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-agentic_rag-agent_engine.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-agentic_rag-agent_engine.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-agentic_rag-cloud_run.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-agentic_rag-cloud_run.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-langgraph_base-agent_engine.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-langgraph_base-agent_engine.lock -------------------------------------------------------------------------------- /agent_starter_pack/resources/locks/uv-langgraph_base-cloud_run.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/resources/locks/uv-langgraph_base-cloud_run.lock -------------------------------------------------------------------------------- /agent_starter_pack/utils/generate_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/utils/generate_locks.py -------------------------------------------------------------------------------- /agent_starter_pack/utils/lock_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/utils/lock_utils.py -------------------------------------------------------------------------------- /agent_starter_pack/utils/watch_and_rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/agent_starter_pack/utils/watch_and_rebuild.py -------------------------------------------------------------------------------- /docs/.vitepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/.vitepress/config.js -------------------------------------------------------------------------------- /docs/agents/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/agents/overview.md -------------------------------------------------------------------------------- /docs/cli/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/create.md -------------------------------------------------------------------------------- /docs/cli/enhance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/enhance.md -------------------------------------------------------------------------------- /docs/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/index.md -------------------------------------------------------------------------------- /docs/cli/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/list.md -------------------------------------------------------------------------------- /docs/cli/register_gemini_enterprise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/register_gemini_enterprise.md -------------------------------------------------------------------------------- /docs/cli/setup_cicd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/cli/setup_cicd.md -------------------------------------------------------------------------------- /docs/guide/community-showcase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/community-showcase.md -------------------------------------------------------------------------------- /docs/guide/data-ingestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/data-ingestion.md -------------------------------------------------------------------------------- /docs/guide/deploy-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/deploy-ui.md -------------------------------------------------------------------------------- /docs/guide/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/deployment.md -------------------------------------------------------------------------------- /docs/guide/development-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/development-guide.md -------------------------------------------------------------------------------- /docs/guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/getting-started.md -------------------------------------------------------------------------------- /docs/guide/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/installation.md -------------------------------------------------------------------------------- /docs/guide/observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/observability.md -------------------------------------------------------------------------------- /docs/guide/template-config-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/template-config-reference.md -------------------------------------------------------------------------------- /docs/guide/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/troubleshooting.md -------------------------------------------------------------------------------- /docs/guide/video-tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/video-tutorials.md -------------------------------------------------------------------------------- /docs/guide/why_starter_pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/guide/why_starter_pack.md -------------------------------------------------------------------------------- /docs/images/adk_gemini_fullstack.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/adk_gemini_fullstack.gif -------------------------------------------------------------------------------- /docs/images/adk_gemini_fullstack_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/adk_gemini_fullstack_architecture.png -------------------------------------------------------------------------------- /docs/images/adk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/adk_logo.png -------------------------------------------------------------------------------- /docs/images/agent_starter_pack_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/agent_starter_pack_screenshot.png -------------------------------------------------------------------------------- /docs/images/ags_high_level_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/ags_high_level_architecture.png -------------------------------------------------------------------------------- /docs/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/icon.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/observability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/observability.png -------------------------------------------------------------------------------- /docs/images/prototype_to_prod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/prototype_to_prod.png -------------------------------------------------------------------------------- /docs/images/why_sp_edited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/why_sp_edited.png -------------------------------------------------------------------------------- /docs/images/why_starter_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/images/why_starter_pack.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/remote-templates/creating-remote-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/remote-templates/creating-remote-templates.md -------------------------------------------------------------------------------- /docs/remote-templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/remote-templates/index.md -------------------------------------------------------------------------------- /docs/remote-templates/using-remote-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/docs/remote-templates/using-remote-templates.md -------------------------------------------------------------------------------- /llm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/llm.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/resources/idx/.idx/dev.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/src/resources/idx/.idx/dev.nix -------------------------------------------------------------------------------- /src/resources/idx/idx-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/src/resources/idx/idx-template.json -------------------------------------------------------------------------------- /src/resources/idx/idx-template.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/src/resources/idx/idx-template.nix -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make the directory a package 2 | -------------------------------------------------------------------------------- /tests/cicd/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/example.env -------------------------------------------------------------------------------- /tests/cicd/scripts/delete_agent_engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/scripts/delete_agent_engines.py -------------------------------------------------------------------------------- /tests/cicd/scripts/delete_cloud_sql_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/scripts/delete_cloud_sql_instances.py -------------------------------------------------------------------------------- /tests/cicd/scripts/delete_service_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/scripts/delete_service_accounts.py -------------------------------------------------------------------------------- /tests/cicd/scripts/delete_vector_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/scripts/delete_vector_search.py -------------------------------------------------------------------------------- /tests/cicd/scripts/force-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/scripts/force-cleanup.sh -------------------------------------------------------------------------------- /tests/cicd/test_e2e_deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/test_e2e_deployment.py -------------------------------------------------------------------------------- /tests/cicd/test_gemini_enterprise_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cicd/test_gemini_enterprise_registration.py -------------------------------------------------------------------------------- /tests/cli/commands/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/commands/test_create.py -------------------------------------------------------------------------------- /tests/cli/commands/test_create_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/commands/test_create_local.py -------------------------------------------------------------------------------- /tests/cli/commands/test_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/commands/test_enhance.py -------------------------------------------------------------------------------- /tests/cli/commands/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/commands/test_list.py -------------------------------------------------------------------------------- /tests/cli/commands/test_setup_cicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/commands/test_setup_cicd.py -------------------------------------------------------------------------------- /tests/cli/utils/test_add_base_template_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/utils/test_add_base_template_dependencies.py -------------------------------------------------------------------------------- /tests/cli/utils/test_cicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/utils/test_cicd.py -------------------------------------------------------------------------------- /tests/cli/utils/test_register_gemini_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/utils/test_register_gemini_enterprise.py -------------------------------------------------------------------------------- /tests/cli/utils/test_remote_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/cli/utils/test_remote_template.py -------------------------------------------------------------------------------- /tests/fixtures/makefile_hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_hashes.json -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_a2a_agent_engine.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_a2a_agent_engine.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_a2a_cloud_run.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_a2a_cloud_run.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_base_agent_engine_no_data.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_base_agent_engine_no_data.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_base_cloud_run_no_data.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_base_cloud_run_no_data.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_live_agent_engine.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_live_agent_engine.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/adk_live_cloud_run.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/adk_live_cloud_run.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/agent_with_agent_garden.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/agent_with_agent_garden.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/agent_with_custom_commands.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/agent_with_custom_commands.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vector_search.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vector_search.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vertex_search.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/agentic_rag_cloud_run_vertex_search.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/langgraph_agent_engine.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/langgraph_agent_engine.makefile -------------------------------------------------------------------------------- /tests/fixtures/makefile_snapshots/langgraph_cloud_run.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/fixtures/makefile_snapshots/langgraph_cloud_run.makefile -------------------------------------------------------------------------------- /tests/integration/test_agent_directory_functionality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_agent_directory_functionality.py -------------------------------------------------------------------------------- /tests/integration/test_makefile_usability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_makefile_usability.py -------------------------------------------------------------------------------- /tests/integration/test_pipeline_parity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_pipeline_parity.py -------------------------------------------------------------------------------- /tests/integration/test_remote_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_remote_templating.py -------------------------------------------------------------------------------- /tests/integration/test_template_linting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_template_linting.py -------------------------------------------------------------------------------- /tests/integration/test_templated_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/test_templated_patterns.py -------------------------------------------------------------------------------- /tests/integration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/integration/utils.py -------------------------------------------------------------------------------- /tests/unit/README_MAKEFILE_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/unit/README_MAKEFILE_TESTS.md -------------------------------------------------------------------------------- /tests/unit/test_makefile_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/unit/test_makefile_template.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make the directory a package 2 | -------------------------------------------------------------------------------- /tests/utils/get_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/tests/utils/get_agents.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/agent-starter-pack/HEAD/uv.lock --------------------------------------------------------------------------------