UNPKG

skailan-ai

Version:

Servicio de IA y procesamiento de lenguaje natural para Skailan

11 lines 357 B
export class GetLLMConfigById { llmConfigRepository; constructor(llmConfigRepository) { this.llmConfigRepository = llmConfigRepository; } async execute(request) { const { id, organizationId } = request; return this.llmConfigRepository.findById(id, organizationId); } } //# sourceMappingURL=GetLLMConfigById.js.map