agent-starter-pack 0.6.4__tar.gz → 0.7.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.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/cd/test_e2e.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/ci/lint.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/ci/lint_templated_agents.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/ci/test.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/ci/test_templated_agents.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/PKG-INFO +15 -12
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/README.md +14 -11
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/app/agent.py +62 -8
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/.vitepress/config.js +1 -0
- agent_starter_pack-0.7.0/docs/guide/deploy-ui.md +91 -0
- agent_starter_pack-0.7.0/docs/guide/development-guide.md +139 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/getting-started.md +27 -24
- agent_starter_pack-0.7.0/llm.txt +290 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/pyproject.toml +2 -2
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/.gitignore +2 -1
- agent_starter_pack-0.7.0/src/base_template/GEMINI.md +5 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/Makefile +20 -5
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/cd/deploy-to-prod.yaml +3 -3
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/cd/staging.yaml +4 -4
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/ci/pr_checks.yaml +1 -1
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/pyproject.toml +2 -2
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/template.py +22 -9
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/uv.lock +97 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/package-lock.json +276 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/package.json +1 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ChatMessagesView.tsx +5 -4
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/vite.config.ts +4 -0
- agent_starter_pack-0.7.0/src/resources/docs/adk-cheatsheet.md +1224 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-adk_base-agent_engine.lock +14 -13
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-adk_base-cloud_run.lock +14 -13
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-adk_gemini_fullstack-agent_engine.lock +14 -13
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-adk_gemini_fullstack-cloud_run.lock +14 -13
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-agentic_rag-agent_engine.lock +78 -83
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-agentic_rag-cloud_run.lock +110 -119
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +130 -135
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +163 -172
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-langgraph_base_react-agent_engine.lock +87 -92
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-langgraph_base_react-cloud_run.lock +119 -128
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/locks/uv-live_api-cloud_run.lock +98 -107
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/uv.lock +1 -1
- agent_starter_pack-0.6.4/docs/guide/development-guide.md +0 -96
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/ci/build_use_wheel.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/terraform/apis.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/terraform/build_triggers.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/terraform/service_account.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/terraform/storage.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.cloudbuild/terraform/variables.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.github/workflows/docs.yml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/.gitignore +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/CODE_OF_CONDUCT.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/CONTRIBUTING.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/LICENSE +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/Makefile +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/app/agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_base/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/app/config.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/app/agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/app/retrievers.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/app/templates.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/notebooks/adk_app_testing.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/agentic_rag/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/app/agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/app/crew/config/agents.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/app/crew/config/tasks.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/app/crew/crew.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/notebooks/evaluating_crewai_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/crewai_coding_crew/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/langgraph_base_react/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/langgraph_base_react/app/agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/langgraph_base_react/notebooks/evaluating_langgraph_agent.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/langgraph_base_react/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/langgraph_base_react/tests/integration/test_agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/app/agent.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/app/server.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/template/.templateconfig.yaml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/tests/integration/test_server_e2e.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/live_api/tests/unit/test_server.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/agents/overview.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/cli/create.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/cli/index.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/cli/setup_cicd.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/data-ingestion.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/deployment.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/installation.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/observability.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/troubleshooting.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/video-tutorials.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/guide/why_starter_pack.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/adk_gemini_fullstack.gif +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/adk_gemini_fullstack_architecture.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/adk_logo.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/agent_starter_pack_screenshot.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/ags_high_level_architecture.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/icon.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/logo.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/prototype_to_prod.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/why_sp_edited.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/images/why_starter_pack.png +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/index.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/package-lock.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/docs/package.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/app/__init__.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/app/utils/gcs.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/app/utils/tracing.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/app/utils/typing.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/apis.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/build_triggers.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/apis.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/iam.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/log_sinks.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/providers.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/storage.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/variables.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/dev/vars/env.tfvars +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/iam.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/locals.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/log_sinks.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/providers.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/service_accounts.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/storage.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/variables.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/deployment/terraform/vars/env.tfvars +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/base_template/tests/unit/test_dummy.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/commands/create.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/commands/setup_cicd.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/main.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/__init__.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/cicd.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/datastores.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/gcp.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/logging.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/cli/utils/version.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/data_ingestion_pipeline/components/ingest_data.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/data_ingestion_pipeline/components/process_data.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/data_ingestion_pipeline/pipeline.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/data_ingestion_pipeline/submit_pipeline.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/data_ingestion/pyproject.toml +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/app/agent_engine_app.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/deployment_metadata.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/notebooks/intro_agent_engine.ipynb +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/tests/load_test/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/agent_engine/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/Dockerfile +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/app/server.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/tests/integration/test_server_e2e.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/tests/load_test/.results/.placeholder +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/tests/load_test/README.md +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/tests/load_test/load_test.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/deployment_targets/cloud_run/uv.lock +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/components.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/eslint.config.js +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/index.html +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/App.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ActivityTimeline.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/InputForm.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/WelcomeScreen.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/badge.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/button.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/card.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/input.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/scroll-area.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/select.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/tabs.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/components/ui/textarea.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/global.css +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/main.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/utils.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/src/vite-env.d.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/tsconfig.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/adk_gemini_fullstack/frontend/tsconfig.node.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/package-lock.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/package.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/public/favicon.ico +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/public/index.html +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/public/robots.txt +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/App.scss +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/App.test.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/App.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/audio-pulse/AudioPulse.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/audio-pulse/audio-pulse.scss +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/control-tray/ControlTray.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/control-tray/control-tray.scss +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/logger/Logger.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/logger/logger.scss +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/logger/mock-logs.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/side-panel/SidePanel.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/components/side-panel/side-panel.scss +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/contexts/LiveAPIContext.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/hooks/use-live-api.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/hooks/use-media-stream-mux.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/hooks/use-screen-capture.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/hooks/use-webcam.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/index.css +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/index.tsx +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/multimodal-live-types.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/react-app-env.d.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/reportWebVitals.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/setupTests.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/audio-recorder.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/audio-streamer.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/audioworklet-registry.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/multimodal-live-client.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/store-logger.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/utils.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/worklets/audio-processing.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/src/utils/worklets/vol-meter.ts +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/live_api_react/frontend/tsconfig.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/side_bar.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/streamlit_app.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/style/app_markdown.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/chat_utils.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/local_chat_history.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/message_editing.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/multimodal_utils.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/stream_handler.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/frontends/streamlit/frontend/utils/title_summary.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/containers/data_processing/Dockerfile +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/containers/e2e-tests/Dockerfile +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/idx/.idx/dev.nix +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/idx/idx-template.json +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/idx/idx-template.nix +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/setup_cicd/cicd_variables.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/setup_cicd/github.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/resources/setup_cicd/providers.tf +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/utils/generate_locks.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/utils/lock_utils.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/src/utils/watch_and_rebuild.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/__init__.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/cicd/example.env +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/cicd/test_e2e_deployment.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/cli/commands/test_create.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/cli/commands/test_setup_cicd.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/cli/utils/test_cicd.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/integration/test_template_linting.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/integration/test_templated_patterns.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_side_bar.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_streamlit_app.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_utils/test_chat_utils.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_utils/test_local_chat_history.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_utils/test_message_editing.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_utils/test_multimodal_utils.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/test_frontend/test_utils/test_stream_handler.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/utils/__init__.py +0 -0
- {agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/tests/utils/get_agents.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: agent-starter-pack
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.7.0
|
4
4
|
Summary: CLI to bootstrap production-ready Google Cloud GenAI agent projects from templates.
|
5
5
|
Author-email: Google LLC <agent-starter-pack@google.com>
|
6
6
|
License: Apache-2.0
|
@@ -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 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. |
|
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. 🆕 Now integrating with [Gemini CLI](https://github.com/google-gemini/gemini-cli) |
|
50
50
|
|
51
51
|
---
|
52
52
|
|
@@ -59,24 +59,27 @@ Ready to build your AI agent? Simply run this command:
|
|
59
59
|
python -m venv .venv && source .venv/bin/activate
|
60
60
|
|
61
61
|
# Install the agent starter pack
|
62
|
-
pip install agent-starter-pack
|
62
|
+
pip install --upgrade agent-starter-pack
|
63
63
|
|
64
64
|
# Create a new agent project
|
65
65
|
agent-starter-pack create my-awesome-agent
|
66
66
|
```
|
67
67
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
---
|
72
|
-
|
73
|
-
🆕 The starter pack offers full support for Agent Engine, a new fully managed solution to deploy agents. Simply run this command to get started:
|
68
|
+
<details>
|
69
|
+
<summary> ✨ Alternative: Using uv</summary>
|
74
70
|
|
71
|
+
If you have [`uv`](https://github.com/astral-sh/uv) installed, you can create and set up your project with a single command:
|
75
72
|
```bash
|
76
|
-
agent-starter-pack create my-agent
|
73
|
+
uvx agent-starter-pack create my-fullstack-agent
|
77
74
|
```
|
75
|
+
This command handles creating the project without needing to pre-install the package into a virtual environment.
|
76
|
+
</details>
|
78
77
|
|
79
|
-
|
78
|
+
**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.
|
79
|
+
|
80
|
+
See [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation) for more options, or try with zero setup in [Firebase Studio](https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx) or [Cloud Shell](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Feliasecchig%2Fasp-open-in-cloud-shell&cloudshell_print=open-in-cs).
|
81
|
+
|
82
|
+
---
|
80
83
|
|
81
84
|
## 🤖 Agents
|
82
85
|
|
@@ -100,7 +103,7 @@ Looking to explore more ADK examples? Check out the [ADK Samples Repository](htt
|
|
100
103
|
The `agent-starter-pack` offers two key features to accelerate and simplify the development of your agent:
|
101
104
|
- **🔄 [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
|
102
105
|
- **📥 [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
|
-
|
106
|
+
* **🤖 Gemini CLI Integration** - Use the [Gemini CLI](https://github.com/google-gemini/gemini-cli) and the included `GEMINI.md` context file to ask questions about your template, agent architecture, and the path to production. Get instant guidance and code examples directly in your terminal.
|
104
107
|
|
105
108
|
## High-Level Architecture
|
106
109
|
|
@@ -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 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. |
|
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. 🆕 Now integrating with [Gemini CLI](https://github.com/google-gemini/gemini-cli) |
|
25
25
|
|
26
26
|
---
|
27
27
|
|
@@ -34,24 +34,27 @@ Ready to build your AI agent? Simply run this command:
|
|
34
34
|
python -m venv .venv && source .venv/bin/activate
|
35
35
|
|
36
36
|
# Install the agent starter pack
|
37
|
-
pip install agent-starter-pack
|
37
|
+
pip install --upgrade agent-starter-pack
|
38
38
|
|
39
39
|
# Create a new agent project
|
40
40
|
agent-starter-pack create my-awesome-agent
|
41
41
|
```
|
42
42
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
---
|
47
|
-
|
48
|
-
🆕 The starter pack offers full support for Agent Engine, a new fully managed solution to deploy agents. Simply run this command to get started:
|
43
|
+
<details>
|
44
|
+
<summary> ✨ Alternative: Using uv</summary>
|
49
45
|
|
46
|
+
If you have [`uv`](https://github.com/astral-sh/uv) installed, you can create and set up your project with a single command:
|
50
47
|
```bash
|
51
|
-
agent-starter-pack create my-agent
|
48
|
+
uvx agent-starter-pack create my-fullstack-agent
|
52
49
|
```
|
50
|
+
This command handles creating the project without needing to pre-install the package into a virtual environment.
|
51
|
+
</details>
|
53
52
|
|
54
|
-
|
53
|
+
**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.
|
54
|
+
|
55
|
+
See [Installation Guide](https://googlecloudplatform.github.io/agent-starter-pack/guide/installation) for more options, or try with zero setup in [Firebase Studio](https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fsrc%2Fresources%2Fidx) or [Cloud Shell](https://shell.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2Feliasecchig%2Fasp-open-in-cloud-shell&cloudshell_print=open-in-cs).
|
56
|
+
|
57
|
+
---
|
55
58
|
|
56
59
|
## 🤖 Agents
|
57
60
|
|
@@ -75,7 +78,7 @@ Looking to explore more ADK examples? Check out the [ADK Samples Repository](htt
|
|
75
78
|
The `agent-starter-pack` offers two key features to accelerate and simplify the development of your agent:
|
76
79
|
- **🔄 [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
|
77
80
|
- **📥 [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
|
-
|
81
|
+
* **🤖 Gemini CLI Integration** - Use the [Gemini CLI](https://github.com/google-gemini/gemini-cli) and the included `GEMINI.md` context file to ask questions about your template, agent architecture, and the path to production. Get instant guidance and code examples directly in your terminal.
|
79
82
|
|
80
83
|
## High-Level Architecture
|
81
84
|
|
{agent_starter_pack-0.6.4 → agent_starter_pack-0.7.0}/agents/adk_gemini_fullstack/app/agent.py
RENAMED
@@ -182,12 +182,33 @@ class EscalationChecker(BaseAgent):
|
|
182
182
|
plan_generator = LlmAgent(
|
183
183
|
model=config.worker_model,
|
184
184
|
name="plan_generator",
|
185
|
-
description="Generates
|
185
|
+
description="Generates or refine the existing 5 line action-oriented research plan, using minimal search only for topic clarification.",
|
186
186
|
instruction=f"""
|
187
|
-
You are a research strategist. Your job is to create a high-level RESEARCH PLAN, not a summary.
|
188
|
-
|
189
|
-
|
187
|
+
You are a research strategist. Your job is to create a high-level RESEARCH PLAN, not a summary. If there is already a RESEARCH PLAN in the session state,
|
188
|
+
improve upon it based on the user feedback.
|
189
|
+
|
190
|
+
RESEARCH PLAN(SO FAR):
|
191
|
+
{{ research_plan? }}
|
192
|
+
|
193
|
+
**GENERAL INSTRUCTION: CLASSIFY TASK TYPES**
|
194
|
+
Your plan must clearly classify each goal for downstream execution. Each bullet point should start with a task type prefix:
|
195
|
+
- **`[RESEARCH]`**: For goals that primarily involve information gathering, investigation, analysis, or data collection (these require search tool usage by a researcher).
|
196
|
+
- **`[DELIVERABLE]`**: For goals that involve synthesizing collected information, creating structured outputs (e.g., tables, charts, summaries, reports), or compiling final output artifacts (these are executed AFTER research tasks, often without further search).
|
197
|
+
|
198
|
+
**INITIAL RULE: Your initial output MUST start with a bulleted list of 5 action-oriented research goals or key questions, followed by any *inherently implied* deliverables.**
|
199
|
+
- All initial 5 goals will be classified as `[RESEARCH]` tasks.
|
200
|
+
- A good goal for `[RESEARCH]` starts with a verb like "Analyze," "Identify," "Investigate."
|
190
201
|
- A bad output is a statement of fact like "The event was in April 2024."
|
202
|
+
- **Proactive Implied Deliverables (Initial):** If any of your initial 5 `[RESEARCH]` goals inherently imply a standard output or deliverable (e.g., a comparative analysis suggesting a comparison table, or a comprehensive review suggesting a summary document), you MUST add these as additional, distinct goals immediately after the initial 5. Phrase these as *synthesis or output creation actions* (e.g., "Create a summary," "Develop a comparison," "Compile a report") and prefix them with `[DELIVERABLE][IMPLIED]`.
|
203
|
+
|
204
|
+
**REFINEMENT RULE**:
|
205
|
+
- **Integrate Feedback & Mark Changes:** When incorporating user feedback, make targeted modifications to existing bullet points. Add `[MODIFIED]` to the existing task type and status prefix (e.g., `[RESEARCH][MODIFIED]`). If the feedback introduces new goals:
|
206
|
+
- If it's an information gathering task, prefix it with `[RESEARCH][NEW]`.
|
207
|
+
- If it's a synthesis or output creation task, prefix it with `[DELIVERABLE][NEW]`.
|
208
|
+
- **Proactive Implied Deliverables (Refinement):** Beyond explicit user feedback, if the nature of an existing `[RESEARCH]` goal (e.g., requiring a structured comparison, deep dive analysis, or broad synthesis) or a `[DELIVERABLE]` goal inherently implies an additional, standard output or synthesis step (e.g., a detailed report following a summary, or a visual representation of complex data), proactively add this as a new goal. Phrase these as *synthesis or output creation actions* and prefix them with `[DELIVERABLE][IMPLIED]`.
|
209
|
+
- **Maintain Order:** Strictly maintain the original sequential order of existing bullet points. New bullets, whether `[NEW]` or `[IMPLIED]`, should generally be appended to the list, unless the user explicitly instructs a specific insertion point.
|
210
|
+
- **Flexible Length:** The refined plan is no longer constrained by the initial 5-bullet limit and may comprise more goals as needed to fully address the feedback and implied deliverables.
|
211
|
+
|
191
212
|
**TOOL USE IS STRICTLY LIMITED:**
|
192
213
|
Your goal is to create a generic, high-quality plan *without searching*.
|
193
214
|
Only use `google_search` if a topic is ambiguous or time-sensitive and you absolutely cannot create a plan without a key piece of identifying information.
|
@@ -204,6 +225,7 @@ section_planner = LlmAgent(
|
|
204
225
|
description="Breaks down the research plan into a structured markdown outline of report sections.",
|
205
226
|
instruction="""
|
206
227
|
You are an expert report architect. Using the research topic and the plan from the 'research_plan' state key, design a logical structure for the final report.
|
228
|
+
Note: Ignore all the tag nanes ([MODIFIED], [NEW], [RESEARCH], [DELIVERABLE]) in the research plan.
|
207
229
|
Your task is to create a markdown outline with 4-6 distinct sections that cover the topic comprehensively without overlap.
|
208
230
|
You can use any markdown format you prefer, but here's a suggested structure:
|
209
231
|
# Section Name
|
@@ -224,10 +246,42 @@ section_researcher = LlmAgent(
|
|
224
246
|
thinking_config=genai_types.ThinkingConfig(include_thoughts=True)
|
225
247
|
),
|
226
248
|
instruction="""
|
227
|
-
You are a diligent and
|
228
|
-
|
229
|
-
|
230
|
-
|
249
|
+
You are a highly capable and diligent research and synthesis agent. Your comprehensive task is to execute a provided research plan with **absolute fidelity**, first by gathering necessary information, and then by synthesizing that information into specified outputs.
|
250
|
+
|
251
|
+
You will be provided with a sequential list of research plan goals, stored in the `research_plan` state key. Each goal will be clearly prefixed with its primary task type: `[RESEARCH]` or `[DELIVERABLE]`.
|
252
|
+
|
253
|
+
Your execution process must strictly adhere to these two distinct and sequential phases:
|
254
|
+
|
255
|
+
---
|
256
|
+
|
257
|
+
**Phase 1: Information Gathering (`[RESEARCH]` Tasks)**
|
258
|
+
|
259
|
+
* **Execution Directive:** You **MUST** systematically process every goal prefixed with `[RESEARCH]` before proceeding to Phase 2.
|
260
|
+
* For each `[RESEARCH]` goal:
|
261
|
+
* **Query Generation:** Formulate a comprehensive set of 4-5 targeted search queries. These queries must be expertly designed to broadly cover the specific intent of the `[RESEARCH]` goal from multiple angles.
|
262
|
+
* **Execution:** Utilize the `google_search` tool to execute **all** generated queries for the current `[RESEARCH]` goal.
|
263
|
+
* **Summarization:** Synthesize the search results into a detailed, coherent summary that directly addresses the objective of the `[RESEARCH]` goal.
|
264
|
+
* **Internal Storage:** Store this summary, clearly tagged or indexed by its corresponding `[RESEARCH]` goal, for later and exclusive use in Phase 2. You **MUST NOT** lose or discard any generated summaries.
|
265
|
+
|
266
|
+
---
|
267
|
+
|
268
|
+
**Phase 2: Synthesis and Output Creation (`[DELIVERABLE]` Tasks)**
|
269
|
+
|
270
|
+
* **Execution Prerequisite:** This phase **MUST ONLY COMMENCE** once **ALL** `[RESEARCH]` goals from Phase 1 have been fully completed and their summaries are internally stored.
|
271
|
+
* **Execution Directive:** You **MUST** systematically process **every** goal prefixed with `[DELIVERABLE]`. For each `[DELIVERABLE]` goal, your directive is to **PRODUCE** the artifact as explicitly described.
|
272
|
+
* For each `[DELIVERABLE]` goal:
|
273
|
+
* **Instruction Interpretation:** You will interpret the goal's text (following the `[DELIVERABLE]` tag) as a **direct and non-negotiable instruction** to generate a specific output artifact.
|
274
|
+
* *If the instruction details a table (e.g., "Create a Detailed Comparison Table in Markdown format"), your output for this step **MUST** be a properly formatted Markdown table utilizing columns and rows as implied by the instruction and the prepared data.*
|
275
|
+
* *If the instruction states to prepare a summary, report, or any other structured output, your output for this step **MUST** be that precise artifact.*
|
276
|
+
* **Data Consolidation:** Access and utilize **ONLY** the summaries generated during Phase 1 (`[RESEARCH]` tasks`) to fulfill the requirements of the current `[DELIVERABLE]` goal. You **MUST NOT** perform new searches.
|
277
|
+
* **Output Generation:** Based on the specific instruction of the `[DELIVERABLE]` goal:
|
278
|
+
* Carefully extract, organize, and synthesize the relevant information from your previously gathered summaries.
|
279
|
+
* Must always produce the specified output artifact (e.g., a concise summary, a structured comparison table, a comprehensive report, a visual representation, etc.) with accuracy and completeness.
|
280
|
+
* **Output Accumulation:** Maintain and accumulate **all** the generated `[DELIVERABLE]` artifacts. These are your final outputs.
|
281
|
+
|
282
|
+
---
|
283
|
+
|
284
|
+
**Final Output:** Your final output will comprise the complete set of processed summaries from `[RESEARCH]` tasks AND all the generated artifacts from `[DELIVERABLE]` tasks, presented clearly and distinctly.
|
231
285
|
""",
|
232
286
|
tools=[google_search],
|
233
287
|
output_key="section_research_findings",
|
@@ -39,6 +39,7 @@ export default defineConfig({
|
|
39
39
|
{ text: 'Deployment', link: '/guide/deployment' },
|
40
40
|
{ text: 'Data Ingestion', link: '/guide/data-ingestion' },
|
41
41
|
{ text: 'Observability', link: '/guide/observability' },
|
42
|
+
{ text: 'Deploy UI', link: '/guide/deploy-ui' },
|
42
43
|
{ text: 'Troubleshooting', link: '/guide/troubleshooting' }
|
43
44
|
]
|
44
45
|
},
|
@@ -0,0 +1,91 @@
|
|
1
|
+
# Deploying with a User Interface
|
2
|
+
|
3
|
+
This guide covers strategies for deploying agent applications with UIs to Google Cloud, focusing on approaches for development, testing, and demos.
|
4
|
+
|
5
|
+
### 1. Deployment Strategies
|
6
|
+
|
7
|
+
When deploying an application with both a backend and a frontend UI, two primary strategies exist.
|
8
|
+
|
9
|
+
#### A. Unified Deployment
|
10
|
+
* **Description**: The backend and frontend are packaged and served from a single, unified service.
|
11
|
+
* **Best For**: This approach is simpler and well-suited for **development and testing purposes**.
|
12
|
+
* **Technology**: Google Cloud Run supports this model and can secure it with a single [Identity-Aware Proxy (IAP)](https://cloud.google.com/run/docs/securing/identity-aware-proxy-cloud-run) endpoint.
|
13
|
+
|
14
|
+
#### B. Decoupled Deployment
|
15
|
+
* **Description**: The backend and frontend run as separate, independent services.
|
16
|
+
* **Best For**: This is a more robust, **production-oriented** architecture.
|
17
|
+
* **When to Use**: It becomes necessary if your backend technology is not suited for serving web frontends (e.g., if you are using a dedicated `Agent Engine`). In this case, the frontend is deployed separately to another Cloud Run service or to Cloud Storage.
|
18
|
+
|
19
|
+
::: tip Note
|
20
|
+
This guide focuses on the **Unified Deployment** strategy using Google Cloud Run, which is ideal for rapid development and internal testing.
|
21
|
+
:::
|
22
|
+
|
23
|
+
### 2. Deploy to Cloud Run with IAP
|
24
|
+
|
25
|
+
The deployment method depends on whether you are using a framework's built-in UI or a custom one.
|
26
|
+
|
27
|
+
#### A. Scenario 1: Built-In Framework UI
|
28
|
+
Many agent frameworks (like ADK) include a built-in web UI or "playground" ([`adk-web`](https://github.com/google/adk-web)) that is served alongside the backend API by default. This is useful for quickly exposing the service to other developers or testers.
|
29
|
+
|
30
|
+
**i. Deploy the Service:**
|
31
|
+
Navigate to your project's root directory and run the pre-configured `make` command:
|
32
|
+
```bash
|
33
|
+
make backend IAP=true
|
34
|
+
```
|
35
|
+
This single command typically handles building the container, pushing it to a registry, deploying it to Cloud Run, and configuring IAP.
|
36
|
+
|
37
|
+
#### B. Scenario 2: Custom Frontend
|
38
|
+
If you have a separate, custom frontend (e.g., a React app for a `gemini_fullstack` agent or `live_api`) and want to deploy it with the backend for testing, the process requires a custom container configuration.
|
39
|
+
|
40
|
+
**Strategy**: For development, modify the `Dockerfile` to build and run both the frontend's development server and the backend's API server within a single container.
|
41
|
+
|
42
|
+
> **Important:** This approach, especially running a frontend dev server like `npm run dev`, is intended **for development and testing purposes only**. For production, you should build static frontend assets and serve them efficiently.
|
43
|
+
|
44
|
+
**i. Configure the Dockerfile:**
|
45
|
+
Create or modify your `Dockerfile` to install both Python and Node.js dependencies and to launch both services concurrently.
|
46
|
+
|
47
|
+
::: details Example Dockerfile for combined backend and frontend
|
48
|
+
```dockerfile
|
49
|
+
FROM python:3.11-slim
|
50
|
+
|
51
|
+
# Install Node.js and npm
|
52
|
+
RUN apt-get update && apt-get install -y \
|
53
|
+
nodejs \
|
54
|
+
npm \
|
55
|
+
curl \
|
56
|
+
&& apt-get clean \
|
57
|
+
&& rm -rf /var/lib/apt/lists/*
|
58
|
+
|
59
|
+
RUN pip install --no-cache-dir uv==0.6.12
|
60
|
+
|
61
|
+
WORKDIR /code
|
62
|
+
|
63
|
+
# Copy backend files
|
64
|
+
COPY ./pyproject.toml ./README.md ./uv.lock* ./
|
65
|
+
COPY ./app ./app
|
66
|
+
|
67
|
+
# Copy frontend files
|
68
|
+
COPY ./frontend ./frontend
|
69
|
+
|
70
|
+
# Install dependencies
|
71
|
+
RUN uv sync --frozen && npm --prefix frontend install
|
72
|
+
|
73
|
+
EXPOSE 8000 5173
|
74
|
+
|
75
|
+
# Start both backend and frontend in parallel
|
76
|
+
CMD ["sh", "-c", "ALLOW_ORIGINS='*' uv run uvicorn app.server:app --host 0.0.0.0 --port 8000 & npm --prefix frontend run dev -- --host 0.0.0.0 & wait"]
|
77
|
+
```
|
78
|
+
:::
|
79
|
+
|
80
|
+
|
81
|
+
**ii. 🚀 Deploy the Combined Service:**
|
82
|
+
When deploying, you must instruct Cloud Run to direct traffic to the **frontend's port**. Pass the `PORT` variable to your `make` command. If your frontend runs on port `5173`, as in the example:
|
83
|
+
```bash
|
84
|
+
make backend IAP=true PORT=5173
|
85
|
+
```
|
86
|
+
This ensures the public, IAP-protected URL serves your user interface.
|
87
|
+
|
88
|
+
### 3. Manage User Access
|
89
|
+
Once deployed, your Cloud Run service is protected by IAP, but no users are authorized to access it yet. You must grant the "httpsResourceAccessor" role to the appropriate users or Google Groups.
|
90
|
+
|
91
|
+
➡️ Follow the official Google Cloud documentation to manage access for your service: [Manage user or group access](https://cloud.google.com/run/docs/securing/identity-aware-proxy-cloud-run#manage_user_or_group_access).
|
@@ -0,0 +1,139 @@
|
|
1
|
+
# Development Guide
|
2
|
+
|
3
|
+
This guide walks you through the entire lifecycle of creating, developing, deploying, and monitoring your agent project.
|
4
|
+
|
5
|
+
::: tip Our Philosophy: "Bring Your Own Agent"
|
6
|
+
This starter pack provides the scaffolding for UI, infrastructure, deployment, and monitoring. You focus on building your unique agent logic, and we handle the rest.
|
7
|
+
:::
|
8
|
+
|
9
|
+
::: details Create Your Project
|
10
|
+
You can use the `pip` workflow for a traditional setup, or `uvx` to create a project in a single command without a permanent install.
|
11
|
+
|
12
|
+
::: code-group
|
13
|
+
```bash [pip]
|
14
|
+
# 1. Create and activate a virtual environment
|
15
|
+
python -m venv .venv
|
16
|
+
source .venv/bin/activate
|
17
|
+
|
18
|
+
# 2. Install the package
|
19
|
+
pip install agent-starter-pack
|
20
|
+
|
21
|
+
# 3. Run the create command
|
22
|
+
agent-starter-pack create my-awesome-agent
|
23
|
+
```
|
24
|
+
|
25
|
+
```bash [⚡ uvx]
|
26
|
+
# This single command downloads and runs the latest version
|
27
|
+
`uvx agent-starter-pack create my-awesome-agent
|
28
|
+
```
|
29
|
+
:::
|
30
|
+
|
31
|
+
## 1. Local Development & Iteration
|
32
|
+
|
33
|
+
Navigate into your new project to begin development.
|
34
|
+
|
35
|
+
```bash
|
36
|
+
cd my-awesome-agent
|
37
|
+
```
|
38
|
+
|
39
|
+
Inside, you'll find a complete project structure:
|
40
|
+
|
41
|
+
::: tip Leveraging AI Tools (like Gemini CLI)
|
42
|
+
The starter pack includes a `GEMINI.md` file with guidance formatted for AI interaction. Tools like the [Gemini CLI](https://github.com/google-gemini/gemini-cli) can leverage this file when used within your project directory, providing context for questions about your template.
|
43
|
+
:::
|
44
|
+
|
45
|
+
* `app/`: Backend agent code (prompts, tools, business logic).
|
46
|
+
* `deployment/`: Terraform infrastructure code.
|
47
|
+
* `tests/`: Unit and integration tests.
|
48
|
+
* `notebooks/`: Jupyter notebooks for prototyping and evaluation.
|
49
|
+
* `frontend/`: (If applicable) Web UI for interacting with your agent.
|
50
|
+
* `README.md`: **Project-specific instructions for your chosen template.**
|
51
|
+
* `GEMINI.md`: Use this file with AI tools (like [Gemini CLI](https://github.com/google-gemini/gemini-cli)) to ask questions about the template, ADK concepts, or project structure.
|
52
|
+
|
53
|
+
|
54
|
+
Your development loop will look like this:
|
55
|
+
|
56
|
+
1. **Prototype:** Use the notebooks in `notebooks/` for rapid experimentation with your agent's core logic. This is ideal for trying new prompts or tools before integrating them.
|
57
|
+
2. **Integrate:** Edit `app/agent.py` and other files in the `app/` directory to incorporate your new logic into the main application.
|
58
|
+
3. **Test:** Run the interactive UI playground to test your changes. It features hot-reloading, chat history, and user feedback.
|
59
|
+
|
60
|
+
```bash
|
61
|
+
# Install dependencies and launch the local playground
|
62
|
+
make install && make playground
|
63
|
+
```
|
64
|
+
> Note: The specific UI playground launched by `make playground` depends on the agent template you selected during creation.
|
65
|
+
|
66
|
+
## 2. Deploy to the Cloud
|
67
|
+
|
68
|
+
Once you're satisfied with local testing, you are ready to deploy your agent to Google Cloud.
|
69
|
+
|
70
|
+
*All `make` commands should be run from the root of your agent project (`my-awesome-agent`).*
|
71
|
+
|
72
|
+
### A. Cloud Development Environment Setup
|
73
|
+
|
74
|
+
First, provision a non-production environment in the cloud for remote testing.
|
75
|
+
|
76
|
+
**i. Set Google Cloud Project**
|
77
|
+
Configure `gcloud` to target your development project.
|
78
|
+
```bash
|
79
|
+
# Replace YOUR_DEV_PROJECT_ID with your actual Google Cloud Project ID
|
80
|
+
gcloud config set project YOUR_DEV_PROJECT_ID
|
81
|
+
```
|
82
|
+
|
83
|
+
**ii. Provision Cloud Resources**
|
84
|
+
This command uses Terraform to set up necessary cloud resources for your dev environment.
|
85
|
+
```bash
|
86
|
+
make setup-dev-env
|
87
|
+
```
|
88
|
+
|
89
|
+
**iii. Deploy Agent Backend**
|
90
|
+
Build and deploy your agent's backend to the dev environment.
|
91
|
+
```bash
|
92
|
+
make backend
|
93
|
+
```
|
94
|
+
|
95
|
+
### B. Production-Ready Deployment with CI/CD
|
96
|
+
|
97
|
+
For reliable, automated deployments, a CI/CD pipeline is essential.
|
98
|
+
|
99
|
+
**Option 1: One-Command CI/CD Setup (Recommended for GitHub)**
|
100
|
+
The `agent-starter-pack` CLI can automate the entire CI/CD setup process.
|
101
|
+
```bash
|
102
|
+
uvx agent-starter-pack setup-cicd
|
103
|
+
```
|
104
|
+
This command creates a GitHub repository, connects it to Cloud Build, provisions staging/production infrastructure, and configures deployment triggers. For details, see the [`setup-cicd` CLI reference](../cli/setup_cicd).
|
105
|
+
|
106
|
+
**Option 2: Manual CI/CD Setup**
|
107
|
+
For full control or for other Git providers, refer to the [manual deployment setup guide](./deployment.md).
|
108
|
+
|
109
|
+
**Trigger Your First Deployment**
|
110
|
+
After CI/CD is configured, commit and push your code to trigger the pipeline.
|
111
|
+
```bash
|
112
|
+
git add -A
|
113
|
+
git config --global user.email "you@example.com" # If not already configured
|
114
|
+
git config --global user.name "Your Name" # If not already configured
|
115
|
+
git commit -m "Initial commit of agent code"
|
116
|
+
git push --set-upstream origin main
|
117
|
+
```
|
118
|
+
|
119
|
+
## 3. Monitor Your Deployed Agent
|
120
|
+
|
121
|
+
Track your agent's performance using integrated observability tools. OpenTelemetry events are automatically sent to Google Cloud services.
|
122
|
+
|
123
|
+
* **Cloud Trace & Logging**: Inspect request flows, analyze latencies, and review prompts/outputs. Access traces at: `https://console.cloud.google.com/traces/list?project=YOUR_PROD_PROJECT_ID`
|
124
|
+
* **BigQuery**: Route trace and log data to BigQuery for long-term storage and advanced analytics.
|
125
|
+
* **Looker Studio Dashboards**: Visualize agent performance with pre-built templates:
|
126
|
+
* ADK Agents: [Looker Studio ADK Dashboard](https://lookerstudio.google.com/c/reporting/46b35167-b38b-4e44-bd37-701ef4307418/page/tEnnC)
|
127
|
+
* Non-ADK Agents: [Looker Studio Non-ADK Dashboard](https://lookerstudio.google.com/c/reporting/fa742264-4b4b-4c56-81e6-a667dd0f853f/page/tEnnC)
|
128
|
+
*(Remember to follow the "Setup Instructions" within the dashboards to connect your data sources).*
|
129
|
+
|
130
|
+
➡️ For details, see the [Observability Guide](./observability.md).
|
131
|
+
|
132
|
+
## 4. Advanced Customization
|
133
|
+
|
134
|
+
Tailor the starter pack further to meet your specific requirements.
|
135
|
+
|
136
|
+
* **RAG Data Ingestion**: For Retrieval Augmented Generation (RAG) agents, configure data pipelines to process your information and load embeddings into Vertex AI Search or Vector Search.
|
137
|
+
➡️ See the [Data Ingestion Guide](./data-ingestion.md).
|
138
|
+
* **Custom Terraform**: Modify Terraform configurations in `deployment/terraform/` for unique infrastructure needs.
|
139
|
+
➡️ Refer to the [Deployment Guide](./deployment.md).
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
# 🚀 Getting Started
|
3
2
|
|
4
3
|
This guide quickly walks you through setting up your first agent project.
|
@@ -7,44 +6,48 @@ This guide quickly walks you through setting up your first agent project.
|
|
7
6
|
|
8
7
|
### Prerequisites
|
9
8
|
|
10
|
-
**Python 3.10+** | **Google Cloud SDK** [Install Guide](https://cloud.google.com/sdk/docs/install) | **Terraform** [Install Guide](https://developer.hashicorp.com/terraform/downloads) | **`uv` (
|
9
|
+
**Python 3.10+** | **Google Cloud SDK** [Install Guide](https://cloud.google.com/sdk/docs/install) | **Terraform** [Install Guide](https://developer.hashicorp.com/terraform/downloads) | **`uv` (Optional, Recommended)** [Install Guide](https://docs.astral.sh/uv/getting-started/installation/)
|
11
10
|
|
12
|
-
### 1.
|
11
|
+
### 1. Create Your Agent Project
|
13
12
|
|
14
|
-
|
15
|
-
# Create and activate a Python virtual environment (Recommended)
|
16
|
-
python -m venv .venv
|
17
|
-
source .venv/bin/activate # On Windows: .venv\Scripts\activate
|
13
|
+
You can use the `pip` workflow for a traditional setup, or `uvx` to create a project in a single command without a permanent install. Choose your preferred method below.
|
18
14
|
|
19
|
-
|
20
|
-
pip install agent-starter-pack
|
21
|
-
```
|
22
|
-
Check the [Installation Guide](/guide/installation) for alternative installation methods.
|
15
|
+
::: code-group
|
23
16
|
|
24
|
-
|
17
|
+
```bash [pip]
|
18
|
+
# 1. Create and activate a virtual environment
|
19
|
+
python -m venv .venv
|
20
|
+
source .venv/bin/activate
|
25
21
|
|
26
|
-
|
22
|
+
# 2. Install the package
|
23
|
+
pip install agent-starter-pack
|
27
24
|
|
28
|
-
|
25
|
+
# 3. Run the create command
|
29
26
|
agent-starter-pack create my-awesome-agent
|
30
27
|
```
|
31
28
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
29
|
+
```bash [⚡ uvx]
|
30
|
+
# This single command downloads and runs the latest version
|
31
|
+
uvx agent-starter-pack create my-awesome-agent
|
32
|
+
```
|
33
|
+
|
34
|
+
:::
|
35
|
+
|
36
|
+
No matter which method you choose, the `create` command will:
|
37
|
+
* Let you choose an agent template (e.g., `adk_base`, `agentic_rag`).
|
38
|
+
* Let you select a deployment target (e.g., `cloud_run`, `agent_engine`).
|
39
|
+
* Generate a complete project structure (backend, optional frontend, deployment infra).
|
36
40
|
|
37
41
|
**Examples:**
|
38
42
|
|
39
43
|
```bash
|
40
|
-
#
|
41
|
-
agent-starter-pack create my-rag-agent
|
42
|
-
|
43
|
-
# Create a base ADK agent for Agent Engine directly
|
44
|
+
# You can also pass flags to skip the prompts
|
44
45
|
agent-starter-pack create my-adk-agent -a adk_base -d agent_engine
|
45
46
|
```
|
46
47
|
|
47
|
-
###
|
48
|
+
### 2. Explore and Run Locally
|
49
|
+
|
50
|
+
Now, navigate into your new project and run its setup commands.
|
48
51
|
|
49
52
|
```bash
|
50
53
|
cd my-awesome-agent && make install && make playground
|
@@ -67,4 +70,4 @@ You're ready to go! See the [Development Guide](/guide/development-guide) for de
|
|
67
70
|
|
68
71
|
- **Add Data (RAG):** Configure [Data Ingestion](/guide/data-ingestion) for knowledge-based agents.
|
69
72
|
- **Monitor Performance:** Explore [Observability](/guide/observability) features for production monitoring.
|
70
|
-
- **Deploy to Production:** Follow the [Deployment Guide](/guide/deployment) to deploy your agent to Google Cloud.
|
73
|
+
- **Deploy to Production:** Follow the [Deployment Guide](/guide/deployment) to deploy your agent to Google Cloud.
|