Hi, Related to https://github.com/openai/openai-java/issues/544 and https://github.com/openai/openai-java/commit/220503efc745bd1c74c02f1d4d6d3305198bf942. When adding an additional body properties with TranscriptionCreateParams the name of the properties is changed to `propName[propName]` in the request. For example this code: ```java TranscriptionCreateParams createParams = TranscriptionCreateParams.builder() .file(path) .model(System.getenv("OVH_AI_ENDPOINTS_WHISPER_MODEL_NAME")) .putAdditionalBodyProperty("myProp", JsonValue.from(true)) .responseFormat(AudioResponseFormat.VERBOSE_JSON) .build(); TranscriptionVerbose transcription = client.audio().transcriptions().create(createParams).asVerbose(); ``` Generate the HTTP param: ``` Content-Disposition: form-data; name="myProp[myProp]" Content-Type: text/plain; charset=UTF-8 true ``` It should be: ``` Content-Disposition: form-data; name="myProp" Content-Type: text/plain; charset=UTF-8 true ```