mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 21:23:37 +00:00
33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
|
|
using static AIStudio.Provider.Capability;
|
||
|
|
|
||
|
|
namespace AIStudio.Models.Mistral;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Mistral Small, which gained images with 3.1 and reasoning with 4.
|
||
|
|
/// </summary>
|
||
|
|
/// <remarks>
|
||
|
|
/// The one family of the range whose name arrives glued to its version: Ollama publishes the open
|
||
|
|
/// weights as "mistral-small3.1" and "mistral-small3.2", without the separator Mistral's own API
|
||
|
|
/// writes. A substring covers both spellings, and it stays specific enough that nothing else in the
|
||
|
|
/// range can be mistaken for it.
|
||
|
|
/// </remarks>
|
||
|
|
public sealed class MistralSmallFamily : 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 Mistral Small 3.1 on, reasoning from Mistral Small 4 on.");
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override int VisionSince => 2503;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override int ReasoningSince => 2603;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override int LatestRelease => 2603;
|
||
|
|
|
||
|
|
/// <inheritdoc />
|
||
|
|
protected override void Declare(ModelFamilyBuilder builder) =>
|
||
|
|
builder.Rule("mistral-small").AsSubstring()
|
||
|
|
.Capabilities(WHAT_THEY_COULD_ALWAYS_DO)
|
||
|
|
.Apis(CHAT_COMPLETION_API);
|
||
|
|
}
|