You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This intent definition is not registered and there is no error logged by the DialogFlow connector.
intent SearchAnyValue {
inputs {
"VALUE"
"Search for VALUE"
}
creates context "Value" {
sets parameter "^value" from fragment "VALUE" (entity any)
}
}
Everything works fine if "^value" is replaced by "value". This is probably related to restricted characters in the DialogFlow API, but it should be logged as an error, because the deployed bot behavior will be corrupted.
The text was updated successfully, but these errors were encountered:
val whereDoYouWork = intent("Where do you work?")
.trainingSentence("Where do you work?")
.trainingSentence("Where are you located?")
.trainingSentence("Where is your office")
.trainingSentence("Where can I visit you?");
is another example, as DF doesn't seem to like the question mark (or the spaces)
This intent definition is not registered and there is no error logged by the DialogFlow connector.
Everything works fine if
"^value"
is replaced by"value"
. This is probably related to restricted characters in the DialogFlow API, but it should be logged as an error, because the deployed bot behavior will be corrupted.The text was updated successfully, but these errors were encountered: