💡
此方法可强制规定返回内容必须符合json类型,这样可更有效的生成符合更为预期的数据结果,来实现与现有系统软件的有效结合
{ "messages": [ { "role": "user", "content": "三国里哪个武将的武力值最高,是多少?json:{武将:武将名;武力值:数字}" } ], "model": "gpt-3.5-turbo", "response_format": { "type": "json_object" }, "max_tokens": 2000 }
curl --location --request POST 'https://yewu.bcwhkj.cn/v1/chat/completions' \ --header 'Authorization: Bearer token' \ --header 'Content-Type: application/json' \ --data-raw '{ "messages": [ {"role": "user", "content": "三国里哪个武将的武力值最高,是多少?json:{武将:武将名;武力值:数字}"} ], "model": "gpt-3.5-turbo", "response_format":{ "type": "json_object" }, "max_tokens": 2000 }'
{ "id": "chatcmpl-8KTtjVPGpfrvNjXCklSnCGvxTCDsT", "object": "chat.completion", "created": 1699892179, "model": "gpt-3.5-turbo-1106", "choices": [ { "index": 0, "message": { "role": "assistant", "content": "{\"武将\":\"关羽\",\"武力值\":100}" }, "finish_reason": "stop" } ], "usage": { "prompt_tokens": 46, "completion_tokens": 16, "total_tokens": 62 }, "system_fingerprint": "fp_eeff13170a" }