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/InternalChatCompletionMessageToolCallFunction.cs

11lines · modecode

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