While trying to update the connection-string for blob storage account in azure ai search service custom skillset which is created by azure ai studio to chunk the documents into smaller pieces, I am getting an error stating:
"Account URL must be string"
The custom skillset calls the following API :
https://XXX.openai.azure.com/openai/preprocessing-jobs?api-version=2023-03-31-preview
{ "@odata.context": "https://XXX.search.windows.net/$metadata#skillsets/$entity", "@odata.etag": "\"0x8DBF6FC3E7A5DE7\"", "name": "openai-chat-skillset", "description": null, "skills": [ { "@odata.type": "#Microsoft.Skills.Custom.WebApiSkill", "name": "openai-chat-skillset", "description": null, "context": "/document/content", "uri": "https://XXX.openai.azure.com/openai/preprocessing-jobs?api-version=2023-03-31-preview", "httpMethod": "POST", "timeout": "PT1M", "batchSize": 10, "degreeOfParallelism": 10, "inputs": [ { "name": "document_id", "source": "/document/document_id" }, { "name": "filename", "source": "/document/filename" }, { "name": "fieldname", "source": "='content'" }, { "name": "text", "source": "/document/content" }, { "name": "url", "source": "/document/url" } ], "outputs": [ { "name": "recordId", "targetName": "recordId" } ], "httpHeaders": { "original_request_id": "openai-chat", "original_internal_id": "original_internal_id", "num_tokens": "1024", "api-key": "API_KEY", "connection_string": "BlobEndpoint=https://XXX.blob.core.windows.net/;SharedAccessSignature=?...", "container_name": "openai-chat-chunks" } } ], "cognitiveServices": null, "knowledgeStore": null, "indexProjections": null, "encryptionKey": null }