AgentWorkflowConfig constructor

const AgentWorkflowConfig({
  1. required int maxConcurrentAgents,
  2. required int maxTurns,
  3. required Duration maxRetryBackoff,
  4. required Map<String, int> maxConcurrentAgentsByState,
  5. required String runner,
  6. required LlmRunnerWorkflowConfig llm,
})

Creates agent workflow config.

Implementation

const AgentWorkflowConfig({
  required this.maxConcurrentAgents,
  required this.maxTurns,
  required this.maxRetryBackoff,
  required this.maxConcurrentAgentsByState,
  required this.runner,
  required this.llm,
});