Skip to content

Commit

Permalink
Merge pull request RasaHQ#8566 from RasaHQ/fix-doc-typos
Browse files Browse the repository at this point in the history
Fix typos in fallback-handoff.mdx
  • Loading branch information
Maxime Vdb authored Apr 28, 2021
2 parents cd62d41 + 12d6814 commit 98666b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/fallback-handoff.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class ActionDefaultFallback(Action):
dispatcher.utter_message(text="I am passing you to a human...")
# assume there's a function to call customer service
# pass the tracker so that the agent has a record of the converstation between the user
# pass the tracker so that the agent has a record of the conversation between the user
# and the bot for context
call_customer_service(tracker)
Expand All @@ -331,9 +331,9 @@ class ActionDefaultFallback(Action):
:::caution Events Returned By A Custom Ultimate Fallback Action
You should include `UserUtteranceReverted()` as one of the events returned by your custom
`action_default_fallback`. Not including this event will cause the tracker to include all events that happened
during the Two-Stage Fallback process which could intefere with subsequent action predictions from the bot's policy
pipeline. It is better to treat events that occured during the Two-Stage Fallback process as if they did not happen
so that your bot can apply its rules or memorised stories to correctly predict the next action.
during the Two-Stage Fallback process which could interfere with subsequent action predictions from the bot's policy
pipeline. It is better to treat events that occurred during the Two-Stage Fallback process as if they did not happen
so that your bot can apply its rules or memorized stories to correctly predict the next action.
:::


Expand Down

0 comments on commit 98666b1

Please sign in to comment.