Skip to content

Commit

Permalink
Fixed typo in model name from "gpt-4-turbo" to "gpt-4o" in openai-cli…
Browse files Browse the repository at this point in the history
…ent.ts
  • Loading branch information
yasuaki640 committed May 14, 2024
1 parent fde956b commit 12bec30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/openai-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export const fetchCompletion = async (
...(messageHistory ?? []),
{ role: "user", content: newMessage },
],
model: "gpt-4-turbo",
model: "gpt-4o",
});

0 comments on commit 12bec30

Please sign in to comment.