'use client'; import { cn } from '@/lib/utils'; import { ChatList } from '@/components/chat/ChatList'; import { ChatPanel } from '@/components/chat/ChatPanel'; import { ChatScrollAnchor } from '@/components/chat/ChatScrollAnchor'; import { ChatEntity } from '@/lib/types'; import Image from 'next/image'; import useVisionAgent from '@/lib/hooks/useVisionAgent'; export interface ChatProps extends React.ComponentProps<'div'> { chat: ChatEntity; } export function Chat({ chat }: ChatProps) { const { url, id } = chat; const { messages, append, reload, stop, isLoading, input, setInput } = useVisionAgent(chat); return ( <>
{url}
); }