examples: use gpt-4o model by default

This commit is contained in:
Aleix Conchillo Flaqué
2024-05-30 14:38:13 -07:00
parent 5f45a9d90f
commit c507044277
15 changed files with 18 additions and 17 deletions

View File

@@ -229,7 +229,7 @@ class BaseOpenAILLMService(LLMService):
class OpenAILLMService(BaseOpenAILLMService):
def __init__(self, model="gpt-4", **kwargs):
def __init__(self, model="gpt-4o", **kwargs):
super().__init__(model, **kwargs)