> For the complete documentation index, see [llms.txt](https://docs-convai.wavy.global/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-convai.wavy.global/tips-and-best-practices/why-is-my-bot-not-responding-the-way-i-want-it-to.md).

# Why is my bot not responding the way I want it to?

There are a couple of problems you might encounter as a starting bot developer. In this article you will learn how to find and fix problems with your bot.

## User asks a question, bot doesn't give the expected response

* Open the `Test your bot`  window and type the expression that returns an unexpected result.
* Go to the `NLP result` tab
* Check to see if an intent was detected with a confidence above the [threshold](/understanding-users/natural-language-processing-nlp/settings.md) (the default threshold is 80%).

### If an intent was detected with > 80% confidence

* Go to the bot dialogs table view
* Filter on the intent that was detected
* If there is no result for that intent, it means that your intent doesn't have an answer linked to it, which will mean the bot defaults to `not understood`.
  * **Solution:** configure an answer to  the intent by adding a new bot message, and linking the intent to it.
* If there is a bot dialog that has that intent linked to it, click on it&#x20;
  * **Solution:** configure the bot message linked to the intent and make sure it's aligned with how you want the bot to reply. Alternatively, if the intent should not be linked to that bot message, remove the link between bot dialog and intent and create a new bot dialog for that intent.

### If no intent was detected with > 80% confidence

* Check your NLP model. Does an intent already exist where this expression belongs to?
* If yes, add the expression to the model, click `Update NLP` and test your bot again.
* If no, create a new intent, add the expression and a few others like it to the new intent and update your NLP model.

{% hint style="info" %}
Make sure you follow our [NLP training best practices](/tips-and-best-practices/how-to-nlp.md) when creating new intents and expressions.
{% endhint %}

* Create a new bot dialog, link the intent to that bot dialog, and define an answer the bot should give as a reply to your new intent.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-convai.wavy.global/tips-and-best-practices/why-is-my-bot-not-responding-the-way-i-want-it-to.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
