Skip to content

Commit

Permalink
feat: use gpt-4o as default model
Browse files Browse the repository at this point in the history
  • Loading branch information
mondaychen committed May 13, 2024
1 parent 1c8c4aa commit 68b7562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers/aiSdkUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function findBestMatchingModel(
if (!openAIKey && anthropicKey && !isAnthropicModel(result)) {
result = SupportedModels.Claude3Sonnet;
} else if (openAIKey && !anthropicKey && !isOpenAIModel(result)) {
result = SupportedModels.Gpt4Turbo;
result = SupportedModels.Gpt4O;
}
return result;
}
Expand Down

0 comments on commit 68b7562

Please sign in to comment.