using AIStudio.Provider;
namespace AIStudio.Models.Kinds;
///
/// The models which read text off a page.
///
///
/// A document goes in and its text comes out. There is no conversation in them, so they answer a
/// chat completion request with an error rather than with a reply.
///
public sealed class OcrModelsFamily : ModelFamily
{
///
public override ModelVendor Vendor => ModelVendor.UNKNOWN;
///
public override ModelSource Source => new("https://docs.mistral.ai/capabilities/OCR/basic_ocr/", new DateOnly(2026, 9, 12), "Ported unchanged from the OCR marker of Provider/ModelKindExtensions.cs.");
///
protected override void Declare(ModelFamilyBuilder builder) =>
builder.Modifier("ocr").AsSubstring().Kind(ModelKind.OCR);
}