agent-starter-pack 0.3.9__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- agent_starter_pack-0.4.0/.github/workflows/docs.yml +61 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.gitignore +1 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/Makefile +3 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/PKG-INFO +19 -17
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/README.md +18 -16
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/app/agent.py +1 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/template/.templateconfig.yaml +2 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/app/agent.py +2 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/template/.templateconfig.yaml +2 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/app/agent.py +1 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/template/.templateconfig.yaml +3 -2
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/langgraph_base_react/app/agent.py +1 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/langgraph_base_react/template/.templateconfig.yaml +2 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/README.md +4 -4
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/app/agent.py +22 -31
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/app/server.py +16 -3
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/template/.templateconfig.yaml +2 -7
- agent_starter_pack-0.4.0/docs/.vitepress/config.js +71 -0
- agent_starter_pack-0.4.0/docs/agents/overview.md +84 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/docs/cli/create.md +9 -5
- agent_starter_pack-0.3.9/docs/cli/README.md → agent_starter_pack-0.4.0/docs/cli/index.md +1 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/docs/cli/setup_cicd.md +6 -6
- {agent_starter_pack-0.3.9/docs → agent_starter_pack-0.4.0/docs/guide}/deployment.md +7 -4
- agent_starter_pack-0.4.0/docs/guide/getting-started.md +75 -0
- {agent_starter_pack-0.3.9/docs → agent_starter_pack-0.4.0/docs/guide}/observability.md +5 -5
- agent_starter_pack-0.4.0/docs/guide/video-tutorials.md +11 -0
- agent_starter_pack-0.4.0/docs/guide/why_starter_pack.md +74 -0
- agent_starter_pack-0.4.0/docs/images/logo.png +0 -0
- agent_starter_pack-0.4.0/docs/images/prototype_to_prod.png +0 -0
- agent_starter_pack-0.4.0/docs/images/why_starter_pack.png +0 -0
- agent_starter_pack-0.4.0/docs/index.md +49 -0
- agent_starter_pack-0.4.0/docs/package-lock.json +2421 -0
- agent_starter_pack-0.4.0/docs/package.json +15 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/pyproject.toml +1 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/Makefile +9 -5
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/pyproject.toml +2 -2
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/commands/create.py +3 -4
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/commands/setup_cicd.py +36 -2
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/gcp.py +3 -3
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/template.py +4 -1
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-adk_base-agent_engine.lock +315 -303
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-adk_base-cloud_run.lock +379 -367
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-agentic_rag-agent_engine.lock +482 -371
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-agentic_rag-cloud_run.lock +588 -449
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +583 -524
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +694 -600
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-langgraph_base_react-agent_engine.lock +460 -389
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-langgraph_base_react-cloud_run.lock +565 -479
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/locks/uv-live_api-cloud_run.lock +475 -710
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/uv.lock +1 -1
- agent_starter_pack-0.3.9/agents/live_api/app/templates.py +0 -51
- agent_starter_pack-0.3.9/agents/live_api/app/vector_store.py +0 -55
- agent_starter_pack-0.3.9/docs/README.md +0 -25
- agent_starter_pack-0.3.9/docs/images/ags_banner.png +0 -0
- agent_starter_pack-0.3.9/docs/why_starter_pack.md +0 -52
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/cd/test_e2e.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/ci/build_use_wheel.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/ci/lint.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/ci/lint_templated_agents.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/ci/test.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/ci/test_templated_agents.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/terraform/apis.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/terraform/build_triggers.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/terraform/service_account.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/terraform/storage.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/.cloudbuild/terraform/variables.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/CODE_OF_CONDUCT.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/CONTRIBUTING.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/LICENSE +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/app/retrievers.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/app/templates.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/agentic_rag/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/app/crew/config/agents.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/app/crew/config/tasks.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/app/crew/crew.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/notebooks/evaluating_crewai_agent.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/crewai_coding_crew/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/langgraph_base_react/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/langgraph_base_react/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/langgraph_base_react/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/tests/integration/test_server_e2e.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/tests/unit/test_server.py +0 -0
- {agent_starter_pack-0.3.9/docs → agent_starter_pack-0.4.0/docs/guide}/data-ingestion.md +0 -0
- {agent_starter_pack-0.3.9/docs → agent_starter_pack-0.4.0/docs/guide}/installation.md +0 -0
- {agent_starter_pack-0.3.9/docs → agent_starter_pack-0.4.0/docs/guide}/troubleshooting.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/docs/images/adk_logo.png +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/docs/images/ags_high_level_architecture.png +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/docs/images/icon.png +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/.gitignore +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/app/__init__.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/app/utils/tracing.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/app/utils/typing.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/cd/deploy-to-prod.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/cd/staging.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/ci/pr_checks.yaml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/apis.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/build_triggers.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/apis.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/iam.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/log_sinks.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/providers.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/storage.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/variables.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/dev/vars/env.tfvars +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/iam.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/locals.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/log_sinks.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/providers.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/service_accounts.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/storage.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/variables.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/deployment/terraform/vars/env.tfvars +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/base_template/tests/unit/test_dummy.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/main.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/__init__.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/cicd.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/datastores.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/logging.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/cli/utils/version.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/data_ingestion_pipeline/components/ingest_data.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/data_ingestion_pipeline/components/process_data.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/data_ingestion_pipeline/pipeline.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/data_ingestion_pipeline/submit_pipeline.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/pyproject.toml +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/data_ingestion/uv.lock +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/app/agent_engine_app.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/app/utils/gcs.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/deployment_metadata.json +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/notebooks/intro_agent_engine.ipynb +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/tests/load_test/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/agent_engine/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/Dockerfile +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/app/server.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/tests/integration/test_server_e2e.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/tests/load_test/README.md +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/deployment_targets/cloud_run/uv.lock +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/package-lock.json +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/package.json +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/public/favicon.ico +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/public/index.html +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/public/robots.txt +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/App.scss +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/App.test.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/App.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/audio-pulse/AudioPulse.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/audio-pulse/audio-pulse.scss +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/control-tray/ControlTray.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/control-tray/control-tray.scss +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/logger/Logger.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/logger/logger.scss +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/logger/mock-logs.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/side-panel/SidePanel.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/components/side-panel/side-panel.scss +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/contexts/LiveAPIContext.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/hooks/use-live-api.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/hooks/use-media-stream-mux.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/hooks/use-screen-capture.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/hooks/use-webcam.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/index.css +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/index.tsx +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/multimodal-live-types.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/react-app-env.d.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/reportWebVitals.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/setupTests.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/audio-recorder.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/audio-streamer.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/audioworklet-registry.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/multimodal-live-client.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/store-logger.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/utils.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/worklets/audio-processing.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/src/utils/worklets/vol-meter.ts +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/live_api_react/frontend/tsconfig.json +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/side_bar.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/streamlit_app.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/style/app_markdown.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/chat_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/local_chat_history.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/message_editing.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/multimodal_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/stream_handler.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit/frontend/utils/title_summary.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/side_bar.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/streamlit_app.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/style/app_markdown.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/chat_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/local_chat_history.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/message_editing.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/multimodal_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/stream_handler.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/frontends/streamlit_adk/frontend/utils/title_summary.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/containers/data_processing/Dockerfile +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/containers/e2e-tests/Dockerfile +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/idx/.idx/dev.nix +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/idx/idx-template.json +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/idx/idx-template.nix +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/setup_cicd/cicd_variables.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/setup_cicd/github.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/resources/setup_cicd/providers.tf +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/utils/generate_locks.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/utils/lock_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/src/utils/watch_and_rebuild.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/__init__.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/cicd/example.env +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/cicd/test_e2e_deployment.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/cli/commands/test_create.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/cli/commands/test_setup_cicd.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/cli/utils/test_cicd.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/integration/test_template_linting.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/integration/test_templated_patterns.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_side_bar.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_streamlit_app.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_utils/test_chat_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_utils/test_local_chat_history.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_utils/test_message_editing.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_utils/test_multimodal_utils.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/test_frontend/test_utils/test_stream_handler.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/utils/__init__.py +0 -0
- {agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/tests/utils/get_agents.py +0 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
name: Deploy Docs to GitHub Pages
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: [ main ]
|
6
|
+
paths:
|
7
|
+
- 'docs/**'
|
8
|
+
- '.github/workflows/docs.yml'
|
9
|
+
workflow_dispatch:
|
10
|
+
|
11
|
+
permissions:
|
12
|
+
contents: read
|
13
|
+
pages: write
|
14
|
+
id-token: write
|
15
|
+
|
16
|
+
concurrency:
|
17
|
+
group: "pages"
|
18
|
+
cancel-in-progress: true
|
19
|
+
|
20
|
+
jobs:
|
21
|
+
build:
|
22
|
+
runs-on: ubuntu-latest
|
23
|
+
steps:
|
24
|
+
- name: Checkout
|
25
|
+
uses: actions/checkout@v4
|
26
|
+
|
27
|
+
- name: Setup Node.js
|
28
|
+
uses: actions/setup-node@v4
|
29
|
+
with:
|
30
|
+
node-version: 18
|
31
|
+
cache: 'npm'
|
32
|
+
cache-dependency-path: docs/package-lock.json
|
33
|
+
|
34
|
+
- name: Install dependencies
|
35
|
+
working-directory: docs
|
36
|
+
run: npm ci
|
37
|
+
|
38
|
+
- name: Build VitePress site
|
39
|
+
working-directory: docs
|
40
|
+
run: |
|
41
|
+
npm run docs:build
|
42
|
+
|
43
|
+
- name: Setup Pages
|
44
|
+
id: pages
|
45
|
+
uses: actions/configure-pages@v5
|
46
|
+
|
47
|
+
- name: Upload artifact
|
48
|
+
uses: actions/upload-pages-artifact@v3
|
49
|
+
with:
|
50
|
+
path: docs/.vitepress/dist
|
51
|
+
|
52
|
+
deploy:
|
53
|
+
environment:
|
54
|
+
name: github-pages
|
55
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
56
|
+
runs-on: ubuntu-latest
|
57
|
+
needs: build
|
58
|
+
steps:
|
59
|
+
- name: Deploy to GitHub Pages
|
60
|
+
id: deployment
|
61
|
+
uses: actions/deploy-pages@v4
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agent-starter-pack
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.4.0
|
4
4
|
Summary: CLI tool to create GCP-based AI agent projects from templates
|
5
5
|
Author-email: Google LLC <agent-starter-pack@google.com>
|
6
6
|
License: Apache-2.0
|
@@ -25,7 +25,7 @@ Description-Content-Type: text/markdown
|
|
25
25
|
|
26
26
|
# 🚀 Agent Starter Pack
|
27
27
|
|
28
|
-
 [](https://youtu.be/jHt-ZVD660g) [](
|
28
|
+
 [](https://youtu.be/jHt-ZVD660g) [](https://googlecloudplatform.github.io/agent-starter-pack/) <a href="https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx">
|
29
29
|
<picture>
|
30
30
|
<source
|
31
31
|
media="(prefers-color-scheme: dark)"
|
@@ -46,7 +46,7 @@ It accelerates development by providing a holistic, production-ready solution, a
|
|
46
46
|
|
47
47
|
| ⚡️ Launch | 🧪 Experiment | ✅ Deploy | 🛠️ Customize |
|
48
48
|
|---|---|---|---|
|
49
|
-
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live
|
49
|
+
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live API). | [Vertex AI evaluation](https://cloud.google.com/vertex-ai/generative-ai/docs/models/evaluation-overview) and an interactive playground. | Production-ready infra with [monitoring, observability](https://googlecloudplatform.github.io/agent-starter-pack/guide/observability), and [CI/CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) on [Cloud Run](https://cloud.google.com/run) or [Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview). | Extend and customize templates according to your needs. |
|
50
50
|
|
51
51
|
---
|
52
52
|
|
@@ -66,7 +66,7 @@ agent-starter-pack create my-awesome-agent
|
|
66
66
|
```
|
67
67
|
|
68
68
|
**That's it!** You now have a fully functional agent project—complete with backend, frontend, and deployment infrastructure—ready for you to explore and customize.
|
69
|
-
For more installation options, see the [Installation Guide](
|
69
|
+
For more installation options, see the [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation). You can also [try it in Firebase Studio](https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx) with zero setup.
|
70
70
|
|
71
71
|
---
|
72
72
|
|
@@ -76,7 +76,7 @@ For more installation options, see the [Installation Guide](docs/installation.md
|
|
76
76
|
agent-starter-pack create my-agent -d agent_engine -a adk_base
|
77
77
|
```
|
78
78
|
|
79
|
-
*See the [full list of options](
|
79
|
+
*See the [full list of options](https://googlecloudplatform.github.io/agent-starter-pack/cli/create) for details.*
|
80
80
|
|
81
81
|
## 🤖 Agents
|
82
82
|
|
@@ -88,7 +88,7 @@ agent-starter-pack create my-agent -d agent_engine -a adk_base
|
|
88
88
|
| `crewai_coding_crew` | A multi-agent system implemented with CrewAI created to support coding activities |
|
89
89
|
| `live_api` | A real-time multimodal RAG agent powered by Gemini, supporting audio/video/text chat with vector DB-backed responses |
|
90
90
|
|
91
|
-
**More agents are on the way!** We are continuously expanding our [agent library](
|
91
|
+
**More agents are on the way!** We are continuously expanding our [agent library](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview). Have a specific agent type in mind? [Raise an issue as a feature request!](https://github.com/GoogleCloudPlatform/agent-starter-pack/issues/new?labels=enhancement)
|
92
92
|
|
93
93
|
**🔍 ADK Samples**
|
94
94
|
|
@@ -97,9 +97,8 @@ Looking to explore more ADK examples? Check out the [ADK Samples Repository](htt
|
|
97
97
|
#### Extra Features
|
98
98
|
|
99
99
|
The `agent-starter-pack` offers two key features to accelerate and simplify the development of your agent:
|
100
|
-
|
101
|
-
-
|
102
|
-
- **📥 [Data Pipeline for RAG with Terraform/CI-CD](docs/data-ingestion.md)** - Seamlessly integrate a data pipeline to process embeddings for RAG into your agent system. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview).
|
100
|
+
- **🔄 [CI/CD Automation (Experimental)](https://googlecloudplatform.github.io/agent-starter-pack/cli/setup_cicd)** - One command to set up a complete GitHub + Cloud Build pipeline for all environments
|
101
|
+
- **📥 [Data Pipeline for RAG with Terraform/CI-CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/data-ingestion)** - Seamlessly integrate a data pipeline to process embeddings for RAG into your agent system. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview).
|
103
102
|
|
104
103
|
|
105
104
|
## High-Level Architecture
|
@@ -118,18 +117,21 @@ This starter pack covers all aspects of Agent development, from prototyping and
|
|
118
117
|
|
119
118
|
|
120
119
|
## 📚 Documentation
|
121
|
-
See the [documentation](docs/) for more details:
|
122
120
|
|
123
|
-
|
124
|
-
|
125
|
-
- [
|
126
|
-
- [
|
127
|
-
- [
|
128
|
-
- [
|
129
|
-
- [
|
121
|
+
Visit our [documentation site](https://googlecloudplatform.github.io/agent-starter-pack/) for comprehensive guides and references!
|
122
|
+
|
123
|
+
- [Getting Started Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/getting-started) - First steps with agent-starter-pack
|
124
|
+
- [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation) - Setting up your environment
|
125
|
+
- [Deployment Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) - Taking your agent to production
|
126
|
+
- [Agent Templates Overview](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview) - Explore available agent patterns
|
127
|
+
- [CLI Reference](https://googlecloudplatform.github.io/agent-starter-pack/cli/) - Command-line tool documentation
|
128
|
+
|
130
129
|
|
131
130
|
### Video Walkthrough:
|
132
131
|
|
132
|
+
## Video Tutorials
|
133
|
+
|
134
|
+
- **April 2024**: A [6-minute introduction video](https://www.youtube.com/live/eZ-8UQ_t4YM?feature=shared&t=2791) Explaining the Agent Starter Pack and demonstrating its key features. Part of the Kaggle GenAI intensive course.
|
133
135
|
- **March 6, 2025**: A [120 Minute livestream video demo](https://www.youtube.com/watch?v=yIRIT_EtALs&t=235s) of the new `agent-starter-pack` were we build 3 Agents under 30 minutes!
|
134
136
|
- **Oct 29, 2024**: A [20-Minute Video Walkthrough](https://youtu.be/kwRG7cnqSu0) is available, showcasing the previous `agent-starter-pack`.
|
135
137
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# 🚀 Agent Starter Pack
|
2
2
|
|
3
|
-
 [](https://youtu.be/jHt-ZVD660g) [](
|
3
|
+
 [](https://youtu.be/jHt-ZVD660g) [](https://googlecloudplatform.github.io/agent-starter-pack/) <a href="https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx">
|
4
4
|
<picture>
|
5
5
|
<source
|
6
6
|
media="(prefers-color-scheme: dark)"
|
@@ -21,7 +21,7 @@ It accelerates development by providing a holistic, production-ready solution, a
|
|
21
21
|
|
22
22
|
| ⚡️ Launch | 🧪 Experiment | ✅ Deploy | 🛠️ Customize |
|
23
23
|
|---|---|---|---|
|
24
|
-
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live
|
24
|
+
| [Pre-built agent templates](./agents/) (ReAct, RAG, multi-agent, Live API). | [Vertex AI evaluation](https://cloud.google.com/vertex-ai/generative-ai/docs/models/evaluation-overview) and an interactive playground. | Production-ready infra with [monitoring, observability](https://googlecloudplatform.github.io/agent-starter-pack/guide/observability), and [CI/CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) on [Cloud Run](https://cloud.google.com/run) or [Agent Engine](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/overview). | Extend and customize templates according to your needs. |
|
25
25
|
|
26
26
|
---
|
27
27
|
|
@@ -41,7 +41,7 @@ agent-starter-pack create my-awesome-agent
|
|
41
41
|
```
|
42
42
|
|
43
43
|
**That's it!** You now have a fully functional agent project—complete with backend, frontend, and deployment infrastructure—ready for you to explore and customize.
|
44
|
-
For more installation options, see the [Installation Guide](
|
44
|
+
For more installation options, see the [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation). You can also [try it in Firebase Studio](https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx) with zero setup.
|
45
45
|
|
46
46
|
---
|
47
47
|
|
@@ -51,7 +51,7 @@ For more installation options, see the [Installation Guide](docs/installation.md
|
|
51
51
|
agent-starter-pack create my-agent -d agent_engine -a adk_base
|
52
52
|
```
|
53
53
|
|
54
|
-
*See the [full list of options](
|
54
|
+
*See the [full list of options](https://googlecloudplatform.github.io/agent-starter-pack/cli/create) for details.*
|
55
55
|
|
56
56
|
## 🤖 Agents
|
57
57
|
|
@@ -63,7 +63,7 @@ agent-starter-pack create my-agent -d agent_engine -a adk_base
|
|
63
63
|
| `crewai_coding_crew` | A multi-agent system implemented with CrewAI created to support coding activities |
|
64
64
|
| `live_api` | A real-time multimodal RAG agent powered by Gemini, supporting audio/video/text chat with vector DB-backed responses |
|
65
65
|
|
66
|
-
**More agents are on the way!** We are continuously expanding our [agent library](
|
66
|
+
**More agents are on the way!** We are continuously expanding our [agent library](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview). Have a specific agent type in mind? [Raise an issue as a feature request!](https://github.com/GoogleCloudPlatform/agent-starter-pack/issues/new?labels=enhancement)
|
67
67
|
|
68
68
|
**🔍 ADK Samples**
|
69
69
|
|
@@ -72,9 +72,8 @@ Looking to explore more ADK examples? Check out the [ADK Samples Repository](htt
|
|
72
72
|
#### Extra Features
|
73
73
|
|
74
74
|
The `agent-starter-pack` offers two key features to accelerate and simplify the development of your agent:
|
75
|
-
|
76
|
-
-
|
77
|
-
- **📥 [Data Pipeline for RAG with Terraform/CI-CD](docs/data-ingestion.md)** - Seamlessly integrate a data pipeline to process embeddings for RAG into your agent system. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview).
|
75
|
+
- **🔄 [CI/CD Automation (Experimental)](https://googlecloudplatform.github.io/agent-starter-pack/cli/setup_cicd)** - One command to set up a complete GitHub + Cloud Build pipeline for all environments
|
76
|
+
- **📥 [Data Pipeline for RAG with Terraform/CI-CD](https://googlecloudplatform.github.io/agent-starter-pack/guide/data-ingestion)** - Seamlessly integrate a data pipeline to process embeddings for RAG into your agent system. Supporting [Vertex AI Search](https://cloud.google.com/generative-ai-app-builder/docs/enterprise-search-introduction) and [Vector Search](https://cloud.google.com/vertex-ai/docs/vector-search/overview).
|
78
77
|
|
79
78
|
|
80
79
|
## High-Level Architecture
|
@@ -93,18 +92,21 @@ This starter pack covers all aspects of Agent development, from prototyping and
|
|
93
92
|
|
94
93
|
|
95
94
|
## 📚 Documentation
|
96
|
-
See the [documentation](docs/) for more details:
|
97
95
|
|
98
|
-
|
99
|
-
|
100
|
-
- [
|
101
|
-
- [
|
102
|
-
- [
|
103
|
-
- [
|
104
|
-
- [
|
96
|
+
Visit our [documentation site](https://googlecloudplatform.github.io/agent-starter-pack/) for comprehensive guides and references!
|
97
|
+
|
98
|
+
- [Getting Started Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/getting-started) - First steps with agent-starter-pack
|
99
|
+
- [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation) - Setting up your environment
|
100
|
+
- [Deployment Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/deployment) - Taking your agent to production
|
101
|
+
- [Agent Templates Overview](https://googlecloudplatform.github.io/agent-starter-pack/agents/overview) - Explore available agent patterns
|
102
|
+
- [CLI Reference](https://googlecloudplatform.github.io/agent-starter-pack/cli/) - Command-line tool documentation
|
103
|
+
|
105
104
|
|
106
105
|
### Video Walkthrough:
|
107
106
|
|
107
|
+
## Video Tutorials
|
108
|
+
|
109
|
+
- **April 2024**: A [6-minute introduction video](https://www.youtube.com/live/eZ-8UQ_t4YM?feature=shared&t=2791) Explaining the Agent Starter Pack and demonstrating its key features. Part of the Kaggle GenAI intensive course.
|
108
110
|
- **March 6, 2025**: A [120 Minute livestream video demo](https://www.youtube.com/watch?v=yIRIT_EtALs&t=235s) of the new `agent-starter-pack` were we build 3 Agents under 30 minutes!
|
109
111
|
- **Oct 29, 2024**: A [20-Minute Video Walkthrough](https://youtu.be/kwRG7cnqSu0) is available, showcasing the previous `agent-starter-pack`.
|
110
112
|
|
@@ -21,7 +21,7 @@ from google.adk.agents import Agent
|
|
21
21
|
|
22
22
|
_, project_id = google.auth.default()
|
23
23
|
os.environ.setdefault("GOOGLE_CLOUD_PROJECT", project_id)
|
24
|
-
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", "
|
24
|
+
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", "global")
|
25
25
|
os.environ.setdefault("GOOGLE_GENAI_USE_VERTEXAI", "True")
|
26
26
|
|
27
27
|
|
{agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/adk_base/template/.templateconfig.yaml
RENAMED
@@ -13,9 +13,10 @@
|
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
15
|
description: "A base ReAct agent built with Google's Agent Development Kit (ADK)"
|
16
|
+
example_question: "What's the weather in San Francisco?"
|
16
17
|
settings:
|
17
18
|
requires_data_ingestion: false
|
18
19
|
deployment_targets: ["agent_engine", "cloud_run"]
|
19
|
-
extra_dependencies: ["google-adk~=0.
|
20
|
+
extra_dependencies: ["google-adk~=0.5.0"]
|
20
21
|
tags: ["adk"]
|
21
22
|
frontend_type: "None"
|
@@ -24,12 +24,13 @@ from app.retrievers import get_compressor, get_retriever
|
|
24
24
|
from app.templates import format_docs
|
25
25
|
|
26
26
|
EMBEDDING_MODEL = "text-embedding-005"
|
27
|
+
LLM_LOCATION = "global"
|
27
28
|
LOCATION = "us-central1"
|
28
29
|
LLM = "gemini-2.0-flash-001"
|
29
30
|
|
30
31
|
credentials, project_id = google.auth.default()
|
31
32
|
os.environ.setdefault("GOOGLE_CLOUD_PROJECT", project_id)
|
32
|
-
os.environ.setdefault("GOOGLE_CLOUD_LOCATION",
|
33
|
+
os.environ.setdefault("GOOGLE_CLOUD_LOCATION", LLM_LOCATION)
|
33
34
|
os.environ.setdefault("GOOGLE_GENAI_USE_VERTEXAI", "True")
|
34
35
|
|
35
36
|
vertexai.init(project=project_id, location=LOCATION)
|
@@ -13,11 +13,12 @@
|
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
15
|
description: "ADK RAG agent for document retrieval and Q&A. Includes a data pipeline for ingesting and indexing documents into Vertex AI Search or Vector Search."
|
16
|
+
example_question: "How to save a pandas dataframe to CSV?"
|
16
17
|
settings:
|
17
18
|
requires_data_ingestion: true
|
18
19
|
deployment_targets: ["agent_engine", "cloud_run"]
|
19
20
|
extra_dependencies: [
|
20
|
-
"google-adk~=0.
|
21
|
+
"google-adk~=0.5.0",
|
21
22
|
"langchain-google-vertexai~=2.0.7",
|
22
23
|
"langchain~=0.3.24",
|
23
24
|
"langchain-core~=0.3.55",
|
@@ -17,10 +17,11 @@ settings:
|
|
17
17
|
requires_data_ingestion: false
|
18
18
|
deployment_targets: ["agent_engine", "cloud_run"]
|
19
19
|
extra_dependencies: [
|
20
|
-
"langchain-google-vertexai~=2.0.
|
20
|
+
"langchain-google-vertexai~=2.0.22",
|
21
21
|
"langchain~=0.3.14",
|
22
22
|
"langchain-community~=0.3.17",
|
23
23
|
"langchain-openai~=0.3.5",
|
24
24
|
"langgraph~=0.2.63",
|
25
|
-
"crewai~=0.
|
25
|
+
"crewai~=0.119.0"
|
26
26
|
]
|
27
|
+
example_question: "How can I implement a function to sort a list in Python?"
|
@@ -20,8 +20,9 @@ settings:
|
|
20
20
|
"langchain-google-vertexai~=2.0.7",
|
21
21
|
"langchain~=0.3.14",
|
22
22
|
"langgraph~=0.2.63",
|
23
|
-
"langchain-google-vertexai~=2.0.
|
23
|
+
"langchain-google-vertexai~=2.0.22",
|
24
24
|
"langchain~=0.3.14",
|
25
25
|
"langchain-community~=0.3.17",
|
26
26
|
"langchain-openai~=0.3.5",
|
27
27
|
]
|
28
|
+
example_question: "What's the weather in San Francisco?"
|
@@ -1,15 +1,15 @@
|
|
1
1
|
# Multimodal Live Agent
|
2
2
|
|
3
|
-
This pattern showcases a real-time conversational
|
3
|
+
This pattern showcases a real-time conversational agent powered by Google Gemini. The agent handles audio, video, and text interactions while leveraging tool calling capabilities for enhanced responses.
|
4
4
|
|
5
5
|

|
6
6
|
|
7
7
|
**Key components:**
|
8
8
|
|
9
|
-
- **Python Backend** (in `app/` folder): A production-ready server built with [FastAPI](https://fastapi.tiangolo.com/) and [google-genai](https://googleapis.github.io/python-genai/) that features:
|
9
|
+
- **Python Backend** (in `app/` folder): A production-ready server built with [FastAPI](https://fastapi.tiangolo.com/) and [google-genai](https://googleapis.github.io/python-python-genai/) that features:
|
10
10
|
|
11
11
|
- **Real-time bidirectional communication** via WebSockets between the frontend and Gemini model
|
12
|
-
- **Integrated tool calling** with
|
12
|
+
- **Integrated tool calling** with a weather information tool for demonstrating external data retrieval
|
13
13
|
- **Production-grade reliability** with retry logic and automatic reconnection capabilities
|
14
14
|
- **Deployment flexibility** supporting both AI Studio and Vertex AI endpoints
|
15
15
|
- **Feedback logging endpoint** for collecting user interactions
|
@@ -18,7 +18,7 @@ This pattern showcases a real-time conversational RAG agent powered by Google Ge
|
|
18
18
|
|
19
19
|

|
20
20
|
|
21
|
-
Once both the backend and frontend are running, click the play button in the frontend UI to establish a connection with the backend. You can now interact with the Multimodal Live Agent! You can try asking questions such as "
|
21
|
+
Once both the backend and frontend are running, click the play button in the frontend UI to establish a connection with the backend. You can now interact with the Multimodal Live Agent! You can try asking questions such as "What's the weather like in San Francisco?" to see the agent use its weather information tool.
|
22
22
|
|
23
23
|
## Additional Resources for Multimodal Live API
|
24
24
|
|
@@ -14,26 +14,16 @@
|
|
14
14
|
|
15
15
|
import os
|
16
16
|
|
17
|
-
import google
|
17
|
+
import google.auth
|
18
18
|
import vertexai
|
19
19
|
from google import genai
|
20
|
-
from google.genai
|
21
|
-
Content,
|
22
|
-
LiveConnectConfig,
|
23
|
-
)
|
24
|
-
from langchain_google_vertexai import VertexAIEmbeddings
|
25
|
-
|
26
|
-
from app.templates import FORMAT_DOCS, SYSTEM_INSTRUCTION
|
27
|
-
from app.vector_store import get_vector_store
|
20
|
+
from google.genai import types
|
28
21
|
|
29
22
|
# Constants
|
30
23
|
VERTEXAI = os.getenv("VERTEXAI", "true").lower() == "true"
|
31
24
|
LOCATION = "us-central1"
|
32
25
|
EMBEDDING_MODEL = "text-embedding-004"
|
33
26
|
MODEL_ID = "gemini-2.0-flash-exp"
|
34
|
-
URLS = [
|
35
|
-
"https://cloud.google.com/architecture/deploy-operate-generative-ai-applications"
|
36
|
-
]
|
37
27
|
|
38
28
|
# Initialize Google Cloud clients
|
39
29
|
credentials, project_id = google.auth.default()
|
@@ -46,33 +36,34 @@ else:
|
|
46
36
|
# API key should be set using GOOGLE_API_KEY environment variable
|
47
37
|
genai_client = genai.Client(http_options={"api_version": "v1alpha"})
|
48
38
|
|
49
|
-
# Initialize vector store and retriever
|
50
|
-
embedding = VertexAIEmbeddings(model_name=EMBEDDING_MODEL)
|
51
|
-
vector_store = get_vector_store(embedding=embedding, urls=URLS)
|
52
|
-
retriever = vector_store.as_retriever()
|
53
39
|
|
54
|
-
|
55
|
-
|
56
|
-
"""
|
57
|
-
Retrieves pre-formatted documents about MLOps (Machine Learning Operations),
|
58
|
-
Gen AI lifecycle, and production deployment best practices.
|
40
|
+
def get_weather(query: str) -> dict:
|
41
|
+
"""Simulates a web search. Use it get information on weather.
|
59
42
|
|
60
43
|
Args:
|
61
|
-
query:
|
44
|
+
query: A string containing the location to get weather information for.
|
62
45
|
|
63
46
|
Returns:
|
64
|
-
A
|
47
|
+
A string with the simulated weather information for the queried location.
|
65
48
|
"""
|
66
|
-
|
67
|
-
|
68
|
-
return {"output":
|
49
|
+
if "sf" in query.lower() or "san francisco" in query.lower():
|
50
|
+
return {"output": "It's 60 degrees and foggy."}
|
51
|
+
return {"output": "It's 90 degrees and sunny."}
|
69
52
|
|
70
53
|
|
71
54
|
# Configure tools available to the agent and live connection
|
72
|
-
tool_functions = {"
|
55
|
+
tool_functions = {"get_weather": get_weather}
|
73
56
|
|
74
|
-
live_connect_config = LiveConnectConfig(
|
75
|
-
response_modalities=[
|
76
|
-
tools=
|
77
|
-
|
57
|
+
live_connect_config = types.LiveConnectConfig(
|
58
|
+
response_modalities=[types.Modality.AUDIO],
|
59
|
+
tools=list(tool_functions.values()),
|
60
|
+
# Change to desired language code (e.g., "es-ES" for Spanish, "fr-FR" for French)
|
61
|
+
speech_config=types.SpeechConfig(language_code="en-US"),
|
62
|
+
system_instruction=types.Content(
|
63
|
+
parts=[
|
64
|
+
types.Part(
|
65
|
+
text="""You are a helpful AI assistant designed to provide accurate and useful information."""
|
66
|
+
)
|
67
|
+
]
|
68
|
+
),
|
78
69
|
)
|
@@ -89,9 +89,11 @@ class GeminiSession:
|
|
89
89
|
logging.error(f"Error receiving from client {self.user_id}: {e!s}")
|
90
90
|
break
|
91
91
|
|
92
|
-
def _get_func(self, action_label: str) -> Callable | None:
|
92
|
+
def _get_func(self, action_label: str | None) -> Callable | None:
|
93
93
|
"""Get the tool function for a given action label."""
|
94
|
-
|
94
|
+
if action_label is None or action_label == "":
|
95
|
+
return None
|
96
|
+
return self.tool_functions.get(action_label)
|
95
97
|
|
96
98
|
async def _handle_tool_call(
|
97
99
|
self, session: Any, tool_call: LiveServerToolCall
|
@@ -102,9 +104,20 @@ class GeminiSession:
|
|
102
104
|
session: The Gemini session
|
103
105
|
tool_call: Tool call request from Gemini
|
104
106
|
"""
|
107
|
+
# Handle case where function_calls might be None
|
108
|
+
if tool_call.function_calls is None:
|
109
|
+
logging.debug("No function calls in tool_call")
|
110
|
+
return
|
111
|
+
|
105
112
|
for fc in tool_call.function_calls:
|
106
113
|
logging.debug(f"Calling tool function: {fc.name} with args: {fc.args}")
|
107
|
-
|
114
|
+
func = self._get_func(fc.name)
|
115
|
+
if func is None:
|
116
|
+
logging.error(f"Function {fc.name} not found")
|
117
|
+
continue
|
118
|
+
args = fc.args if fc.args is not None else {}
|
119
|
+
response = func(**args)
|
120
|
+
|
108
121
|
tool_response = types.LiveClientToolResponse(
|
109
122
|
function_responses=[
|
110
123
|
types.FunctionResponse(name=fc.name, id=fc.id, response=response)
|
{agent_starter_pack-0.3.9 → agent_starter_pack-0.4.0}/agents/live_api/template/.templateconfig.yaml
RENAMED
@@ -19,11 +19,6 @@ settings:
|
|
19
19
|
deployment_targets: ["cloud_run"]
|
20
20
|
extra_dependencies: [
|
21
21
|
"backoff~=2.2.1",
|
22
|
-
"
|
23
|
-
"google-genai~=1.8.0",
|
24
|
-
"jinja2~=3.1.4",
|
25
|
-
"langchain~=0.3.13",
|
26
|
-
"langchain-community~=0.3.13",
|
27
|
-
"langchain-google-vertexai~=2.0.9",
|
28
|
-
"scikit-learn>=1.0.0,<2.0.0",
|
22
|
+
"google-genai~=1.14.0",
|
29
23
|
]
|
24
|
+
example_question: "What's the weather in San Francisco?"
|
@@ -0,0 +1,71 @@
|
|
1
|
+
import { defineConfig } from 'vitepress'
|
2
|
+
|
3
|
+
export default defineConfig({
|
4
|
+
title: 'Agent Starter Pack',
|
5
|
+
description: 'Build Production Agents faster',
|
6
|
+
base: '/agent-starter-pack/',
|
7
|
+
head: [
|
8
|
+
['link', { rel: 'preconnect', href: 'https://fonts.googleapis.com' }],
|
9
|
+
['link', { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' }],
|
10
|
+
['link', { href: 'https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap', rel: 'stylesheet' }],
|
11
|
+
['style', {}, `
|
12
|
+
:root {
|
13
|
+
--vp-font-family-base: 'Roboto', sans-serif;
|
14
|
+
--vp-font-family-mono: 'Roboto Mono', monospace;
|
15
|
+
--vp-c-text-1: 0.9rem;
|
16
|
+
--vp-font-size-base: 0.9rem;
|
17
|
+
}
|
18
|
+
`]
|
19
|
+
],
|
20
|
+
|
21
|
+
themeConfig: {
|
22
|
+
nav: [
|
23
|
+
{ text: 'Home', link: '/' },
|
24
|
+
{ text: 'Guide', link: '/guide/getting-started' },
|
25
|
+
{ text: 'Agents', link: '/agents/overview' },
|
26
|
+
{ text: 'CLI', link: '/cli/index.md' }
|
27
|
+
],
|
28
|
+
sidebar: [
|
29
|
+
{
|
30
|
+
text: 'Guide',
|
31
|
+
items: [
|
32
|
+
{ text: 'Getting Started', link: '/guide/getting-started' },
|
33
|
+
{ text: 'Why Starter Pack?', link: '/guide/why_starter_pack' },
|
34
|
+
{ text: 'Video Tutorials', link: '/guide/video-tutorials' },
|
35
|
+
{ text: 'Installation', link: '/guide/installation' },
|
36
|
+
{ text: 'Deployment', link: '/guide/deployment' },
|
37
|
+
{ text: 'Data Ingestion', link: '/guide/data-ingestion' },
|
38
|
+
{ text: 'Observability', link: '/guide/observability' },
|
39
|
+
{ text: 'Troubleshooting', link: '/guide/troubleshooting' }
|
40
|
+
]
|
41
|
+
},
|
42
|
+
{
|
43
|
+
text: 'Agents',
|
44
|
+
items: [
|
45
|
+
{ text: 'Overview', link: '/agents/overview' },
|
46
|
+
|
47
|
+
]
|
48
|
+
},
|
49
|
+
{
|
50
|
+
text: 'CLI Reference',
|
51
|
+
items: [
|
52
|
+
{ text: 'create', link: '/cli/create' },
|
53
|
+
{ text: 'setup-cicd', link: '/cli/setup_cicd' }
|
54
|
+
]
|
55
|
+
}
|
56
|
+
],
|
57
|
+
socialLinks: [
|
58
|
+
{
|
59
|
+
icon: 'github',
|
60
|
+
link: 'https://github.com/GoogleCloudPlatform/agent-starter-pack'
|
61
|
+
},
|
62
|
+
],
|
63
|
+
search: {
|
64
|
+
provider: 'local'
|
65
|
+
},
|
66
|
+
|
67
|
+
footer: {
|
68
|
+
message: 'Released under the Apache 2.0 License.'
|
69
|
+
}
|
70
|
+
}
|
71
|
+
})
|