mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-10-08 22:00:21 +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)
|
|
{
|
|
}
|
|
} |