Files
google--adk-python/docs/guides
Shangjie Chen 199d954815 feat: expose max_parallel_workers parameter on workflow.node decorator and Node class
Expose `max_parallel_workers` on the `@workflow.node` decorator and `Node` class when `parallel_worker=True`. This allows throttling the concurrency limit when executing parallel workers.

Co-authored-by: Shangjie Chen <deanchen@google.com>
PiperOrigin-RevId: 940663519
2026-06-30 14:34:30 -07:00
..

ADK Developer Guides

This directory contains specific developer guides for the ADK Python implementation. For the official ADK documentation, visit adk.dev.

Index

Agents

Events

Workflows

  • Workflow - Graph-based orchestration of complex, multi-step agent interactions.
  • Workflow Graphs - Understanding nodes, edges, and graph structures in workflows.
  • Function Nodes - Wrapping Python functions and generators as workflow nodes.
  • JoinNode - Synchronizing parallel execution paths in workflows.
  • RetryConfig - Configuring retry policies for resilient workflow nodes.
  • ParallelWorker - Processing lists of items concurrently in workflows.
  • Dynamic Nodes - Scheduling and executing nodes dynamically at runtime.