From 4e9935cb746c5d494c084c4654d969a96bf38f8f Mon Sep 17 00:00:00 2001 From: Mannu Date: Sun, 10 May 2026 11:49:08 +0530 Subject: [PATCH] Fix AI model to minimax/Abab7.5-chat --- src/app/api/ai/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/ai/route.ts b/src/app/api/ai/route.ts index 4c9a3b1..9974563 100644 --- a/src/app/api/ai/route.ts +++ b/src/app/api/ai/route.ts @@ -48,7 +48,7 @@ export async function POST(request: Request) { Authorization: `Bearer ${LITELLM_API_KEY}`, }, body: JSON.stringify({ - model: "minimax-m2.7", + model: "minimax/Abab7.5-chat", messages: allMessages, max_tokens: 500, }),