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

12 lines
282 B
C#
Raw Normal View History

2025-09-03 08:08:04 +00:00
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)
{
}
}