mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 17:13:38 +00:00
10 lines
261 B
C#
10 lines
261 B
C#
|
|
namespace AIStudio.Tools.ToolCallingSystem;
|
||
|
|
|
||
|
|
public sealed class ToolConfigurationState
|
||
|
|
{
|
||
|
|
public bool IsConfigured { get; init; }
|
||
|
|
|
||
|
|
public List<string> MissingRequiredFields { get; init; } = [];
|
||
|
|
|
||
|
|
public string Message { get; init; } = string.Empty;
|
||
|
|
}
|