UNPKG

easy_shell_agent

Version:

nodejs ai agent

20 lines (19 loc) 474 B
import { AiClientBase } from './AiClientBase'; export declare class OllamaClient extends AiClientBase { constructor(option: any); chat(option: any): Promise<{ id: string; object: string; created: number; model: any; choices: { message: { content: any; }; index: number; logprobs: any; finish_reason: string; }[]; usage: {}; }>; }