mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-27 14:36:27 +00:00
16 lines
406 B
C#
16 lines
406 B
C#
namespace AIStudio.Provider.OpenAI;
|
|
|
|
/// <summary>
|
|
/// A function call item returned by the OpenAI Responses API.
|
|
/// </summary>
|
|
public sealed record ResponsesFunctionCallItem
|
|
{
|
|
public string Type { get; init; } = string.Empty;
|
|
|
|
public string CallId { get; init; } = string.Empty;
|
|
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
public string Arguments { get; init; } = string.Empty;
|
|
}
|