mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 16:33:37 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
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;
|
|
} |