diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-22 13:04:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 13:04:46 -0700 |
commit | 4a77e7251c36dfcce15d68471dd8865c698ad679 (patch) | |
tree | 42f4d8a08d99744ed29571084240d47b122dc935 /extension/react-app/src/hooks/useContinueGUIProtocol.ts | |
parent | a09e8564d658a603a67e8431620aaf9b14f71046 (diff) | |
parent | af67d7d8309c88f7dced869a31359de66e9341c3 (diff) | |
download | sncontinue-4a77e7251c36dfcce15d68471dd8865c698ad679.tar.gz sncontinue-4a77e7251c36dfcce15d68471dd8865c698ad679.tar.bz2 sncontinue-4a77e7251c36dfcce15d68471dd8865c698ad679.zip |
Merge pull request #141 from continuedev/model-button
adding button to toggle between 3.5 and 4
Diffstat (limited to 'extension/react-app/src/hooks/useContinueGUIProtocol.ts')
-rw-r--r-- | extension/react-app/src/hooks/useContinueGUIProtocol.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/useContinueGUIProtocol.ts b/extension/react-app/src/hooks/useContinueGUIProtocol.ts index 59397742..4eb68046 100644 --- a/extension/react-app/src/hooks/useContinueGUIProtocol.ts +++ b/extension/react-app/src/hooks/useContinueGUIProtocol.ts @@ -55,6 +55,10 @@ class ContinueGUIClientProtocol extends AbstractContinueGUIClientProtocol { }); } + changeDefaultModel() { + this.messenger.send("change_default_model", {}); + } + sendClear() { this.messenger.send("clear_history", {}); } |