mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-06 01:42:12 +00:00
Some checks failed
Build and Release / Determine run mode (push) Has been cancelled
Build and Release / Read metadata (push) Has been cancelled
Build and Release / Sync Flatpak repo (push) Has been cancelled
Build and Release / Collect Flatpak artifacts (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg,app,updater, dmg) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis,updater, nsis) (push) Has been cancelled
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage,updater, appimage) (push) Has been cancelled
Build and Release / Prepare & create release (push) Has been cancelled
Build and Release / Publish release (push) Has been cancelled
47 lines
1.9 KiB
C#
47 lines
1.9 KiB
C#
using AIStudio.Provider;
|
|
|
|
using ProviderSettings = AIStudio.Settings.Provider;
|
|
|
|
namespace AIStudio.Assistants.VisualBriefing;
|
|
|
|
/// <summary>
|
|
/// Produces export-safe provider and model labels.
|
|
/// </summary>
|
|
internal static class VisualBriefingModelNames
|
|
{
|
|
/// <summary>
|
|
/// Returns the public provider family and configured model name.
|
|
/// </summary>
|
|
/// <param name="provider">The selected provider and model.</param>
|
|
/// <returns>An export-safe provider and model label.</returns>
|
|
internal static string ExportLabel(ProviderSettings provider) => $"{provider.UsedLLMProvider.ToName(translate: false)} — {ExportModelName(provider.Model)}";
|
|
|
|
/// <summary>
|
|
/// Reconstructs an export label from persisted build provenance.
|
|
/// </summary>
|
|
/// <param name="providerFamily">The persisted provider family.</param>
|
|
/// <param name="model">The persisted model name.</param>
|
|
/// <returns>An export-safe provider and model label.</returns>
|
|
internal static string ExportLabel(string providerFamily, string model)
|
|
{
|
|
var providerName = Enum.TryParse<LLMProviders>(providerFamily, out var parsedProvider) ? parsedProvider.ToName(translate: false) : string.IsNullOrWhiteSpace(providerFamily) ? "Unknown provider" : providerFamily.Trim();
|
|
var modelName = string.IsNullOrWhiteSpace(model) ? "model not reported" : model.Trim();
|
|
|
|
return $"{providerName} — {modelName}";
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the configured display name, model ID, or provider-managed fallback.
|
|
/// </summary>
|
|
private static string ExportModelName(Model model)
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(model.DisplayName))
|
|
return model.DisplayName.Trim();
|
|
|
|
if (model.IsSystemModel)
|
|
return "provider-configured model";
|
|
|
|
return string.IsNullOrWhiteSpace(model.Id) ? "model not reported" : model.Id.Trim();
|
|
}
|
|
}
|