無料公開GPT-3.5 API
ゲートウェイとキー
エンドポイント
ゲートウェイ: https://api.ddaiai.com
2.キー: いずれかのサブキー、チャージ不要
3. サブキーの取得方法: コンソールにログイン -> KEYを取得 -> 新しいサブキーを作成
注意事項
freeエンドポイントはGPT-3.5モデルのみをサポートします- 公式のchat.openai.comからリバースエンジニアリングによってAPI化されたものです
- 公式リレーAPIよりも安定性が低くなります
- 関数呼び出しなどの機能はサポートされていません。会話のみサポートされます
- ユーザーごとに1分あたり最大
RPM 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