summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--continuedev/src/continuedev/core/sdk.py2
-rw-r--r--continuedev/src/continuedev/steps/chat.py8
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```")