feat: conversation support show thought

This commit is contained in:
Joel
2024-01-29 13:33:15 +08:00
parent b62e34c6fa
commit 83695999ea
3 changed files with 31 additions and 2 deletions

View File

@ -15,6 +15,5 @@ export async function POST(request: NextRequest, { params }: {
// auto generate name
const { data } = await client.renameConversation(conversationId, name, user, auto_generate)
console.log(conversationId, name, user, auto_generate)
return NextResponse.json(data)
}