Files
ai-utils/src/provider.ts
ztimson 7b57a0ded1
All checks were successful
Publish Library / Build NPM Project (push) Successful in 46s
Publish Library / Tag Version (push) Successful in 6s
Updated LLM config and added read_webpage
2026-02-01 13:16:08 -05:00

7 lines
215 B
TypeScript

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