openai/openai-dotnet

Public

mirrored from https://github.com/openai/openai-dotnetAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
mailinhphan/clientOptions

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

OpenAI/src/Custom/Chat/Internal/InternalChatOutputPredictionContent.cs

11lines · modecode

1using Microsoft.TypeSpec.Generator.Customizations;
2
3namespace OpenAI.Chat;
4
5[CodeGenType("ChatOutputPredictionContent")]
6internal 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}