Joe

Results 3 issues of Joe

个人建议还是在文中的数字和英文前面加上空格 这样更加易读 https://cyc2018.github.io/Text-Typesetting/ 这个工具可以帮忙添加空格,如果没有时间可提交 pr

```java ObjectMapper mapper = defaultObjectMapper(); OkHttpClient client = OpenAiService.defaultClient("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", Duration.ofMinutes(2)) .newBuilder() .build(); Retrofit retrofit = new retrofit2.Retrofit.Builder(). baseUrl("https://open.aiproxy.xyz/"). client(client). addConverterFactory(JacksonConverterFactory.create(mapper)). addCallAdapterFactory(RxJava2CallAdapterFactory.create()). build(); Retrofit defaultRetrofit = OpenAiService.defaultRetrofit(client, mapper); OpenAiApi api =...