(provider: unknown)
| 1 | export function webSearchProviderLabel(provider: unknown) { |
| 2 | if (provider === "parallel") return "Parallel Web Search" |
| 3 | if (provider === "exa") return "Exa Web Search" |
| 4 | return "Web Search" |
| 5 | } |
| 6 | |
| 7 | export function toolDisplayMetadata(state: unknown): Record<string, unknown> { |
| 8 | if (!state || typeof state !== "object" || Array.isArray(state)) return {} |
no outgoing calls
no test coverage detected