Semantic Kernel - **Describe the bug** During Azure cognitive search search connection and search in the collection the vector embedding name cannot be configured.
## The fix
If Semantic Kernel's Azure AI Search connector fails with 'Unknown field Embedding in vector field list', it is because the connector assumes its own predefined schema. That works when SK created the index, but not when the index was created elsewhere (for example the Azure portal, where the vector field is contentVector). The maintainer's guidance: bypass the memory-store connector with a custom search plugin against your own schema (see the MyAzureAISearchPlugin sample), or wait for the new vector-store abstractions that accept any schema.
Thread: gh:microsoft/semantic-kernel#3014