mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 21:36:26 +00:00
14 lines
373 B
C#
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;
|
|
}
|