Skip to content

Commit

Permalink
fix: switch recommended openai model to gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Aug 13, 2024
1 parent 94bade3 commit b3582ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gptme/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_model(model: str | None = None) -> ModelMeta:

def get_recommended_model(provider: str) -> str:
if provider == "openai":
return "gpt-4-turbo"
return "gpt-4o"
elif provider == "openrouter":
return "meta-llama/llama-3.1-70b-instruct"
elif provider == "anthropic":
Expand Down

0 comments on commit b3582ac

Please sign in to comment.