mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-14 07:13:40 +00:00
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; } = [];
|
||
|
|
}
|