import { MessageBlock, ToolCallBlock, } from "@/components/ui/message-components"; import { WebSearchCallItem } from "../utils/item-types"; interface WebSearchItemProps { item: WebSearchCallItem; index: number; keyPrefix: string; } export function WebSearchItemComponent({ item, index, keyPrefix, }: WebSearchItemProps) { const formattedWebSearch = `web_search_call(status: ${item.status})`; return ( {formattedWebSearch}} /> ); }