mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-12 14:12:10 +00:00
11 lines
240 B
C#
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; }
|
|
}
|