From 3fd35f509fcfa7babca413e8a5a716ad7865222c Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 7 Feb 2026 17:03:43 +0100 Subject: [PATCH] Removed not necessary T param --- app/MindWork AI Studio/Settings/Provider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/MindWork AI Studio/Settings/Provider.cs b/app/MindWork AI Studio/Settings/Provider.cs index 35f7a1db..4fc51ad8 100644 --- a/app/MindWork AI Studio/Settings/Provider.cs +++ b/app/MindWork AI Studio/Settings/Provider.cs @@ -125,7 +125,7 @@ public sealed record Provider( var hfInferenceProvider = HFInferenceProvider.NONE; if (table.TryGetValue("HFInferenceProvider", out var hfInferenceProviderValue) && hfInferenceProviderValue.TryRead(out var hfInferenceProviderText)) { - if (!Enum.TryParse(hfInferenceProviderText, true, out hfInferenceProvider)) + if (!Enum.TryParse(hfInferenceProviderText, true, out hfInferenceProvider)) { LOGGER.LogWarning($"The configured provider {idx} does not contain a valid Hugging Face inference provider enum value."); hfInferenceProvider = HFInferenceProvider.NONE;