mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 18:32:12 +00:00
9 lines
173 B
C#
9 lines
173 B
C#
namespace AIStudio.Provider.OpenAI;
|
|
|
|
public sealed record ChatCompletionToolFunction
|
|
{
|
|
public string? Name { get; init; }
|
|
|
|
public string? Arguments { get; init; }
|
|
}
|