Description
var chatoptions = new ChatOptions()
{
AdditionalProperties = new AdditionalPropertiesDictionary
{
// extra_body={"chat_template_kwargs": {"enable_thinking": false}}
["chat_template_kwargs"] = new Dictionary<string, object>
{
["enable_thinking"] = false
}
}
};
var message = new Microsoft.Extensions.AI.ChatMessage(ChatRole.User, input);
messages.Add(message);
await foreach (var item in _chatClient.GetStreamingResponseAsync(messages, chatoptions))
in the http body from fidder, the AdditionalProperties not send to api. I tried GetResponseAsync is the same.

Description
in the http body from fidder, the AdditionalProperties not send to api. I tried GetResponseAsync is the same.