Skip to content

Commit b5ceb92

Browse files
committed
Fix: update HandoffBuilder API call from set_coordinator to with_start_agent
The agent-framework package 1.0.0b260114 renamed the HandoffBuilder method from 'set_coordinator' to 'with_start_agent'. This change ensures compatibility with the latest version of the package.
1 parent b763494 commit b5ceb92

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content-gen/src/backend/orchestrator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def initialize(self) -> None:
443443
image_content_agent,
444444
compliance_agent,
445445
])
446-
.set_coordinator(triage_agent)
446+
.with_start_agent(triage_agent)
447447
# Triage can hand off to all specialists
448448
.add_handoff(triage_agent, [
449449
planning_agent,

0 commit comments

Comments
 (0)