Closed wufug closed 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中增加此方法
谢谢你的反馈 下版本支持
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中增加此方法