From 1bc5777ed168e47e2ef2ab1b33eecf6cbd170a61 Mon Sep 17 00:00:00 2001 From: Nate Sesti Date: Sun, 30 Jul 2023 22:07:41 -0700 Subject: fix: :children_crossing: use default model in default config.py --- continuedev/src/continuedev/libs/constants/default_config.py.txt | 7 ++----- 1 file 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:") -- cgit v1.2.3-70-g09d2