koenigst
koenigst
I use Babysmash to prevent my daughter from destroying my computer (she loves the windows key) while doing video calls. I missed an option to disable all sound output so...
We use the `databaseRoot` parameter of [`UseInMemoryDatabase`](https://github.com/dotnet/efcore/blob/0e2cb903ffcc8039df46cd1854638c92e168a145/src/EFCore.InMemory/Extensions/InMemoryDbContextOptionsExtensions.cs#L118) to provide test isolation when using the in-memory provider. Unfortunately setting this parameter leads to a huge performance overhead because the model is...
- Remove the DatabaseRoot from the InMemoryOptionsExtension service provider equality condition. - Remove the DatabaseRoot from the InMemorySingletonOptions. - Resolve the IInMemoryStore in a scoped service (IInMemoryStoreProvider) instead of a...
### Description Loading a [Microsoft Phi-4-mini-instruct](https://huggingface.co/microsoft/Phi-4-mini-instruct) ([4bit quantization](https://huggingface.co/unsloth/Phi-4-mini-instruct)) model fails with: `unknown pre-tokenizer type: 'gpt-4o'` This issue was already addressed in [llama.cpp b4792](https://github.com/ggml-org/llama.cpp/releases/tag/b4792). ### Reproduction Steps ```lang=csharp LLamaWeights.LoadFromFile(new ModelParams("Phi-4-mini-instruct-Q4_K_M.gguf")); ```...
Calling `UniqueID` in the `DefaultTestCaseDescriptorProvider` caused an exception when there were test method arguments that could not be serialized. The exception was silently dropped. This PR tries to improve error...