Hello MK,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to delete the failed indexes created in Azure AI project.
If you can see the indexes in both AI studio and Azure portal, you can use the Azure Portal or the Azure Cognitive Search REST API.
- You can use tools like Postman or cURL to send the DELETE request using CURL:
curl -X DELETE "https://<service name>.search.windows.net/indexes/<index name>?api-version=<api-version>" -H "Content-Type: application/json" -H "api-key: <admin key>"
- Prepare the API Request TO USE Azure Cognitive Search REST API: Endpoint:
https://<service name>.search.windows.net/indexes/<index name>?api-version=<api-version>
Method:DELETE
Headers:- `Content-Type: application/json` - `api-key: <admin key>`
- Go to the Azure Portal and select your Azure AI Search resource - https://learn.microsoft.com/en-us/answers/questions/2006083/azure-ai-studio-how-to-delete-a-failed-vector-inde
- Or follow a similar thread from this community to achieve the purpose: https://learn.microsoft.com/en-us/answers/questions/1640538/how-to-delete-indexes-in-azure-ai-studio-preview
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.