From 5f341d694a27df134749e50f6313629be4d52de5 Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 10 May 2026 12:10:07 +0530 Subject: [PATCH] Fix model to minimax-2.7 --- src/app/api/ai/route.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/api/ai/route.ts b/src/app/api/ai/route.ts index 28f9148..7f6cb9c 100644 --- a/src/app/api/ai/route.ts +++ b/src/app/api/ai/route.ts @@ -37,10 +37,10 @@ export async function POST(request: Request) { method: "POST", headers: { "Content-Type": "application/json", - Authorization: `Bearer ${LITELLM_KEY}`, + "Authorization": `Bearer ${LITELLM_KEY}`, }, body: JSON.stringify({ - model: "tiger-minimax", + model: "minimax-2.7", messages: [systemMessage, ...messages], max_tokens: 500, }),