AI-277: Add Python ADK integration samples#318
Merged
Conversation
Add a google_adk_agents/ sample suite demonstrating the temporalio.contrib.google_adk_agents plugin, mirroring the openai_agents layout with one runnable subdirectory per scenario. Five scenarios cover the plugin's public surface: basic (GoogleAdkPlugin + TemporalModel), tools (activity_tool), agent_patterns (multi-agent sub_agents), mcp (TemporalMcpToolSet/Provider), and streaming (TemporalModel streaming_topic + WorkflowStream). Adds a google-adk dependency group pinned to temporalio[google-adk] >= 1.28.0, which streaming requires. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…nto maplexu/AI-277-adk-samples # Conflicts: # uv.lock
Member
|
Add @temporalio/ai-sdk to CODEOWNERS? |
brianstrauch
approved these changes
Jun 18, 2026
Co-authored-by: Brian Strauch <brian@brianstrauch.com>
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.
This adds a
google_adk_agents/sample suite with one runnable subdirectory per scenario:basic(GoogleAdkPlugin + TemporalModel),tools(activity_tool),agent_patterns(multi-agent sub_agents),mcp(TemporalMcpToolSet/Provider), andstreaming(TemporalModel streaming_topic + WorkflowStream). It also adds agoogle-adkdependency group pinned totemporalio[google-adk] >= 1.28.0, which the streaming sample requires. All five scenarios were verified locally against a Temporal dev server.