namespace AIStudio.Provider; /// /// The data model for the model to use. /// /// The model's ID. public readonly record struct Model(string Id) { #region Overrides of ValueType public override string ToString() => string.IsNullOrWhiteSpace(this.Id) ? "no model selected" : this.Id; #endregion }