mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-07-07 12:06:27 +00:00
27 lines
684 B
C#
27 lines
684 B
C#
|
|
namespace AIStudio.Provider;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Describes whether the provider selection should show the reasoning capability icon.
|
||
|
|
/// </summary>
|
||
|
|
public enum ReasoningIndicatorState
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Do not show a reasoning indicator for the configured provider.
|
||
|
|
/// </summary>
|
||
|
|
NONE,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Show that the selected model always performs reasoning.
|
||
|
|
/// </summary>
|
||
|
|
ALWAYS_ON,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Show that reasoning is enabled by the provider or model default.
|
||
|
|
/// </summary>
|
||
|
|
DEFAULT_ON,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Show that reasoning was explicitly enabled through the provider settings.
|
||
|
|
/// </summary>
|
||
|
|
CONFIGURED,
|
||
|
|
}
|