mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 16:32:14 +00:00
9 lines
203 B
C#
9 lines
203 B
C#
namespace AIStudio.Provider.OpenAI;
|
|
|
|
public sealed record ChatCompletionToolFunction
|
|
{
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
public string Arguments { get; init; } = string.Empty;
|
|
}
|