UNPKG

@arizeai/phoenix-client

Version:
15 lines 562 B
import z from "zod"; /** * Phoenix response format schema */ export declare const phoenixResponseFormatSchema: z.ZodObject<{ type: z.ZodLiteral<"json_schema">; json_schema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional<z.ZodString>; schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>; strict: z.ZodOptional<z.ZodBoolean>; }, z.core.$strip>; }, z.core.$strip>; export type PhoenixResponseFormat = z.infer<typeof phoenixResponseFormatSchema>; //# sourceMappingURL=responseFormatSchema.d.ts.map