summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--continuedev/src/continuedev/libs/constants/default_config.py.txt7
1 files changed, 2 insertions, 5 deletions
diff --git a/continuedev/src/continuedev/libs/constants/default_config.py.txt b/continuedev/src/continuedev/libs/constants/default_config.py.txt
index 7c7f495e..e40a2684 100644
--- a/continuedev/src/continuedev/libs/constants/default_config.py.txt
+++ b/continuedev/src/continuedev/libs/constants/default_config.py.txt
@@ -29,12 +29,9 @@ class CommitMessageStep(Step):
diff = subprocess.check_output(
["git", "diff"], cwd=dir).decode("utf-8")
- # Ask gpt-3.5-16k to write a commit message,
+ # Ask the LLM to write a commit message,
# and set it as the description of this step
- gpt3516k = OpenAI(model="gpt-3.5-turbo-0613")
- await sdk.start_model(gpt3516k)
-
- self.description = await gpt3516k.complete(
+ self.description = await sdk.models.default.complete(
f"{diff}\n\nWrite a short, specific (less than 50 chars) commit message about the above changes:")