Skip to content

Commit

Permalink
fix(nlu): slots can have multiple entities
Browse files Browse the repository at this point in the history
  • Loading branch information
slvnperron committed Apr 28, 2019
1 parent df5e5e7 commit c64bddc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bp/sdk/botpress.d.ts
Expand Up @@ -331,7 +331,7 @@ declare module 'botpress/sdk' {

export interface SlotDefinition {
name: string
entity: string
entities: string[]
}

export interface IntentDefinition {
Expand Down Expand Up @@ -375,6 +375,7 @@ declare module 'botpress/sdk' {
name: string
value: any
entity: Entity
confidence: number
}

export interface SlotCollection {
Expand Down

0 comments on commit c64bddc

Please sign in to comment.