Skip to content

Commit

Permalink
missing links
Browse files Browse the repository at this point in the history
  • Loading branch information
indam23 committed Aug 30, 2020
1 parent 75a1363 commit 661b6d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/docs/business-logic.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ User: Yes
This type of behavior can and should be handled in a rule based way, as it
is clear how this information should be collected.
This page is a guide on handling business logic.
It uses abbreviated examples from the `formbot` example bot. See the github repo for the [full source code]().
It uses abbreviated examples from the `formbot` example bot. See the github repo for the [full source code](https://github.com/RasaHQ/rasa/tree/master/examples/formbot).
Adapt the example
described in this guide to build an assistant that can handle a conversation
like the one above, or apply the guidelines to your own use case.
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/contextual-conversations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This page is a guide to achieving contextual conversation patterns.
### Stories
While [rules](rules.mdx) are good at defining specific conversation turns, for a truly contextual
assistant you need to include [stories](). Stories are used to train the [`MemoizationPolicy`](policies.mdx#memoizationpolicy) and machine
assistant you need to include [stories](writing-stories.mdx). Stories are used to train the [`MemoizationPolicy`](policies.mdx#memoizationpolicy) and machine
learning policies like the [`TEDPolicy`](policies.mdx#tedpolicy). For example, in order for Sara to respond differently for new users
and users with previous experience, you'd need stories like this:

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/reaching-out-to-user.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This page is a guide to enabling your assistant to reach out to the user proacti
### Reaching out first

To have your assistant reach out to the user at the beginning of a conversation,
configure your [messaging or voice channel]() to send a payload to the bot that
configure your [messaging or voice channel](messaging-and-voice-channels.mdx) to send a payload to the bot that
will trigger the appropriate response. For example, in Sara, the Rasa bot, when a
user opens the chat window, the chat widget sends the payload `/greet`, so that
Sara greets the user with a welcome message. How you send the initial payload
Expand Down

0 comments on commit 661b6d1

Please sign in to comment.