Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions finbot/agents/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ async def _call_start_workflow(
if not self.background_tasks:
return json.dumps({"error": "Workflow engine not available"})

if vendor_id is None:
return json.dumps({"error": "vendor_id is required"})

from finbot.agents.runner import (
run_orchestrator_agent, # pylint: disable=import-outside-toplevel
)
Expand Down
Loading