aquanet-bot-lib
Version:
A library for building aquaculture chatbots with LLM integration
10 lines (9 loc) • 374 B
TypeScript
import { LLMConfig, ILLMProvider } from '../types/llm';
export declare class LLMFactory {
private static providers;
static getProvider(config: LLMConfig): ILLMProvider;
private static createProvider;
static removeProvider(provider: string, model: string): void;
static clearProviders(): void;
static isProviderSupported(provider: string): boolean;
}