UNPKG

daggerai

Version:

A simple and powerful Typescript based agent framework to help businesses thrive in the AI Agent revolution.

10 lines 271 B
export interface LLMParams { model: string; maxTokens?: number; } export interface LLM { invoke(prompt: string): Promise<string>; } export declare const llmModels: string[]; export type LLMModel = (typeof llmModels)[number]; //# sourceMappingURL=base.d.ts.map