@arizeai/phoenix-client
Version:
A client for the Phoenix API
15 lines • 562 B
TypeScript
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