OpenAI 兼容OpenAI 兼容对话
使用 gemini 通过 /chat/completions 调用同步或流式对话。
端点
POST /api/v1/chat/completions模型gemini成本$0.05/请求curl --request POST \
--url https://apiin.one/api/v1/chat/completions \
--header 'Authorization: Bearer $APIINONE_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini",
"messages": [
{
"role": "user",
"content": "Explain quantum computing in simple terms."
}
],
"stream": false,
"include_thoughts": true
}'


