> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-ak-docs-20-document-updating-variables-from-outsid.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Adding knowledge

Now that our bot has a custom prompt, let's try asking it a question:

<Frame>
  <img alt="Question" className="block dark:hidden" src="https://mintcdn.com/botpress-ak-docs-20-document-updating-variables-from-outsid/e8kcWWwkIMr2LAPw/tutorial/basics/first-steps/assets/question.png?fit=max&auto=format&n=e8kcWWwkIMr2LAPw&q=85&s=e324fc18b9c2856146747dd9be1187f6" width="1312" height="406" data-path="tutorial/basics/first-steps/assets/question.png" />

  <img alt="Question" className="hidden dark:block" src="https://mintcdn.com/botpress-ak-docs-20-document-updating-variables-from-outsid/e8kcWWwkIMr2LAPw/tutorial/basics/first-steps/assets/question-dark.png?fit=max&auto=format&n=e8kcWWwkIMr2LAPw&q=85&s=8622c9b89015dd44de12965147d5f45d" width="1312" height="406" data-path="tutorial/basics/first-steps/assets/question-dark.png" />
</Frame>

That's not very helpful. The bot couldn't answer the question because we haven't given it the store's opening hours. Let's add them:

1. Under **<Icon icon="book-open" /> Knowledge Bases**, select **Rich Text**.
2. Select the newly created rich text file.

This opens a blank text field. Copy and paste in the following text:

```txt wrap theme={null}
Monday-Friday: 10:00 AM to 6:00 PM
Saturday-Sunday: 11:00 AM to 3:00 PM
```

Now, let's try that same question again in the emulator:

<Frame>
  <img alt="Question with Knowledge Base" className="block dark:hidden" src="https://mintcdn.com/botpress-ak-docs-20-document-updating-variables-from-outsid/e8kcWWwkIMr2LAPw/tutorial/basics/first-steps/assets/question-with-kb.png?fit=max&auto=format&n=e8kcWWwkIMr2LAPw&q=85&s=9d3ca8742deaf0ebd433a8859051f20f" width="1312" height="340" data-path="tutorial/basics/first-steps/assets/question-with-kb.png" />

  <img alt="Question with Knowledge Base" className="hidden dark:block" src="https://mintcdn.com/botpress-ak-docs-20-document-updating-variables-from-outsid/e8kcWWwkIMr2LAPw/tutorial/basics/first-steps/assets/question-with-kb-dark.png?fit=max&auto=format&n=e8kcWWwkIMr2LAPw&q=85&s=5a49e77eaa299bdb0381bdeef7e182bd" width="1312" height="340" data-path="tutorial/basics/first-steps/assets/question-with-kb-dark.png" />
</Frame>

Much better! The bot was able to answer the question correctly.
