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 | b7d1c2ffe7aef8f28cdcf504261dde5594fe84e5 (patch) | |
tree | e93723a0274306f56a4a2e261601d3dc4a7e6fc0 /continuedev/src | |
parent | 4b1d10f3bae1f1c80ecf74993f18f318c7b22b7f (diff) | |
download | sncontinue-b7d1c2ffe7aef8f28cdcf504261dde5594fe84e5.tar.gz sncontinue-b7d1c2ffe7aef8f28cdcf504261dde5594fe84e5.tar.bz2 sncontinue-b7d1c2ffe7aef8f28cdcf504261dde5594fe84e5.zip |
insert at cursor, patch
Diffstat (limited to 'continuedev/src')
-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. |