From 9122f82161c8a066b43a20516d22d3a97a5ddad3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 15 Jun 2026 15:18:08 +0200 Subject: [PATCH] Implement chat workflow selection context --- src/App.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index 130a8db..e7c2da2 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -81,6 +81,12 @@ export default function App() { removeLibraryFromChatSelections, setChatLibraryForSession, } = useChatLibrarySelection({ activeSessionId, libraries, libraryJobs }) + const { + getSelectionForSession: getChatWorkflowForSession, + selectedWorkflow, + selection: chatWorkflowSelection, + setSelectionForSession: setChatWorkflowForSession, + } = useChatWorkflowSelection({ activeSessionId, workflows }) const [isChatModelPickerOpen, setIsChatModelPickerOpen] = useState(false) const [availableChatModels, setAvailableChatModels] = useState([]) const [availableVisionModels, setAvailableVisionModels] = useState([])