openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
achandmsft-patch-1

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Custom/Chat/Internal/InternalChatOutputPredictionContent.cs

15lines · modecode

1using System.ClientModel.Primitives;
2using System.Data;
3using System.Text.Json;
4using System;
5using System.Collections;
6
7namespace OpenAI.Chat;
8
9[CodeGenType("ChatOutputPredictionContent")]
10internal 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}