mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 11:32:11 +00:00
7 lines
219 B
C#
7 lines
219 B
C#
namespace AIStudio.Tools.ToolCallingSystem;
|
|
|
|
public readonly record struct ToolCallingAvailability(bool IsAvailable, string Message)
|
|
{
|
|
public static ToolCallingAvailability Available() => new(true, string.Empty);
|
|
}
|