Web使用
PandoraNext废弃- cockroachai (opens in a new tab) GPT自建-账号分享
- GeminiPro (opens in a new tab) Google 自建
- Bard (opens in a new tab) Google 官方
- DeepSeek (opens in a new tab) 官方
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":"你是什么模型"}]}]}'