@monsoft/davinci-ai
Version:
Davinci AI Client
16 lines (15 loc) • 403 B
TypeScript
import z from 'zod';
export declare const configSchema: z.ZodObject<{
host: z.ZodOptional<z.ZodString>;
api_key: z.ZodString;
auth_token: z.ZodString;
}, "strip", z.ZodTypeAny, {
api_key: string;
auth_token: string;
host?: string | undefined;
}, {
api_key: string;
auth_token: string;
host?: string | undefined;
}>;
export type Config = z.input<typeof configSchema>;