Co-authored-by: George Weale <gweale@google.com> PiperOrigin-RevId: 962282749
2.4 KiB
Workflow Loop Config Sample
Overview
This sample demonstrates how to define a workflow with a feedback loop using a
YAML configuration file. It mirrors the
contributing/samples/workflows/loop sample, but uses YAML to define the
workflow structure instead of Python.
Status: not runnable yet. The YAML agent loader resolves
agent_classagainstgoogle.adk.agentsand requires aBaseAgentsubclass with a config type, and no config field bindsedges.Workflowsatisfies neither, soroot_agent.yamlbelow describes the intended syntax rather than syntax the loader accepts today. The individual agent files (generate_headline.yaml,evaluate_headline.yaml) do load.
Sample Inputs
-
Python programming -
Baking cookies
Graph
graph TD
START --> process_input[process_input]
process_input --> generate_headline[generate_headline.yaml]
generate_headline --> evaluate_headline[evaluate_headline.yaml]
evaluate_headline --> route_headline[route_headline]
route_headline -->|unrelated| generate_headline
How To
This sample uses some special syntax in root_agent.yaml to support dynamic resolution and graph construction:
1. Code References
Fields that hold a Python object (like output_schema in evaluate_headline.yaml) take a name entry holding the fully qualified name of that object, which the loader imports.
- The name is resolved against
sys.path, which includes the directory holding the agent folders. - Example:
name: loop_config.agent.Feedbackresolves to theFeedbackPydantic model inagent.pyin this directory.
2. Function References in Edges
If a string in the edge list does not end with .yaml and is not 'START', it is treated as a function reference.
- If it starts with
., it resolves relative to the current agent directory's Python package path. - Example:
.agent.process_inputresolves to theprocess_inputfunction inagent.py. - It automatically creates a
FunctionNodewith the function's name as the node name.
3. External Agent Files
Agents can be defined in their own YAML files and referenced by filename in the edges list.
- Example:
generate_headline.yamlreferences the agent defined in that file. - The mapper caches resolved nodes by their string value, so using the same filename in multiple edges correctly reuses the same agent instance, preserving the graph structure (e.g. for loops).