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