Forum Discussion
Create indexer - Can anyone help me please?
Hi everyone,
I'm trying to Create a Custom Skill for Azure AI Search, following the Labs below.
When I try to creat an indexer with "./create-search" command on PowerShell of Visual Studio Code, the error is returned (I'm using C#);
{"error":{"code":"","message":"This indexer refers to a skillset 'margies-custom-skillset' that doesn't exist"}}
Why does this happen? Where is the skillset 'margies-custom-skillset' stored?? Is there any hint to get this though? Access Keys (service, admin, storge) are correctly entered.
1 Reply
- radouane_moutchouCopper Contributor
Hi Yoshimi,
The solution to that issue is not related to C# or Python.
You have to create Azure AI services multi-service account.
and you modify the skillset.json :
"key" : The key that you got from (Azure AI services multi-service account)
"uri": is the endpoint of (Azure AI services multi-service account)
You can find the keys on the Keys and Endpoint page for your Azure AI Services multi-service account resource in the Azure portal.
I hope that can help