llm
Variable: llm
const llm: {
getModelConfig: (modelId?: string) => Promise<{
config: LLMModelConfig | null;
error?: string;
success: boolean;
}>;
inference: (params: LLMInferenceParams) => Promise<{
completion: LLMCompletion;
}>;
};
Defined in: packages/codeboltjs/src/modules/llm.ts:11
A module for interacting with language learning models (LLMs) via WebSocket.