AI使用
AI常用

Web使用

API调用

DeepSeek

新账号1000w tokens

curl https://api.deepseek.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer sk-f831b8f211aa4f7fbaa3d9423e9aaf38" \
  -d '{
        "model": "deepseek-chat",
        "messages": [
          {"role": "system", "content": "You are a helpful assistant."},
          {"role": "user", "content": "你好"}
        ]
      }'

gpt pandora

ChatGPT
curl --location 'https://gpt.wantbug.com/{proxy_api_prefix}/v1/chat/completions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {key}' \
--data '{
    "model": "gpt-3.5-turbo",
    "messages":
    [
        {
            "role": "user",
            "content": "你是什么模型"
        }
    ]
}'

gemini

GeminiPro
curl --location 'https://geminiapi.wantbug.com/v1beta/models/gemini-pro:generateContent?key={key}' \
--header 'Content-Type: application/json' \
--data '{"contents":[{"parts":[{"text":"你是什么模型"}]}]}'

其他