openai/openai-dotnet
Publicmirrored from https://github.com/openai/openai-dotnetAvailable
src/Custom/Chat/Streaming/InternalChatCompletionMessageToolCallChunkFunction.cs
12lines · modeblame
31c2ba63Jose Arriaga Maldonado1 years ago | 1 | using System; |
| 2 | | |
| 3 | namespace OpenAI.Chat; | |
| 4 | | |
| 5 | // CUSTOM: Renamed. | |
| 6 | [CodeGenModel("ChatCompletionMessageToolCallChunkFunction")] | |
| 7 | [CodeGenSerialization(nameof(Arguments), SerializationValueHook = nameof(SerializeArgumentsValue), DeserializationValueHook = nameof(DeserializeArgumentsValue))] | |
| 8 | internal partial class InternalChatCompletionMessageToolCallChunkFunction | |
| 9 | { | |
| 10 | // CUSTOM: Changed type from string to BinaryData. | |
| 11 | public BinaryData Arguments { get; } | |
| 12 | } |