feat: route workflow image inputs natively

This commit is contained in:
Xin Wang
2026-08-03 10:55:57 +08:00
parent 2e84de0798
commit f3439b21d1
10 changed files with 412 additions and 33 deletions

View File

@@ -713,7 +713,10 @@ class UserTurnRoutingProcessor(FrameProcessor):
self._last_user_message = user_message
content = message_text(user_message)
handled = await self._brain.on_user_turn_end(content)
handled = await self._brain.on_user_turn_end(
content,
user_message=user_message,
)
if not handled:
await self.push_frame(frame, direction)