'use client' import { useChat, type Message } from 'ai/react' import { cn } from '@/lib/utils' import { ChatList } from '@/components/chat-list' import { ChatPanel } from '@/components/chat-panel' import { EmptyScreen } from '@/components/empty-screen' import { ChatScrollAnchor } from '@/components/chat-scroll-anchor' import { toast } from 'react-hot-toast' import { usePatchFetch } from '@/lib/hooks/use-patch-fetch' export interface ChatProps extends React.ComponentProps<'div'> { initialMessages?: Message[] id?: string } export function Chat({ id, initialMessages, className }: ChatProps) { usePatchFetch() const { messages, append, reload, stop, isLoading, input, setInput, setMessages } = useChat({ initialMessages, id, body: { id }, onResponse(response) { if (response.status === 401) { toast.error(response.statusText) } } }) return ( <>