'use client'; import { StreamableValue, useStreamableValue } from '@ai-sdk/rsc'; export function BotMessage({ textStream }: { textStream: StreamableValue }) { const [text] = useStreamableValue(textStream); return {text}; } export function Message({ role, children, }: { role: string; children: React.ReactNode; }) { return (