UNPKG

aiwrapper

Version:

A Universal AI Wrapper for JavaScript & TypeScript

11 lines (10 loc) 277 B
export type PromptForObject = { title?: string; description?: string; instructions: string[]; objectExamples: object[]; content?: { [key: string]: string; }; }; export declare function buildPromptForGettingJSON(prompt: PromptForObject): string;