summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-07-24 19:19:33 -0700
committerNate Sesti <sestinj@gmail.com>2023-07-24 19:19:33 -0700
commit000e9c0735c50bd6cb63866441d7f73083665902 (patch)
treee721ae8223e4683f12522861d82036ead1f7993d /extension
parent0672fa836c9e2b242fbc530ebdb645192c4b0590 (diff)
downloadsncontinue-000e9c0735c50bd6cb63866441d7f73083665902.tar.gz
sncontinue-000e9c0735c50bd6cb63866441d7f73083665902.tar.bz2
sncontinue-000e9c0735c50bd6cb63866441d7f73083665902.zip
telemetry refactoring and switch config.json->py
Diffstat (limited to 'extension')
-rw-r--r--extension/react-app/src/hooks/AbstractContinueGUIClientProtocol.ts2
-rw-r--r--extension/react-app/src/hooks/ContinueGUIClientProtocol.ts4
2 files changed, 0 insertions, 6 deletions
diff --git a/extension/react-app/src/hooks/AbstractContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/AbstractContinueGUIClientProtocol.ts
index ddf65272..8e3735ec 100644
--- a/extension/react-app/src/hooks/AbstractContinueGUIClientProtocol.ts
+++ b/extension/react-app/src/hooks/AbstractContinueGUIClientProtocol.ts
@@ -15,8 +15,6 @@ abstract class AbstractContinueGUIClientProtocol {
callback: (commands: { name: string; description: string }[]) => void
): void;
- abstract changeDefaultModel(model: string): void;
-
abstract sendClear(): void;
abstract retryAtIndex(index: number): void;
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
index 1048e956..b8019664 100644
--- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
+++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts
@@ -53,10 +53,6 @@ class ContinueGUIClientProtocol extends AbstractContinueGUIClientProtocol {
});
}
- changeDefaultModel(model: string) {
- this.messenger.send("change_default_model", { model });
- }
-
sendClear() {
this.messenger.send("clear_history", {});
}