"use client"; import type { UIMessage } from "ai"; import { Message } from "./Message"; type ThreadProps = { messages: UIMessage[]; isLoading: boolean; children?: React.ReactNode; }; function ThreadWelcome() { return (
Send a message to start a conversation.