diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-26 16:39:07 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-26 16:39:07 -0700 |
commit | f3c6533d4054de5a71c8867c2b76fc8b0747447c (patch) | |
tree | 8e53ce9533aa42ee5d0a31504aa07be691d87157 /extension/react-app/src/hooks/useContinueGUIProtocol.ts | |
parent | f403bbe26b8864ff5367eab08afe4a01fdde8e72 (diff) | |
parent | 292d4d10ce28d720d61f97918c490b0d9cdae9e7 (diff) | |
download | sncontinue-f3c6533d4054de5a71c8867c2b76fc8b0747447c.tar.gz sncontinue-f3c6533d4054de5a71c8867c2b76fc8b0747447c.tar.bz2 sncontinue-f3c6533d4054de5a71c8867c2b76fc8b0747447c.zip |
Merge branch 'main' into styled-code
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..f43a66ff 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(model: string) { + this.messenger.send("change_default_model", { model }); + } + sendClear() { this.messenger.send("clear_history", {}); } |