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