import Chat from '@/app/components/base/chat/chat' import { useChat } from '@/app/components/base/chat/chat/hooks' const ChatWrapper = () => { const { handleStop, isResponsing, suggestedQuestions, } = useChat() return ( {}} onStopResponding={handleStop} chatNode={(
)} allToolIcons={{}} suggestedQuestions={suggestedQuestions} /> ) } export default ChatWrapper