AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ChatCompletionDelta.cs
2025-09-03 10:08:04 +02:00

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