UNPKG

@sconedev/ai_toolkit

Version:

Simplify AI integration in web apps with local and offline model support

6 lines (5 loc) 194 B
export interface LocalChatMessage { role: 'user' | 'assistant' | 'system'; content: string; } export declare function chat(messages: LocalChatMessage[], options?: any): Promise<string>;