@arizeai/phoenix-client
Version:
A client for the Phoenix API
23 lines (19 loc) • 638 B
text/typescript
import z from "zod";
import type { PromptResponseFormat } from "../../../types/prompts";
import { schemaMatches } from "../../../utils/schemaMatches";
/**
* Phoenix response format schema
*/
export const phoenixResponseFormatSchema =
schemaMatches<PromptResponseFormat>()(
z.object({
type: z.literal("json_schema"),
json_schema: z.object({
name: z.string(),
description: z.string().optional(),
schema: z.record(z.string(), z.unknown()).optional(),
strict: z.boolean().optional(),
}),
})
);
export type PhoenixResponseFormat = z.infer<typeof phoenixResponseFormatSchema>;