mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 20:16:27 +00:00
11 lines
253 B
C#
11 lines
253 B
C#
using AIStudio.Tools;
|
|
|
|
namespace AIStudio.Tools.ToolCallingSystem;
|
|
|
|
internal sealed record ToolSettingsSecretId(string ToolId, string FieldName) : ISecretId
|
|
{
|
|
public string SecretId => this.ToolId;
|
|
|
|
public string SecretName => this.FieldName;
|
|
}
|