So, I am pretty new when it comer to the development os AI's, principally with Microsoft Azure's tools. I was using Azure's QnA Maker Preview to develop a FAQ bot. But just today, Microsoft released a huuuuge update, making this servisse much more powerful, adding, together with other new features, the concept of metadata. I understood that it is supposed to make your system more powerful, fast and intelligent, but I didn't understand how it should be used and what exactly it does. Can anyone help me to understand this new tool? Thanks!
Asked
Active
Viewed 2,784 times
3 Answers
2
You can use metadata as a key value pair collection to differentiate questions. For example ‘categories’. You can then use these when you query generateAnswer endpoint to filter your matches. Check out the v3 generateAnswer api documentation for an example post payload.

Phil
- 2,315
- 2
- 18
- 26
1
you can use Meta Data in Generate Answer Api to get answer from specific data source
e.g
json { "question": "How are you", "top": 6, "strictFilters": [ { "name": "category", "value": "api" }], "userId": "sd53lsY=" }

Shahid Islam
- 559
- 3
- 7
0
You can find more details at links - QnAMaker - Add Metadata and QnAMaker - V3.0

Community
- 1
- 1

SaurabhSharma
- 898
- 1
- 5
- 9
-
4I know how to add the metadata, but I didn't get how it works, even after seeing these links... – Pedro Martins de Souza May 08 '18 at 15:22