import { z } from "zod" export const WebsearchProviderSchema = z.enum(["exa", "tavily"]) export const WebsearchConfigSchema = z.object({ /** * Websearch provider to use. * - "exa": Uses Exa websearch (default, works without API key) * - "tavily": Uses Tavily websearch (requires TAVILY_API_KEY) */ provider: WebsearchProviderSchema.optional(), }) export type WebsearchProvider = z.infer export type WebsearchConfig = z.infer