openai/openai-dotnet

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
OpenAI_2.1.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/Custom/Chat/Streaming/InternalChatCompletionMessageToolCallChunkFunction.cs

12lines · modecode

1using System;
2
3namespace OpenAI.Chat;
4
5// CUSTOM: Renamed.
6[CodeGenModel("ChatCompletionMessageToolCallChunkFunction")]
7[CodeGenSerialization(nameof(Arguments), SerializationValueHook = nameof(SerializeArgumentsValue), DeserializationValueHook = nameof(DeserializeArgumentsValue))]
8internal partial class InternalChatCompletionMessageToolCallChunkFunction
9{
10 // CUSTOM: Changed type from string to BinaryData.
11 public BinaryData Arguments { get; }
12}