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 · modepreview

using System.ClientModel.Primitives;
using System.Data;
using System.Text.Json;
using System;
using System.Collections;

namespace OpenAI.Chat;

[CodeGenType("ChatOutputPredictionContent")]
internal partial class InternalChatOutputPredictionContent
{
    // CUSTOM: Assign type to a collection of content parts
    [CodeGenMember("Content")]
    public ChatMessageContent Content { get; set; } = new();
}