@arizeai/phoenix-client
Version:
A client for the Phoenix API
15 lines • 555 B
TypeScript
import z from "zod";
/**
* The Phoenix tool definition schema
*/
export declare const phoenixToolDefinitionSchema: z.ZodObject<{
type: z.ZodLiteral<"function">;
function: z.ZodObject<{
name: z.ZodString;
description: z.ZodOptional<z.ZodString>;
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
strict: z.ZodOptional<z.ZodBoolean>;
}, z.core.$strip>;
}, z.core.$strip>;
export type PhoenixToolDefinition = z.infer<typeof phoenixToolDefinitionSchema>;
//# sourceMappingURL=toolSchemas.d.ts.map