diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-22 13:04:04 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-22 13:04:04 -0700 |
commit | 71f8e361117ea5b4d88cc5c94e2e54a8ac5f2bf8 (patch) | |
tree | 6fd1da2de00dbc348b672b232af9b867878d7179 | |
parent | 8bc0c8d23469c1d1e7e20114f27dca876a3b0383 (diff) | |
download | sncontinue-71f8e361117ea5b4d88cc5c94e2e54a8ac5f2bf8.tar.gz sncontinue-71f8e361117ea5b4d88cc5c94e2e54a8ac5f2bf8.tar.bz2 sncontinue-71f8e361117ea5b4d88cc5c94e2e54a8ac5f2bf8.zip |
adding default model
-rw-r--r-- | extension/react-app/src/tabs/gui.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/react-app/src/tabs/gui.tsx b/extension/react-app/src/tabs/gui.tsx index 0dd7e3ec..16c950ef 100644 --- a/extension/react-app/src/tabs/gui.tsx +++ b/extension/react-app/src/tabs/gui.tsx @@ -230,7 +230,7 @@ function GUI(props: GUIProps) { console.log("CLIENT ON STATE UPDATE: ", client, client?.onStateUpdate); client?.onStateUpdate((state) => { // Scroll only if user is at very bottom of the window. - setUsingFastModel(state.using_fast_model); + setUsingFastModel(state.default_model === "gpt-3.5-turbo"); const shouldScrollToBottom = topGuiDivRef.current && topGuiDivRef.current?.offsetHeight - window.scrollY < 100; |