Skip to content

Commit b3c27a6

Browse files
committed
Change default agent model back to gpt-4
1 parent 60b34c6 commit b3c27a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mindsdb_sdk/agents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def _create_model_if_not_exists(self, name: str, model: Union[Model, dict]) -> M
364364
'prompt_template': 'Answer the user"s question in a helpful way: {{question}}',
365365
# Use GPT-4 by default.
366366
'provider': 'openai',
367-
'model_name': 'gpt-3.5-turbo'
367+
'model_name': 'gpt-4'
368368
}
369369
if model is None:
370370
return self.models.create(

0 commit comments

Comments
 (0)