agent-starter-pack 0.11.1__py3-none-any.whl → 0.12.0__py3-none-any.whl

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.
Files changed (72) hide show
  1. {agent_starter_pack-0.11.1.dist-info → agent_starter_pack-0.12.0.dist-info}/METADATA +1 -1
  2. {agent_starter_pack-0.11.1.dist-info → agent_starter_pack-0.12.0.dist-info}/RECORD +45 -70
  3. agents/adk_base/app/__init__.py +17 -0
  4. agents/adk_base/notebooks/adk_app_testing.ipynb +4 -1
  5. agents/adk_base/tests/integration/test_agent.py +1 -1
  6. agents/agentic_rag/app/__init__.py +17 -0
  7. agents/agentic_rag/app/agent.py +2 -2
  8. agents/agentic_rag/notebooks/adk_app_testing.ipynb +4 -1
  9. agents/agentic_rag/tests/integration/test_agent.py +2 -2
  10. agents/crewai_coding_crew/tests/integration/test_agent.py +1 -1
  11. agents/langgraph_base_react/tests/integration/test_agent.py +1 -1
  12. agents/live_api/tests/unit/test_server.py +6 -6
  13. llm.txt +15 -4
  14. src/base_template/Makefile +5 -5
  15. src/base_template/README.md +4 -4
  16. src/base_template/deployment/terraform/dev/variables.tf +3 -2
  17. src/base_template/deployment/terraform/iam.tf +10 -34
  18. src/base_template/deployment/terraform/variables.tf +3 -3
  19. src/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %} +2 -2
  20. src/base_template/pyproject.toml +2 -2
  21. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml +1 -1
  22. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml +1 -1
  23. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml +2 -2
  24. src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml +1 -1
  25. src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml +1 -1
  26. src/cli/commands/create.py +25 -2
  27. src/cli/commands/enhance.py +94 -15
  28. src/cli/commands/list.py +1 -1
  29. src/cli/commands/setup_cicd.py +50 -41
  30. src/cli/utils/remote_template.py +1 -1
  31. src/cli/utils/template.py +120 -41
  32. src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +3 -3
  33. src/deployment_targets/agent_engine/{app → {{cookiecutter.agent_directory}}}/agent_engine_app.py +10 -10
  34. src/deployment_targets/cloud_run/Dockerfile +2 -2
  35. src/deployment_targets/cloud_run/tests/integration/test_server_e2e.py +3 -3
  36. src/deployment_targets/cloud_run/tests/load_test/README.md +1 -1
  37. src/deployment_targets/cloud_run/tests/load_test/load_test.py +2 -2
  38. {agents/live_api/app → src/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}}/server.py +186 -7
  39. src/resources/docs/adk-cheatsheet.md +3 -3
  40. src/base_template/app/__init__.py +0 -3
  41. src/deployment_targets/cloud_run/app/server.py +0 -206
  42. src/frontends/adk_gemini_fullstack/frontend/components.json +0 -21
  43. src/frontends/adk_gemini_fullstack/frontend/eslint.config.js +0 -28
  44. src/frontends/adk_gemini_fullstack/frontend/index.html +0 -12
  45. src/frontends/adk_gemini_fullstack/frontend/package-lock.json +0 -6105
  46. src/frontends/adk_gemini_fullstack/frontend/package.json +0 -47
  47. src/frontends/adk_gemini_fullstack/frontend/src/App.tsx +0 -564
  48. src/frontends/adk_gemini_fullstack/frontend/src/components/ActivityTimeline.tsx +0 -244
  49. src/frontends/adk_gemini_fullstack/frontend/src/components/ChatMessagesView.tsx +0 -420
  50. src/frontends/adk_gemini_fullstack/frontend/src/components/InputForm.tsx +0 -60
  51. src/frontends/adk_gemini_fullstack/frontend/src/components/WelcomeScreen.tsx +0 -56
  52. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/badge.tsx +0 -46
  53. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/button.tsx +0 -59
  54. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/card.tsx +0 -92
  55. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/input.tsx +0 -21
  56. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/scroll-area.tsx +0 -56
  57. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/select.tsx +0 -183
  58. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/tabs.tsx +0 -64
  59. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/textarea.tsx +0 -18
  60. src/frontends/adk_gemini_fullstack/frontend/src/global.css +0 -154
  61. src/frontends/adk_gemini_fullstack/frontend/src/main.tsx +0 -13
  62. src/frontends/adk_gemini_fullstack/frontend/src/utils.ts +0 -7
  63. src/frontends/adk_gemini_fullstack/frontend/src/vite-env.d.ts +0 -1
  64. src/frontends/adk_gemini_fullstack/frontend/tsconfig.json +0 -28
  65. src/frontends/adk_gemini_fullstack/frontend/tsconfig.node.json +0 -24
  66. src/frontends/adk_gemini_fullstack/frontend/vite.config.ts +0 -41
  67. {agent_starter_pack-0.11.1.dist-info → agent_starter_pack-0.12.0.dist-info}/WHEEL +0 -0
  68. {agent_starter_pack-0.11.1.dist-info → agent_starter_pack-0.12.0.dist-info}/entry_points.txt +0 -0
  69. {agent_starter_pack-0.11.1.dist-info → agent_starter_pack-0.12.0.dist-info}/licenses/LICENSE +0 -0
  70. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/gcs.py +0 -0
  71. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/tracing.py +0 -0
  72. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/typing.py +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.