Trying to use Integrated Vectorization Feature and when I am trying to create a debug session it says
Failed to create debug session "new-debug-session", error: "InvalidSkillset: One or more skills are invalid. Details: Unexpected properties found on Skill. Parameters: Debug.Skillset"
Will appreciate if someone can help here
Below is the Skillset Definition
{
"@odata.etag": "\"0x8DC1B4C66085E11\"",
"name": "rag-demo-skillset",
"description": null,
"skills": [
{
"@odata.type": "#Microsoft.Skills.Text.SplitSkill",
"name": "#1",
"description": null,
"context": "/document",
"defaultLanguageCode": "en",
"textSplitMode": "pages",
"maximumPageLength": 500,
"pageOverlapLength": 100,
"maximumPagesToTake": 0,
"inputs": [
{
"name": "text",
"source": "/document/content"
}
],
"outputs": [
{
"name": "textItems",
"targetName": "pages"
}
]
},
{
"@odata.type": "#Microsoft.Skills.Text.AzureOpenAIEmbeddingSkill",
"name": "#2",
"description": null,
"context": "/document/pages/*",
"apiKey": "74db5976e502430db186a2d8fd39fbc9",
"deploymentId": "text-embedding-ada-002",
"inputs": [
{
"name": "text",
"source": "/document/pages/*"
}
],
"outputs": [
{
"name": "embedding",
"targetName": "vector"
}
],
"authIdentity": null
}
],
"cognitiveServices": null,
"knowledgeStore": null,
"indexProjections": null,
"encryptionKey": null
}