Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 06fc2d4

Browse files
authored
Merge pull request #17 from aleksa-codes/upgrade-openai-model
Upgrade to gpt-4o model
2 parents 7a392b0 + d45b08f commit 06fc2d4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/api/assistants/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export async function POST() {
77
const assistant = await openai.beta.assistants.create({
88
instructions: "You are a helpful assistant.",
99
name: "Quickstart Assistant",
10-
model: "gpt-4-turbo",
10+
model: "gpt-4o",
1111
tools: [
1212
{ type: "code_interpreter" },
1313
{

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"next": "14.1.4",
13-
"openai": "^4.38.1",
13+
"openai": "^4.46.0",
1414
"react": "^18",
1515
"react-dom": "^18",
1616
"react-markdown": "^9.0.1"

0 commit comments

Comments
 (0)