using Microsoft.TypeSpec.Generator.Customizations; namespace OpenAI.Chat; [CodeGenType("ChatCompletionStreamResponseDelta")] internal partial class InternalChatCompletionStreamResponseDelta { // CUSTOM: Changed type from string. /// The role of the author of this message. [CodeGenMember("Role")] public ChatMessageRole? Role { get; } // CUSTOM: Changed type from string. /// The contents of the message. [CodeGenMember("Content")] public ChatMessageContent Content { get; } }