We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c45d19f commit 82f7e29Copy full SHA for 82f7e29
gui/src/hooks/ParallelListeners.tsx
@@ -17,6 +17,7 @@ import {
17
newSession,
18
setHasReasoningEnabled,
19
setIsSessionMetadataLoading,
20
+ setMode,
21
} from "../redux/slices/sessionSlice";
22
import { setTTSActive } from "../redux/slices/uiSlice";
23
@@ -208,6 +209,7 @@ function ParallelListeners() {
208
209
210
useWebviewListener("loadAgentSession", async (data) => {
211
dispatch(newSession(data.session));
212
+ dispatch(setMode("agent"));
213
});
214
215
useWebviewListener("setTTSActive", async (status) => {
0 commit comments