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