Grt1228 / chatgpt-java

ChatGPT Java SDK支持流式输出、Gpt插件、联网。支持OpenAI官方所有接口。ChatGPT的Java客户端。OpenAI GPT-3.5-Turb GPT-4 Api Client for Java
https://chatgpt-java.unfbx.com
Apache License 2.0
3.34k stars 816 forks source link

speechToTextTranscriptions方法默认返回的是繁体中文 #111

Closed wufug closed 1 year ago

wufug commented 1 year ago

OpenAiApi的 @Multipart @POST("v1/audio/transcriptions") Single speechToTextTranscriptions(@Part MultipartBody.Part file, @Part("model") RequestBody model); 接口方法默认返回的是繁体中文,可以增加一个参数@PartMap() Map<String, RequestBody> requestBodyMap 这时在调用时: requestBodyMap.put("prompt", RequestBody.create(MediaType.parse("multipart/form-data"), "简体中文")); Single whisperResponse = this.openAiApi.speechToTextTranscriptions(multipartBody, modelBody,requestBodyMap); 就可以返回简体中文了,希望在OpenAiApi中增加此方法

Grt1228 commented 1 year ago

谢谢你的反馈 下版本支持