openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI/src/Custom/Chat/Internal/InternalChatOutputPredictionContent.cs
11lines · modecode
| 1 | using Microsoft.TypeSpec.Generator.Customizations; |
| 2 | |
| 3 | namespace OpenAI.Chat; |
| 4 | |
| 5 | [CodeGenType("ChatOutputPredictionContent")] |
| 6 | internal partial class InternalChatOutputPredictionContent |
| 7 | { |
| 8 | // CUSTOM: Assign type to a collection of content parts |
| 9 | [CodeGenMember("Content")] |
| 10 | public ChatMessageContent Content { get; set; } = new(); |
| 11 | } |