renamed all (#3207)

This commit is contained in:
Eduard van Valkenburg
2026-01-14 06:54:07 +01:00
committed by GitHub
Unverified
parent 1ae0b09e42
commit d8cf8361bd
125 changed files with 1024 additions and 1027 deletions
@@ -3,7 +3,7 @@
import asyncio
from agent_framework import (
AgentRunResponse,
AgentResponse,
ChatAgent,
Executor,
WorkflowBuilder,
@@ -83,9 +83,9 @@ async def main():
.build()
)
output: AgentRunResponse | None = None
output: AgentResponse | None = None
async for event in workflow.run_stream("hello world"):
if isinstance(event, WorkflowOutputEvent) and isinstance(event.data, AgentRunResponse):
if isinstance(event, WorkflowOutputEvent) and isinstance(event.data, AgentResponse):
output = event.data
if output: