diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-21 21:33:24 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-21 21:33:24 -0700 |
commit | 695abf458f25e0cb7b05cebe3a0f9ec2c97e7797 (patch) | |
tree | 7a7a4c5d2d054e4a340a2fb320567849fe3b2add /extension/react-app/src/hooks | |
parent | 559a5301c382934f48c81f476909931a0a0e9b44 (diff) | |
download | sncontinue-695abf458f25e0cb7b05cebe3a0f9ec2c97e7797.tar.gz sncontinue-695abf458f25e0cb7b05cebe3a0f9ec2c97e7797.tar.bz2 sncontinue-695abf458f25e0cb7b05cebe3a0f9ec2c97e7797.zip |
more progress
Diffstat (limited to 'extension/react-app/src/hooks')
-rw-r--r-- | extension/react-app/src/hooks/ContinueGUIClientProtocol.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts index 824bb086..6d9d1fdd 100644 --- a/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts +++ b/extension/react-app/src/hooks/ContinueGUIClientProtocol.ts @@ -13,6 +13,8 @@ abstract class AbstractContinueGUIClientProtocol { callback: (commands: { name: string; description: string }[]) => void ): void; + abstract changeDefaultModel(): void; + abstract sendClear(): void; abstract retryAtIndex(index: number): void; |