mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-09-18 18:40:22 +00:00
12 lines
282 B
C#
12 lines
282 B
C#
|
namespace AIStudio.Provider.OpenAI;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The delta text of a choice.
|
||
|
/// </summary>
|
||
|
/// <param name="Content">The content of the delta text.</param>
|
||
|
public record ChatCompletionDelta(string Content)
|
||
|
{
|
||
|
public ChatCompletionDelta() : this(string.Empty)
|
||
|
{
|
||
|
}
|
||
|
}
|