diff --git a/src/App.jsx b/src/App.jsx index 1a244ea..e175fb3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1179,6 +1179,7 @@ export default function App() { userScrolledUpRef, visionModel, webSearchEnabled, + workflowRouterModel, }) useEffect(() => { diff --git a/src/chatGeneration.js b/src/chatGeneration.js index 754a9b6..566b33a 100644 --- a/src/chatGeneration.js +++ b/src/chatGeneration.js @@ -85,6 +85,7 @@ export function createChatGenerationHandlers({ userScrolledUpRef, visionModel, webSearchEnabled, + workflowRouterModel, }) { async function regenerateFromIndex(index, overrideUserText = null) { const sessionId = activeSessionId @@ -358,6 +359,7 @@ export function createChatGenerationHandlers({ attachments: outgoingAttachments, vision_model: visionModel || null, transcription_model: transcriptionModel || null, + router_model: workflowRouterModel || null, stream: true, }, requestController.signal) attachWorkflowRunToRequest?.(requestController, created.run_id)