首先你需要科学上网。。。。。
请求方式:post
请求地址:https://api.openai.com/v1/chat/completions
请求头:
Authorization : Bearer + key
Content-Type : application/json
Body :
{
"messages": [{ "role": "user", "content": "你知道测试通了吗" }],
"max_tokens": 700,
"temperature": 0,
"model": "gpt-3.5-turbo"
}