diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:28:37 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-21 15:28:37 -0700 |
commit | 0eceef43ae9d0e0e195a9dbbe1e038b4e02ea61b (patch) | |
tree | a0cc6a362a16712ae6133d6147a4f2939a438754 /continuedev/src/continuedev/server | |
parent | 2dd87605a05236c1dd10389883766f4c51207d56 (diff) | |
download | sncontinue-0eceef43ae9d0e0e195a9dbbe1e038b4e02ea61b.tar.gz sncontinue-0eceef43ae9d0e0e195a9dbbe1e038b4e02ea61b.tar.bz2 sncontinue-0eceef43ae9d0e0e195a9dbbe1e038b4e02ea61b.zip |
Revert "initial ideas"
This reverts commit 2dd87605a05236c1dd10389883766f4c51207d56.
Diffstat (limited to 'continuedev/src/continuedev/server')
-rw-r--r-- | continuedev/src/continuedev/server/gui.py | 3 | ||||
-rw-r--r-- | continuedev/src/continuedev/server/gui_protocol.py | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/continuedev/src/continuedev/server/gui.py b/continuedev/src/continuedev/server/gui.py index 53a5f16b..cf046734 100644 --- a/continuedev/src/continuedev/server/gui.py +++ b/continuedev/src/continuedev/server/gui.py @@ -116,9 +116,6 @@ class GUIProtocolServer(AbstractGUIProtocolServer): asyncio.create_task( self.session.autopilot.retry_at_index(index)) - def on_change_default_model(self): - asyncio.create_task(self.session.autopilot.change_default_model()) - def on_clear_history(self): asyncio.create_task(self.session.autopilot.clear_history()) diff --git a/continuedev/src/continuedev/server/gui_protocol.py b/continuedev/src/continuedev/server/gui_protocol.py index 66839d9b..d9506c6f 100644 --- a/continuedev/src/continuedev/server/gui_protocol.py +++ b/continuedev/src/continuedev/server/gui_protocol.py @@ -36,10 +36,6 @@ class AbstractGUIProtocolServer(ABC): """Called when the user requests a retry at a previous index""" @abstractmethod - def on_change_default_model(self): - """Called when the user requests to change the default model""" - - @abstractmethod def on_clear_history(self): """Called when the user requests to clear the history""" |