[BREAKING] Python: Merge send_responses into run method (#3720)

* Streamline workflow run api with send responses in one method

* Fixes

* Address copilot feedback
This commit is contained in:
Evan Mattson
2026-02-07 07:32:38 +09:00
committed by GitHub
Unverified
parent 15256bb616
commit a17f13598b
39 changed files with 561 additions and 335 deletions
@@ -347,7 +347,7 @@ async def main() -> None:
else:
print(f"Unknown request info event data type: {type(event.data)}")
run_result = await main_workflow.send_responses(responses)
run_result = await main_workflow.run(responses=responses)
outputs = run_result.get_outputs()
if outputs: