import { NextResponse } from 'next/server' import { auth } from '@/auth' import prisma from '@/lib/prisma' export async function GET(req: Request) { try { const session = await auth() if (!session?.user?.id) { return new NextResponse('Unauthorized', { status: 401 }) } const conversations = await prisma.conversation.findMany({ where: { userId: session.user.id }, orderBy: { updatedAt: 'desc' }, take: 5, include: { messages: { orderBy: { createdAt: 'asc' } } } }) return NextResponse.json(conversations) } catch (error) { console.error('Error fetching chat history:', error) return new NextResponse('Internal Server Error', { status: 500 }) } }