using Microsoft.TypeSpec.Generator.Customizations; using System; namespace OpenAI.Chat; // CUSTOM: Renamed. [CodeGenType("ChatCompletionMessageToolCallChunkFunction")] [CodeGenSerialization(nameof(Arguments), SerializationValueHook = nameof(SerializeArgumentsValue), DeserializationValueHook = nameof(DeserializeArgumentsValue))] internal partial class InternalChatCompletionMessageToolCallChunkFunction { // CUSTOM: Changed type from string to BinaryData. public BinaryData Arguments { get; } }