@arizeai/phoenix-client
Version:
A client for the Phoenix API
12 lines • 436 B
TypeScript
import type z from "zod";
export declare const phoenixToolCallSchema: z.ZodObject<{
type: z.ZodLiteral<"tool_call">;
tool_call_id: z.ZodString;
tool_call: z.ZodObject<{
type: z.ZodLiteral<"function">;
name: z.ZodString;
arguments: z.ZodString;
}, z.core.$strip>;
}, z.core.$strip>;
export type PhoenixToolCall = z.infer<typeof phoenixToolCallSchema>;
//# sourceMappingURL=toolCallSchemas.d.ts.map