@arizeai/phoenix-client
Version:
A client for the Phoenix API
36 lines • 921 B
TypeScript
import 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;
}, "strip", z.ZodTypeAny, {
type: "function";
name: string;
arguments: string;
}, {
type: "function";
name: string;
arguments: string;
}>;
}, "strip", z.ZodTypeAny, {
tool_call: {
type: "function";
name: string;
arguments: string;
};
type: "tool_call";
tool_call_id: string;
}, {
tool_call: {
type: "function";
name: string;
arguments: string;
};
type: "tool_call";
tool_call_id: string;
}>;
export type PhoenixToolCall = z.infer<typeof phoenixToolCallSchema>;
//# sourceMappingURL=toolCallSchemas.d.ts.map