import { ChatStoreMessage } from "@/types/chatstore"; interface Props { chat: ChatStoreMessage; copyToClipboard: (text: string) => void; } export function MessageToolResp({ chat, copyToClipboard }: Props) { return (
Tool Response ID:{" "} copyToClipboard(String(chat.tool_call_id))} > {chat.tool_call_id} {/* [TODO] */}

{chat.content as string}

); }