UNPKG
@ebonydevcopy/framework
Version:
latest (4.0.0-alpha.30)
4.0.0-alpha.30
A module-based NodeJS chatbot framework.
chrispanag/ebony
@ebonydevcopy/framework
/
build
/
interfaces
/
nlp.d.ts
15 lines
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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