openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Chat/Internal/InternalChatCompletionMessageToolCallFunction.cs
11lines · modecode
| 1 | using System; |
| 2 | |
| 3 | namespace OpenAI.Chat; |
| 4 | |
| 5 | [CodeGenType("ChatCompletionMessageToolCallFunction")] |
| 6 | [CodeGenSerialization(nameof(Arguments), SerializationValueHook = nameof(SerializeArgumentsValue), DeserializationValueHook = nameof(DeserializeArgumentsValue))] |
| 7 | internal partial class InternalChatCompletionMessageToolCallFunction |
| 8 | { |
| 9 | // CUSTOM: Changed type from string to BinaryData. |
| 10 | public BinaryData Arguments { get; set; } |
| 11 | } |