@directus/api
Version:
Directus is a real-time API and App dashboard for managing SQL database content
24 lines (23 loc) • 755 B
TypeScript
import { z } from 'zod';
export declare const ProviderTypeSchema: z.ZodEnum<{
openai: "openai";
anthropic: "anthropic";
google: "google";
"openai-compatible": "openai-compatible";
}>;
export declare const ProviderOpenAi: z.ZodObject<{
provider: z.ZodLiteral<"openai">;
model: z.ZodString;
}, z.core.$strip>;
export declare const ProviderAnthropic: z.ZodObject<{
provider: z.ZodLiteral<"anthropic">;
model: z.ZodString;
}, z.core.$strip>;
export declare const ProviderGoogle: z.ZodObject<{
provider: z.ZodLiteral<"google">;
model: z.ZodString;
}, z.core.$strip>;
export declare const ProviderOpenAiCompatible: z.ZodObject<{
provider: z.ZodLiteral<"openai-compatible">;
model: z.ZodString;
}, z.core.$strip>;