import { deriveToolCallSummary } from "../../utils/toolCall"; import styles from "./ToolCallBlock.module.css"; interface ToolCallBlockProps { content: string; } export function ToolCallBlock({ content }: ToolCallBlockProps) { return (
{deriveToolCallSummary(content)}
{content}
); }