diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-15 09:46:19 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-15 09:46:19 -0700 |
commit | c9d008470fa4833fbbdb4e603787d4ab9de86900 (patch) | |
tree | 593fef9dd7a73294b488962cebd5898f10e6ba91 /continuedev | |
parent | 7a6c86453f0451b30cb14946c5a8171d79623e60 (diff) | |
download | sncontinue-c9d008470fa4833fbbdb4e603787d4ab9de86900.tar.gz sncontinue-c9d008470fa4833fbbdb4e603787d4ab9de86900.tar.bz2 sncontinue-c9d008470fa4833fbbdb4e603787d4ab9de86900.zip |
patch and gpt-4 as default model
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/core/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/core/config.py b/continuedev/src/continuedev/core/config.py index 93dae17e..8ebdc145 100644 --- a/continuedev/src/continuedev/core/config.py +++ b/continuedev/src/continuedev/core/config.py @@ -20,7 +20,7 @@ class ContinueConfig(BaseModel): server_url: Optional[str] = None allow_anonymous_telemetry: Optional[bool] = True default_model: Literal["gpt-3.5-turbo", - "gpt-4", "starcoder"] = 'gpt-3.5-turbo' + "gpt-4", "starcoder"] = 'gpt-4' slash_commands: Optional[List[SlashCommand]] = [ # SlashCommand( # name="pytest", |