Azure Search
2 TopicsHow to use Cognitive built-in skills from Azure Webjob
My scenario is as follows: 1. We need to index documents from a Sharepoint Site, that Sharepoint site is outside our control, so basically we have an URL, username and password, and then with a REST API we can return for example all *.docx, all *.pdf files, download them, put them on blob storage, and then create a custom indexer webjob. 2. According to what I read, with the Azure Search SDK we can push documents to the index, that seems pretty straightforward. However what is not clear to me, its the following: 1. If I create a custom job that will work as an "indexer", then I wont see it in the portal and I wont abe able to plugin cognitive built-in skills or custom skills? Can I do this programmatically too>?773Views0likes0CommentsSearch Selected Documents with Azure Open AI BYOD Search
I have azure blob with 3 documents (Doc 1, Doc 2, Doc 3) and they are being search through azure open and azure search service which is working perfectly fine. But my requirement is to restrict my search to only Doc 2 and Doc 3. But m unable to find any option through which i can do this. How can this be done? Below is the sample body- { "dataSources": [ { "type": "AzureCognitiveSearch", "parameters": { "endpoint": "https://@@@@@@@@@@@@@.search.windows.net", "key": "@@@@@@@@@@@@@", "indexName": "abcd-index", "semanticConfiguration": "", "queryType": "simple", "fieldsMapping": { "contentFieldsSeparator": "\n", "contentFields": [ "content" ], "filepathField": null, "titleField": "title", "urlField": null }, "inScope": true, "roleInformation": "You are an AI assistant that helps people find information." } } ], "messages": [ { "role": "user", "content": "tell me about solution versioning" } ] }619Views0likes4Comments