Files
oh-my-opencode/dist/config/schema/websearch.d.ts
T
2026-03-14 04:56:50 +00:00

14 lines
439 B
TypeScript

import { z } from "zod";
export declare const WebsearchProviderSchema: z.ZodEnum<{
exa: "exa";
tavily: "tavily";
}>;
export declare const WebsearchConfigSchema: z.ZodObject<{
provider: z.ZodOptional<z.ZodEnum<{
exa: "exa";
tavily: "tavily";
}>>;
}, z.core.$strip>;
export type WebsearchProvider = z.infer<typeof WebsearchProviderSchema>;
export type WebsearchConfig = z.infer<typeof WebsearchConfigSchema>;