mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-13 23:13:37 +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; }
|
||
|
|
}
|