diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-25 12:24:31 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-25 12:24:31 -0700 |
commit | 82ead52472d4e2a2e291aa5f17ea8522fc11f236 (patch) | |
tree | b26a1813baa525765de7dc0c6a7f1b6b46f1bc5c | |
parent | d3554d1cd7e24cabcfc8835140fcb0f7fa746061 (diff) | |
download | sncontinue-82ead52472d4e2a2e291aa5f17ea8522fc11f236.tar.gz sncontinue-82ead52472d4e2a2e291aa5f17ea8522fc11f236.tar.bz2 sncontinue-82ead52472d4e2a2e291aa5f17ea8522fc11f236.zip |
tweaks
-rw-r--r-- | continuedev/src/continuedev/core/sdk.py | 2 | ||||
-rw-r--r-- | continuedev/src/continuedev/steps/chat.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/continuedev/src/continuedev/core/sdk.py b/continuedev/src/continuedev/core/sdk.py index 30e48ad9..be3bc9d4 100644 --- a/continuedev/src/continuedev/core/sdk.py +++ b/continuedev/src/continuedev/core/sdk.py @@ -45,7 +45,7 @@ class Models: @cached_property def gpt35(self): - return self.__load_openai_model("gpt-3.5") + return self.__load_openai_model("gpt-3.5-turbo") @cached_property def gpt350613(self): diff --git a/continuedev/src/continuedev/steps/chat.py b/continuedev/src/continuedev/steps/chat.py index a29f7f2f..76fead9d 100644 --- a/continuedev/src/continuedev/steps/chat.py +++ b/continuedev/src/continuedev/steps/chat.py @@ -39,7 +39,7 @@ class AddFileStep(Step): file_contents: str async def describe(self, models: Models) -> Coroutine[Any, Any, Coroutine[str, None, None]]: - return f"Added a file named {self.filename} to the workspace." + return f"Added a file named `{self.filename}` to the workspace." async def run(self, sdk: ContinueSDK): try: @@ -58,7 +58,7 @@ class DeleteFileStep(Step): filename: str async def describe(self, models: Models) -> Coroutine[Any, Any, Coroutine[str, None, None]]: - return f"Deleted a file named {self.filename} from the workspace." + return f"Deleted a file named `{self.filename}` from the workspace." async def run(self, sdk: ContinueSDK): await sdk.delete_file(self.filename) @@ -70,7 +70,7 @@ class AddDirectoryStep(Step): directory_name: str async def describe(self, models: Models) -> Coroutine[Any, Any, Coroutine[str, None, None]]: - return f"Added a directory named {self.directory_name} to the workspace." + return f"Added a directory named `{self.directory_name}` to the workspace." async def run(self, sdk: ContinueSDK): try: @@ -85,7 +85,7 @@ class RunTerminalCommandStep(Step): command: str async def describe(self, models: Models) -> Coroutine[Any, Any, Coroutine[str, None, None]]: - return f"Ran the terminal command {self.command}." + return f"Ran the terminal command `{self.command}`." async def run(self, sdk: ContinueSDK): await sdk.wait_for_user_confirmation(f"Run the following terminal command?\n\n```bash\n{self.command}\n```") |