AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionDelta.cs

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)
{
}
}