diff --git a/app/MindWork AI Studio/Dialogs/ProviderDialog.razor b/app/MindWork AI Studio/Dialogs/ProviderDialog.razor
index 972bab43..9d6e6d41 100644
--- a/app/MindWork AI Studio/Dialogs/ProviderDialog.razor
+++ b/app/MindWork AI Studio/Dialogs/ProviderDialog.razor
@@ -73,33 +73,49 @@
Please double-check if your model name matches the curl specifications provided by the inference provider. If it doesn't, you might get a Not Found error when trying to use the model. Here's a curl example.
}
-
- @if (this.DataLLMProvider.IsLLMModelProvidedManually())
- {
- Show available models
-
- }
- else
- {
- Load
-
- @foreach (var model in this.availableModels)
+
+
+ @if (this.DataLLMProvider.IsLLMModelProvidedManually())
+ {
+
+ Show available models
+
+
+ }
+ else
+ {
+
+ Load models
+
+ @if(this.availableModels.Count is 0)
{
- @model
+
+ No models loaded or available.
+
}
-
- }
-
+ else
+ {
+
+ @foreach (var model in this.availableModels)
+ {
+ @model
+ }
+
+ }
+ }
+
+
@* ReSharper disable once CSharpWarnings::CS8974 *@
"(Optional) API Key",
_ => "API Key",
};
-
- private bool IsNoneProvider => this.DataLLMProvider is LLMProviders.NONE;
}
\ No newline at end of file
diff --git a/app/MindWork AI Studio/wwwroot/changelog/v0.9.41.md b/app/MindWork AI Studio/wwwroot/changelog/v0.9.41.md
index c25d55f0..08dc273e 100644
--- a/app/MindWork AI Studio/wwwroot/changelog/v0.9.41.md
+++ b/app/MindWork AI Studio/wwwroot/changelog/v0.9.41.md
@@ -3,4 +3,5 @@
- Changed the terminology from "temporary chats" to "disappearing chats" in the UI. This makes it clearer to understand the purpose of these chats.
- Improved the hot reloading of the plugin system to prevent overlapping reloads.
- Improved the app behavior when the user system was waked up from sleep mode.
+- Improved the model selection on the provider dialog.
- Fixed the color for the update notification button to match the color theme.
\ No newline at end of file