How can I change the default responses given by the chatbot
I have created a questions and answer chatbot through the Azure portal by utilizing Azure AI Language and Azure AI Bot service. After implementing it on my website through the BotFramework-WebChat package, I noticed that the chatbot has a set of specific default responses that I'm unable to configure.
Typical default responses are:
- Hello and welcome (at the start of the chat)
- Did you mean: (if the chatbot makes suggestions for prompts)
- None of the above. (if none of the suggestions were correct)
- Thank you for the feedback. (when selecting "None of the above.")
The interaction with my chatbot will primarily be through non-english language, so it's not a appropriate to serve my users snippet of language jumps during the conversation. Through extensive research, I only managed to change the welcome message by adding an environment variable in the app service, but I have been unable to change the default format of the other examples above.
I have not managed to find any documentation for configuring this issue, and only found the environment variable solution in an old Stackoverflow-post. Has anyone a solution for how I can move forward with this issue?