An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
It seems you've to expand the datasources parameter in the payload, below is an example:
"dataSources": [
{
"type": "AzureCognitiveSearch",
"parameters": {
"endpoint": "https://mysearchexample.search.windows.net",
"key": "***(admin key)",
"indexName": "my-chunk-index",
"fieldsMapping": {
"titleField": "productName",
"urlField": "productUrl",
"filepathField": "productFilePath",
"contentFields": [
"productDescription"
],
"contentFieldsSeparator": "\n"
},
"topNDocuments": 5,
"queryType": "semantic",
"semanticConfiguration": "defaultConfiguration",
"inScope": true,
"roleInformation": "roleInformation"
}