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 @@ -187,6 +187,9 @@ async def _call_start_workflow(
invoice_id: int | None = None,
attachment_file_ids: list[int] | None = None,
) -> str:
if description is None or vendor_id is None:
return json.dumps({"error": "description and vendor_id are required"})

if not self.background_tasks:
return json.dumps({"error": "Workflow engine not available"})

Expand Down
Loading