免费公益 GPT-3.5 api接口 
网关和key 
接口
1.网关: https://api.ddaiai.com
2.key: 你的任意子key, 无需充值 
3.获取子key途径: 登录控制台 -> 获取KEY -> 新建子key
说明 
免费接口 仅支持GPT-3.5模型- 来源官网chat.openai.com 逆向为api方式
 - 稳定性不如官转api(中转)
 - 不支持function 等,仅支持对话
 - 最大支持单用户 
RPM 30次每分钟30次 
curl 实例测试 
shell
curl --request POST \
  --url https://api.ddaiai.com/v1/chat/completions \
  --header 'Authorization: Bearer hk-xxx' \
  --header 'content-type: application/json' \
  --data '{
    "model": "gpt-3.5-turbo",
    "messages": [
        {
            "role": "system",
            "content": "Translate into English in any language, No explanation required"
        },
        {
            "role": "user",
            "content": "hello 谢谢你 , 私たちは家族です。 yes you are right。 Не знаю, почему."
        }
    ]
}'curl --request POST \
  --url https://api.ddaiai.com/v1/chat/completions \
  --header 'Authorization: Bearer hk-xxx' \
  --header 'content-type: application/json' \
  --data '{
    "model": "gpt-3.5-turbo",
    "messages": [
        {
            "role": "system",
            "content": "Translate into English in any language, No explanation required"
        },
        {
            "role": "user",
            "content": "hello 谢谢你 , 私たちは家族です。 yes you are right。 Не знаю, почему."
        }
    ]
}'
OpenAi-HK