namespace AIStudio.Models.Live;
///
/// What a provider's own model list says about one of the models it serves.
///
///
/// That list is fetched anyway: before every chat round, before every assistant run, and whenever
/// somebody opens the provider dialog. Reading what it already carries therefore costs no request
/// of its own, which is the whole reason these numbers are taken from here and not asked for.
///
/// This describes one installation, never the model as such. Two machines may serve the same
/// weights behind different settings, and a statement about one of them says nothing about the
/// other -- which is why a listing is kept per configured provider instance and is gone with the
/// process. It is also the only source for a self-hosted model: a rule can say what the weights
/// were trained for, but only the engine knows what its operator started it with.
///
/// The model, named the way the provider names it in its list.
/// The window the provider states for it, or unknown where it states none.
public readonly record struct ModelListing(string ModelId, ContextWindow Context)
{
///
/// What we have about a model nobody has reported anything about.
///
public static readonly ModelListing NOTHING = new(string.Empty, ContextWindow.UNKNOWN);
///
/// Whether this listing states anything at all.
///
public bool IsKnown => this.Context.IsKnown;
///
/// What a provider stated about one model, as every model list states it: a name and a number.
///
///
/// A window of zero or less is dropped rather than repaired, and so is a nameless entry. A
/// provider answering that way is saying something we cannot interpret, and falling back to
/// what the rules say about the model is the one answer nobody has to invent. Every dialect
/// comes through here, so that none of them has to decide that on its own.
///
/// The model, named the way the provider names it.
/// The window the provider stated, where it stated one.
/// The listing, or nothing when there is nothing usable to keep.
public static ModelListing For(string modelId, int? contextWindowTokens) => string.IsNullOrWhiteSpace(modelId) || contextWindowTokens is not > 0
? NOTHING
: new(modelId, ContextWindow.Of(contextWindowTokens.Value));
///
/// Puts what the provider stated over what the rules worked out.
///
///
/// A stated window replaces the whole window, the ceiling included, for the same reason the
/// expert settings do: what a model card says it could be raised to is a statement about the
/// model, while this is a statement about the installation serving it. Whoever started that
/// engine has already decided, and a ceiling nobody can reach without restarting it is not a
/// number to keep showing.
///
/// What is known about the model without this listing.
/// The profile, with what the provider stated in it.
public ModelProfile ApplyTo(in ModelProfile profile) => this.IsKnown ? profile with { Context = this.Context } : profile;
}