Home > OS >  Why Azure Web app Bot gives wrong answer?
Why Azure Web app Bot gives wrong answer?

Time:11-21

i've created a Web app Bot for Q&A on Azure, following those steps:

  • created a new project and filled the Q&A knowledge base con enter image description here

    i've tested it also from the Bot Framework Emulator, downloading the source code generated by Azure, and i have the same result. Obviously it is the same also in the chatbot integrated in an actual webapp. If the answer is just a simple, single line one, i don't see any problem. Also, if i try to do the same test in Language Studio i get the correct response.

    The answer i expect is actually only the second part.

    I noticed that when i test the bot from "Test in Web Chat" in Azure Portal, the request is being done to the endpoint

    enter image description here

    CodePudding user response:

    I've got it working..

    The behaviour i was seeing seems very likely to be a bug, but there is at lease a workaround.

    If i go to the related app service configurations, and set EnablePreciseAnswer fo false everything works fine

  • Related