This feature is separate to function calling. When calling the models “gpt-4–1106-preview” or “gpt-3.5-turbo-1106” the model response can be set to JSON. However there are a number of considerations… — Some Considerations When using function calling, the JSON mode is always on, however with Chat Completions, the JSON flag needs to be set: response_format={ “type”: “json_object” }. With function calling, a JSON schema or structure is created by the user, against which the generated response is matched and the JSON fields are…