UNPKG

skailan-ai

Version:

Servicio de IA y procesamiento de lenguaje natural para Skailan

13 lines 496 B
import { LLMConfig } from '../../domain/entities/LLMConfig'; import { ILLMConfigRepository } from '../../domain/repositories/ILLMConfigRepository'; interface GetLLMConfigByIdRequest { id: string; organizationId: string; } export declare class GetLLMConfigById { private llmConfigRepository; constructor(llmConfigRepository: ILLMConfigRepository); execute(request: GetLLMConfigByIdRequest): Promise<LLMConfig | null>; } export {}; //# sourceMappingURL=GetLLMConfigById.d.ts.map