Add Agent Starter Pack to Story Teller Sample Agent. #1174
Open
maeve2024 wants to merge 1 commit intogoogle:mainfrom
Open
Add Agent Starter Pack to Story Teller Sample Agent. #1174maeve2024 wants to merge 1 commit intogoogle:mainfrom
maeve2024 wants to merge 1 commit intogoogle:mainfrom
Conversation
…etup Integrate the Story Teller agent with the Agent Starter Pack and standardize on uv for dependency management, following the pattern from adk-samples PR 351. pyproject.toml: add google-auth, agent-starter-pack dev dep, [tool.agent-starter-pack]. story_teller_agent/__init__.py: add flexible auth block for ADC/Vertex. README.md: uv setup, Agent Starter Pack as main deployment path. Add uv.lock for reproducible installs. Made-with: Cursor
zeroasterisk
reviewed
Mar 4, 2026
| @@ -0,0 +1,26 @@ | |||
| # Copyright 2025 Google LLC | |||
zeroasterisk
reviewed
Mar 4, 2026
| dependencies = [ | ||
| "google-adk>=1.0.0", | ||
| "google-genai>=1.9.0", | ||
| "google-auth>=2.0.0", |
Collaborator
There was a problem hiding this comment.
please test without this dep and see if it works.
zeroasterisk
reviewed
Mar 4, 2026
| 1. To run the agent from the CLI: | ||
|
|
||
| ```bash | ||
| adk run . |
Collaborator
There was a problem hiding this comment.
should this be make playground after Agent Starter Pack
zeroasterisk
requested changes
Mar 4, 2026
Collaborator
zeroasterisk
left a comment
There was a problem hiding this comment.
Please update readme to be end-to-end ASP on top, and end-to-end alternative inside collapsed div.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Integrate the Story Teller agent with the Agent Starter Pack and standardize
on uv for dependency management, following the pattern from adk-samples PR 351.
pyproject.toml:
agent_directory (story_teller_agent) for remote templating.
story_teller_agent/init.py:
GOOGLE_CLOUD_LOCATION, and GOOGLE_GENAI_USE_VERTEXAI from
google.auth.default() so the agent works with ADC locally and
when deployed (e.g. Vertex AI / Cloud Run).
README.md:
with Agent Starter Pack (uvx first, pip in details) as primary.
Lockfile:
TESTS:

