diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-01 23:37:22 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-01 23:37:22 -0700 |
commit | 6d7507e6a71efaa5c3d9795b6e2ea97634674fe2 (patch) | |
tree | 118d07211b152a64f2cb308acbdcbf752d84e854 | |
parent | dc2b90d848f5fc53a18ad481ba196ac9708de8ec (diff) | |
download | sncontinue-6d7507e6a71efaa5c3d9795b6e2ea97634674fe2.tar.gz sncontinue-6d7507e6a71efaa5c3d9795b6e2ea97634674fe2.tar.bz2 sncontinue-6d7507e6a71efaa5c3d9795b6e2ea97634674fe2.zip |
escape curly braces
-rw-r--r-- | continuedev/src/continuedev/libs/constants/default_config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/libs/constants/default_config.py b/continuedev/src/continuedev/libs/constants/default_config.py index 9d6d4270..ebdd0cb8 100644 --- a/continuedev/src/continuedev/libs/constants/default_config.py +++ b/continuedev/src/continuedev/libs/constants/default_config.py @@ -42,7 +42,7 @@ class CommitMessageStep(Step): # Ask the LLM to write a commit message, # and set it as the description of this step self.description = await sdk.models.default.complete( - f"{diff}\n\nWrite a short, specific (less than 50 chars) commit message about the above changes:") + f"\{diff\}\n\nWrite a short, specific (less than 50 chars) commit message about the above changes:") config = ContinueConfig( |