organization ยท inferred from evidence
microsoft
The organization maintaining the Semantic Kernel repository.
- .Net: System.InvalidOperationException: Collection was modified; enumeration operation may not execute from...
The 'Collection was modified; enumeration operation may not execute' error from Semantic Kernel on .NET was a runtime-version problem: the reporter was on .NET Core 3.1, which is out of support. On .NET 6, 7, or 8, mutating the dictionary i
- .Net: AzureCognitiveSearchMemoryRecord EmbeddingField is not configurable
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 create
- Sample Code: OpenAI service failed to complete the prompt, APIConnectionError issue with Python 3.10
A practical guide for Semantic Kernel. Semantic Kernel Python sample failing with APIConnectionError / SSL certificate verify errors on macOS: the bundled Python install lacks the system CA certs. Fix: run the Install Certificates command f
- [Regression]: Can't call test.use() inside a describe() suite of a different test
A practical guide for Playwright. Playwright 1.42 turned mixing test instances into an error: 'Can't call test.use() inside a describe() suite of a different test type'. This was an intentional change (documented as a breaking change after
- [Bug]: Playwright driver CDN responds with HTTP 400, `GatewayExceptionResponse`
Teaches how to [Bug]: Playwright driver CDN responds with HTTP 400, `GatewayExceptionResponse`. Based on a real issue report and its verified fix.
- AZ CLI 2.71.x breaks bicep deployments when using Azure Devops Agent
Teaches how to aZ CLI 2.71.x breaks bicep deployments when using Azure Devops Agent. Based on a real issue report and its verified fix.
- ๐ BUG: Received structured exception #0xc0000005: access violation;
On Windows this access-violation crash is fixed by updating the Microsoft Visual C++ Redistributable (x64), for example with winget. Multiple reporters confirmed the update resolved it.
- AndrewMultilingualNeural en-US says the wrong word when only one word to speech.
[LinZhang-Support (commenter)]: This was a backend bug on Microsoft's side, not your code: single-word synthesis with AndrewMultilingualNeural (en-US) clipped the first letter. It was fixed with an updated voice model, first in eastus, with
- Azure Cognitive Search: SearchResourceEncryptionKey raises 'not iterable' error during data source connection...
Covers this Azure AI Search problem: Azure Cognitive Search: SearchResourceEncryptionKey raises 'not iterable' error during data source connection.... This was a bug in azure-search-documents 11.6.0b4: SearchResourceEncryptionKey raised a '
- Playwright VS Code extension shows 'no tests have been found' and connect ETIMEDOUT on the IPv6 loopback
The extension talks to its language server over the IPv6 loopback, and a Node.js DNS regression broke that path: the c-ares fallback detection did not recognize the loopback address as a loopback DNS server on Windows, so the connection tim
- MGT React PeoplePicker throws `Cannot use 'in' operator` when `selectedPeople` starts as null
How to fix microsoft graph: mgt react peoplepicker throws `cannot use 'in' operator` when `selectedpeople` starts as null.
- Semantic Kernel Python + Azure OpenAI o3: Unsupported parameter max_tokens, use max_completion_tokens
Configure `max_completion_tokens` instead of `max_tokens`: in SK Python, `OpenAIChatPromptExecutionSettings` (the base class for OpenAI prompt execution settings) has a `max_completion_tokens` attribute, and the child `AzureChatPromptExecut
- Semantic Kernel .NET can't call Azure OpenAI o1/o3-mini: Model o1 is enabled only for api versions 2024-12-01-preview
The o1/o3-mini models need Azure OpenAI API version 2024-12-01-preview or later. The workaround in the thread is a custom HttpClient handler (AzureOverrideHandler) passed to the connector to override the API version (and the max_completion_
- Argo CD repo-server fails against Azure DevOps: ssh-rsa deprecation
Azure DevOps throttles ssh-rsa connections and Argo CD repo-server stops pulling repos. Upgrade to 2.10.9, 2.9.14, or 2.8.18 for rsa-sha2-256/512 support, or switch to HTTPS as a workaround.