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
Currently NLP drivers receive only the message sent by a user. In more advanced NLP cases, it would be helpful to also have the reply the bot sent to the user for context.
Additionally, there should be a way for NLP drivers to be able to access all potential intent and entity matches. For example, given this handle_message() block:
handle_message(:yes=>proc{step_tostate: :say_proceed},'Remind me later'=>proc{step_tostate: :say_no_problem},:no=>proc{step_tostate: :say_goodbye},:call=>proc{step_tostate: :ask_when_to_call})
The NLP helper should be able to access all hash keys arguments. That would be [:yes, "Remind me later", :no, :call]
The text was updated successfully, but these errors were encountered:
Currently NLP drivers receive only the message sent by a user. In more advanced NLP cases, it would be helpful to also have the reply the bot sent to the user for context.
Additionally, there should be a way for NLP drivers to be able to access all potential intent and entity matches. For example, given this
handle_message()
block:The NLP helper should be able to access all hash keys arguments. That would be
[:yes, "Remind me later", :no, :call]
The text was updated successfully, but these errors were encountered: