UNPKG

@ai-foundry/llm-sdk

Version:

This is just another SDK for the common LLM API providers.

10 lines (9 loc) 375 B
import { z } from 'zod'; export type JSONValue = null | string | number | boolean | JSONObject | JSONArray; export type JSONObject = { [key: string]: JSONValue; }; export type JSONArray = JSONValue[]; export declare const stringSchema: z.ZodString; export declare const jsonValueSchema: z.ZodType<JSONValue>; export declare const jsonObjectSchema: z.ZodType<JSONObject>;