AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ResponsesFunctionCallOutputItem.cs

14 lines
373 B
C#
Raw Normal View History

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;
}