openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Chat/Internal/InternalChatOutputPredictionContent.cs
15lines · modeblame
0e0c460cJose Arriaga Maldonado1 years ago | 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 | | |
0ca4c062Jose Arriaga Maldonado1 years ago | 9 | [CodeGenType("ChatOutputPredictionContent")] |
0e0c460cJose Arriaga Maldonado1 years ago | 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 | } |