using AIStudio.Provider;
namespace AIStudio.Tests.Models.Corpus;
///
/// One model name together with what the app has to make of it.
///
/// The provider the model is reached through.
/// The model ID exactly as that provider reports it, before any normalization.
/// What the model is made for.
/// What the markers being replaced answer, where that is something else.
/// Why the two differ, which is only filled in when they do.
public sealed record ModelKindExample(LLMProviders Provider, string ModelId, ModelKind Kind, ModelKind? AnsweredTodayAs = null, string Reason = "");