import { motion } from "framer-motion"; import ReactMarkdown from "react-markdown"; import { Badge } from "../ui/GlassCard"; interface Props { role: "user" | "assistant"; mode: string; content: string; streaming?: boolean; } export function MessageBubble({ role, mode, content, streaming }: Props) { return (
{mode} {content} {streaming && }
); }