AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ResponsesFunctionCallOutputItem.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

14 lines
373 B
C#

namespace AIStudio.Provider.OpenAI;
/// <summary>
/// A local function result item sent back to the OpenAI Responses API.
/// </summary>
public sealed record ResponsesFunctionCallOutputItem
{
public string Type { get; init; } = "function_call_output";
public string CallId { get; init; } = string.Empty;
public string Output { get; init; } = string.Empty;
}