skailan-conversations
Version:
Servicio de conversaciones y mensajería para Skailan
15 lines • 405 B
TypeScript
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