@arizeai/phoenix-client
Version:
A client for the Phoenix API
10 lines • 419 B
TypeScript
import z from "zod";
/**
* Vercel AI SDK Tool Choice Schema
*/
export declare const vercelAIToolChoiceSchema: z.ZodUnion<readonly [z.ZodLiteral<"auto">, z.ZodLiteral<"none">, z.ZodLiteral<"required">, z.ZodObject<{
type: z.ZodLiteral<"tool">;
toolName: z.ZodString;
}, z.core.$strip>]>;
export type VercelAIToolChoice = z.infer<typeof vercelAIToolChoiceSchema>;
//# sourceMappingURL=toolChoiceSchemas.d.ts.map