mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-22 20:42:24 +00:00
28 lines
634 B
TypeScript
28 lines
634 B
TypeScript
import {
|
|
MessageBlock,
|
|
ToolCallBlock,
|
|
} from "@/components/chat-playground/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 (
|
|
<MessageBlock
|
|
key={`${keyPrefix}-${index}`}
|
|
label="Function Call"
|
|
labelDetail="(Web Search)"
|
|
content={<ToolCallBlock>{formattedWebSearch}</ToolCallBlock>}
|
|
/>
|
|
);
|
|
}
|