diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-04 13:56:38 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-04 13:56:38 -0700 |
commit | 4c51e14ae8fc19ff1c7552f060a59f21abf016c7 (patch) | |
tree | 5c9b950243559fc724556525f3f16e28da73ea71 /continuedev | |
parent | 67e70b868f63e20c2b0cae875993e267a5c32d5e (diff) | |
download | sncontinue-4c51e14ae8fc19ff1c7552f060a59f21abf016c7.tar.gz sncontinue-4c51e14ae8fc19ff1c7552f060a59f21abf016c7.tar.bz2 sncontinue-4c51e14ae8fc19ff1c7552f060a59f21abf016c7.zip |
insert at cursor, patch
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/steps/core/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/steps/core/core.py b/continuedev/src/continuedev/steps/core/core.py index 4ad47689..b9f0da35 100644 --- a/continuedev/src/continuedev/steps/core/core.py +++ b/continuedev/src/continuedev/steps/core/core.py @@ -174,7 +174,7 @@ class DefaultModelEditCodeStep(Step): name = await models.gpt3516k.complete(f"Write a very short title to describe this requested change (no quotes): '{self.user_input}'. This is the title:") self.name = self._cleanup_output(name) - return f"`{self.user_input}`\n\n{self._cleanup_output(description)}" + return f"{self._cleanup_output(description)}" async def get_prompt_parts(self, rif: RangeInFileWithContents, sdk: ContinueSDK, full_file_contents: str): # We don't know here all of the functions being passed in. |