UNPKG

@sap-ai-sdk/prompt-registry

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

21 lines 675 B
import { z } from 'zod'; /** * @internal **/ export declare const functionObjectSchema: z.ZodObject<{ description: z.ZodOptional<z.ZodString>; name: z.ZodString; parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>; strict: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>; }, "strip", z.ZodTypeAny, { name: string; description?: string | undefined; strict?: boolean | null | undefined; parameters?: Record<string, any> | undefined; }, { name: string; description?: string | undefined; strict?: boolean | null | undefined; parameters?: Record<string, any> | undefined; }>; //# sourceMappingURL=function-object.zod.d.ts.map