openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
OpenAI.Responses/src/Custom/Items/Internal/InternalResponsesSystemMessage.cs
12lines · modecode
| 1 | using Microsoft.TypeSpec.Generator.Customizations; |
| 2 | using System.Collections.Generic; |
| 3 | |
| 4 | namespace OpenAI.Responses; |
| 5 | |
| 6 | [CodeGenType("ResponsesSystemMessageItemResource")] |
| 7 | internal partial class InternalResponsesSystemMessage |
| 8 | { |
| 9 | // CUSTOM: Use generalized content type. |
| 10 | [CodeGenMember("Content")] |
| 11 | public IList<ResponseContentPart> InternalContent { get; } |
| 12 | } |