openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.2.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Custom/Chat/Internal/InternalChatCompletionMessageListDatum.cs

9lines · modecode

1namespace OpenAI.Chat;
2
3[CodeGenType("ChatCompletionMessageListDatum")]
4internal partial class InternalChatCompletionMessageListDatum
5{
6 // CUSTOM: Ensure enumerated value is used.
7 [CodeGenMember("Role")]
8 internal ChatMessageRole Role { get; set; } = ChatMessageRole.Assistant;
9}