- 同一个 proxy ,v1/chat/completions 只询问 hello
- 绑卡的 ChatGPT APIKey 访问时长 2 - 3 s
- 免费的 ChatGPT APIKey 访问时长 4 - 20 s 可以自己试试
curl -w '\nTotal time: %{time_total}s\n' https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'