diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:36:12 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:36:12 -0700 |
commit | 6cedd587c6c62bf33349e374aafa83fdc78da510 (patch) | |
tree | d4e48ea65efc5880bc4fc8b6a7e3dc7e792dfdbb /extension/react-app/src/hooks | |
parent | 0eceef43ae9d0e0e195a9dbbe1e038b4e02ea61b (diff) | |
download | sncontinue-6cedd587c6c62bf33349e374aafa83fdc78da510.tar.gz sncontinue-6cedd587c6c62bf33349e374aafa83fdc78da510.tar.bz2 sncontinue-6cedd587c6c62bf33349e374aafa83fdc78da510.zip |
initial ideas
Diffstat (limited to 'extension/react-app/src/hooks')
-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", {}); } |