Files
ai-utils/src/provider.ts
ztimson 8dfcd06752
All checks were successful
Publish Library / Build NPM Project (push) Successful in 43s
Publish Library / Tag Version (push) Successful in 14s
More memory fixes
2026-07-29 22:11:09 -04:00

7 lines
197 B
TypeScript

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