mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 22:13:38 +00:00
Co-authored-by: krut_ni <nils.kruthoff@dlr.de> Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
20 lines
478 B
C#
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; }
|
|
}
|