mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 21:13:37 +00:00
Some checks are pending
Build and Release / Determine run mode (push) Waiting to run
Build and Release / Sync Flatpak repo (push) Blocked by required conditions
Build and Release / Collect Flatpak artifacts (push) Blocked by required conditions
Build and Release / Verify (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg,app,updater, dmg) (push) Blocked by required conditions
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) Blocked by required conditions
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) Blocked by required conditions
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) Blocked by required conditions
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) Blocked by required conditions
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) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
33 lines
1.4 KiB
C#
33 lines
1.4 KiB
C#
using static AIStudio.Provider.Capability;
|
|
|
|
namespace AIStudio.Models.Mistral;
|
|
|
|
/// <summary>
|
|
/// Ministral, the small ones, which see from the third generation on and never reason.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The name is one letter away from the rest of the range and shares no name part with it, which
|
|
/// the previous rules had to say out loud: the Ministral check sat above the Mistral block because
|
|
/// "ministral" does not contain "mistral". Here that is not a question anybody has to ask -- the
|
|
/// rules answer for the name part they were written for and for no other.
|
|
/// </remarks>
|
|
public sealed class MinistralFamily : MistralReleaseDatedFamily
|
|
{
|
|
/// <inheritdoc />
|
|
public override ModelSource Source => new("https://docs.mistral.ai/getting-started/models/models_overview/", new DateOnly(2026, 9, 11), "Ported unchanged from the rules in ProviderExtensions.Mistral.cs: images from Ministral 3 on, and no reasoning in any release.");
|
|
|
|
/// <inheritdoc />
|
|
protected override int VisionSince => 2512;
|
|
|
|
/// <inheritdoc />
|
|
protected override int ReasoningSince => MistralReleases.NEVER;
|
|
|
|
/// <inheritdoc />
|
|
protected override int LatestRelease => 2512;
|
|
|
|
/// <inheritdoc />
|
|
protected override void Declare(ModelFamilyBuilder builder) =>
|
|
builder.Rule("ministral").AsSegment()
|
|
.Capabilities(WHAT_THEY_COULD_ALWAYS_DO)
|
|
.Apis(CHAT_COMPLETION_API);
|
|
} |