feat: GitOps workflow for WebSearch ADK Agent - #15
Open
ypeng1 wants to merge 8 commits into
Open
Conversation
Add reusable GitHub Action for ADK agent validation (gradient agent run)
Fix composite action: add required shell property to run steps
Fix langchain deps: use 0.3.x stack for langchain-gradient compatibility
Use langgraph create_react_agent for langchain 0.3.x compatibility
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.
Summary
This PR adds CI validation for the WebSearch ADK agent and updates the WebSearch template for LangChain 0.3.x compatibility.
Changes
1. Reusable GitHub Action for ADK Agent Validation
.github/actions/run-adk-agentgradient agent runto validate that an ADK agent starts and is reachable at http://localhost:8080working-directory,python-version, and API keysDIGITALOCEAN_INFERENCE_KEYfor LLM calls; optionalOPENAI_API_KEYfor RAG embeddings.github/workflows/validate-websearch.ymlWebSearch/**and onworkflow_dispatch2. Composite Action Fix
shell: bashto run steps in the composite action for correct execution.3. LangChain 0.3.x Compatibility (WebSearch)
WebSearch/requirements.txt): Pinned to LangChain 0.3.x for compatibility withlangchain-gradient.WebSearch/main.py): Switched tolanggraph.prebuilt.create_react_agentfor LangChain 0.3.x support.Testing
DIGITALOCEAN_INFERENCE_KEYin repo secrets for CI to pass.