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
287 B
C#
10 lines
287 B
C#
namespace AIStudio.Tools.ToolCallingSystem;
|
|
|
|
public sealed class ToolSettingsSchema
|
|
{
|
|
public string Type { get; init; } = "object";
|
|
|
|
public Dictionary<string, ToolSettingsFieldDefinition> Properties { get; init; } = [];
|
|
|
|
public HashSet<string> Required { get; init; } = [];
|
|
} |