This commit is contained in:
unknown 2025-08-19 16:42:50 +07:00
parent 5e4525e979
commit e63f0bc7a7
242 changed files with 22660 additions and 5953 deletions

View file

@ -0,0 +1,21 @@
import { type NextRequest } from 'next/server';
import { NextResponse } from 'next/server';
import { client, getInfo } from '@/app/api/utils/common';
export async function POST(
request: NextRequest,
{
params
}: {
params: { conversationId: string };
}
) {
const body = await request.json();
const { auto_generate, name } = body;
const { conversationId } = params;
const { user } = getInfo(request);
// auto generate name
const { data } = await client.renameConversation(conversationId, name, user, auto_generate);
return NextResponse.json(data);
}