AgenticExecuteStream Agentic 方式流式执行
(ctx context.Context, agent *WorkflowAgent, input string)
| 362 | |
| 363 | // AgenticExecuteStream Agentic 方式流式执行 |
| 364 | func (wf *Workflow) AgenticExecuteStream(ctx context.Context, agent *WorkflowAgent, input string) <-chan AgentStreamEvent { |
| 365 | if agent.GetWorkflow() == nil { |
| 366 | agent.AttachWorkflow(wf) |
| 367 | } |
| 368 | return agent.RunStream(ctx, input) |
| 369 | } |
nothing calls this directly
no test coverage detected