UNPKG

@ebonydevcopy/framework

Version:

A module-based NodeJS chatbot framework.

15 lines 296 B
export interface WitNLP { text: string; intents: WitIntentNLP[]; entities: any; } export interface WitEntityNLP { value: string; confidence: number; } export interface WitIntentNLP { id: string; name: string; confidence: number; } //# sourceMappingURL=nlp.d.ts.map