Results 1 comments of Kevin

alternative way ``` public class JsonChatCompletionRequest { @JsonProperty("response_format") String responseFormat = "json_object"; } ``` ``` OpenAiService getClient(String key, boolean jsonMode) { ObjectMapper mapper = defaultObjectMapper(); if (jsonMode) { mapper.addMixIn(ChatCompletionRequest.class, JsonChatCompletionRequest.class);...