following sections:

https://www.alibabacloud.com/help/zh/model-studio/deep-thinking#5756d849fbqhg
Bug description
reasoningContent is not null
my code:
OpenAiApi openAiApi = OpenAiApi.builder()
.baseUrl(modelInfo.getEndpoint())
.completionsPath(completionsPath)
.apiKey(modelInfo.getApiKey())
.build();
OpenAiChatOptions options = OpenAiChatOptions.builder()
.model(modelInfo.getName())
.extraBody(Map.of("enable_thinking",false))
.streamUsage(false)
.build();
OpenAiChatModel openAiChatModel = OpenAiChatModel.builder()
.openAiApi(openAiApi)
.defaultOptions(options)
.build();
return openAiChatModel;
Environment
