UNPKG

@nomyx/assistant

Version:

A powerful assistant library and cli for your AI projects. works with Vertex AI (Claude and Gemini)

13 lines (12 loc) 270 B
export interface OpenAIFunctionSchema { name: string; description: string; parameters: { type: 'object'; properties: Record<string, { type: string; description: string; }>; required: string[]; }; }