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

11 lines
240 B
C#

namespace AIStudio.Provider.OpenAI;
public sealed record ChatCompletionToolCall
{
public string? Id { get; init; }
public string? Type { get; init; } = "function";
public ChatCompletionToolFunction? Function { get; init; }
}