namespace AIStudio.Provider.OpenAI; /// /// A local function result item sent back to the OpenAI Responses API. /// 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; }