mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-21 20:12: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;
|
||
|
|
}
|