UNPKG

skailan-conversations

Version:

Servicio de conversaciones y mensajería para Skailan

15 lines 405 B
interface DetectIntentWithAIRequest { organizationId: string; text: string; promptName: string; llmConfigName: string; } interface IntentDetectionResponse { intent: string; confidence: number; } export declare class DetectIntentWithAI { execute(request: DetectIntentWithAIRequest): Promise<IntentDetectionResponse>; } export {}; //# sourceMappingURL=DetectIntentWithAI.d.ts.map