Files
ai-utils/src/provider.ts
ztimson cda7db4f45
All checks were successful
Publish Library / Build NPM Project (push) Successful in 30s
Publish Library / Tag Version (push) Successful in 5s
Added memory system
2026-02-08 19:52:02 -05:00

7 lines
209 B
TypeScript

import {AbortablePromise} from './ai.ts';
import {LLMMessage, LLMRequest} from './llm.ts';
export abstract class LLMProvider {
abstract ask(message: string, options: LLMRequest): AbortablePromise<string>;
}