namespace AIStudio.Provider.OpenAI; /// /// The delta text of a choice. /// /// The content of the delta text. public record ChatCompletionDelta(string Content) { public ChatCompletionDelta() : this(string.Empty) { } }