mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 21:13:37 +00:00
9 lines
539 B
C#
9 lines
539 B
C#
namespace AIStudio.Tools.ToolCallingSystem;
|
|
|
|
/// <summary>
|
|
/// One independently selectable area of a tool's configuration export.
|
|
/// </summary>
|
|
/// <param name="Id">A stable ID, independent of the translated label. The empty ID denotes ungrouped settings.</param>
|
|
/// <param name="Label">The translated name shown to the administrator.</param>
|
|
/// <param name="FieldNames">Settings schema field names, without the tool ID prefix.</param>
|
|
public sealed record ExportableSettings(string Id, string Label, IReadOnlyList<string> FieldNames); |