From 438f901c7434bb13b9ace9ae0298d04fa863b78d Mon Sep 17 00:00:00 2001 From: Visharad Kashyap <154831195+vishxrad@users.noreply.github.com> Date: Tue, 14 Apr 2026 15:50:47 +0530 Subject: [PATCH] Update model version to gpt-5.4-mini --- examples/hands-on-table-chat/src/app/api/chat/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hands-on-table-chat/src/app/api/chat/route.ts b/examples/hands-on-table-chat/src/app/api/chat/route.ts index c4e3758c7..aad93ada4 100644 --- a/examples/hands-on-table-chat/src/app/api/chat/route.ts +++ b/examples/hands-on-table-chat/src/app/api/chat/route.ts @@ -203,7 +203,7 @@ export async function POST(req: NextRequest) { /* eslint-disable @typescript-eslint/no-explicit-any */ const runner = (client.chat.completions as any).runTools({ - model: process.env.OPENAI_MODEL || "gpt-4o", + model: process.env.OPENAI_MODEL || "gpt-5.4-mini", messages: chatMessages, tools, stream: true,