bot framework - luis entity score is not available in luis v3.0

Mahesh C M 151 Reputation points
2020-08-26T13:16:08.273+00:00

Hi,
I am working with bot framework adaptive dialog. I have an issue in getting luis entity score while calling luis end point. I have migrated my luis to v3.0. Is there any property available to get the luis entity score in endpoint? I have given subscription key,query,verbose and show all intents property as the query strings in the endpoint. did i missed to set any property in the luis endpoint?

I really appreciate any help :)

Azure AI Bot Service
Azure AI Bot Service
An Azure service that provides an integrated environment for bot development.
779 questions
Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,582 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Showndarya Madhavan 336 Reputation points
    2020-08-26T13:39:30.513+00:00

    Hi @Mahesh C M ,

    This link should help you with the changes in request and response when migrating to v3.0: https://video2.skills-academy.com/en-us/azure/cognitive-services/luis/luis-migration-api-v3

    Hope this helps

    1 person found this answer helpful.
    0 comments No comments

  2. YutongTie-MSFT 48,001 Reputation points
    2020-08-28T21:12:58.84+00:00

    Hi,

    Thanks for reaching out to us. In V3, if you request the entity metadata, it should return as following:

      "entities":{
            "Destination":[
                "Yellow Bird Lane"
            ],
            "$instance":{
                "Destination": [
                    {
                        "role": "Destination",
                        "type": "Location",
                        "text": "Yellow Bird Lane",
                        "startIndex": 25,
                        "length":16,
                        "score": 0.9837309,
                        "modelTypeId": 1,
                        "modelType": "Entity Extractor"
                    }
                ]
            }
        }
    

    Let me know more information about how you are doing it so that I can help deeperly. Thanks.

    Regards,
    Yutong