mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 22:43:38 +00:00
11 lines
526 B
C#
11 lines
526 B
C#
|
|
using AIStudio.Provider;
|
||
|
|
|
||
|
|
namespace AIStudio.Tests.Models.Corpus;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// One model of the corpus which no rule answers for, together with why that is all right.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="Provider">The provider the model is reached through.</param>
|
||
|
|
/// <param name="ModelId">The model ID exactly as that provider reports it.</param>
|
||
|
|
/// <param name="Reason">Why this model is left to the global default.</param>
|
||
|
|
public sealed record ModelLeftToTheDefault(LLMProviders Provider, string ModelId, string Reason);
|