diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-02 00:11:12 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-02 00:11:12 -0700 |
commit | 017b37fc315cf05ec848cbaf300503bee6ffac8f (patch) | |
tree | 2869990a9cef1d5000c8a46ebb29df42cc7832ef /continuedev | |
parent | 45bf86caae1ca1093820466e0bc41b8d0ed7fa66 (diff) | |
download | sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.tar.gz sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.tar.bz2 sncontinue-017b37fc315cf05ec848cbaf300503bee6ffac8f.zip |
docs update and fix default_config.py
Diffstat (limited to 'continuedev')
-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 ebdd0cb8..d10844c3 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( |