AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ResponsesFunctionTool.cs
Peer Hogeterp 4d8d30e15e
Added tool calling support (#731)
Co-authored-by: krut_ni <nils.kruthoff@dlr.de>
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-09-04 15:48:07 +02:00

20 lines
478 B
C#

using System.Text.Json;
namespace AIStudio.Provider.OpenAI;
/// <summary>
/// The flat function tool definition shape expected by the OpenAI Responses API.
/// </summary>
public sealed record ResponsesFunctionTool
{
public string Type { get; init; } = "function";
public string Name { get; init; } = string.Empty;
public string Description { get; init; } = string.Empty;
public JsonElement Parameters { get; init; }
public bool Strict { get; init; }
}