助力企业和开发者快速接入全球领先AI能力,提供企业级高并发支持。已简化接入流程,AI编程工具可直接一键调用。
稳定不掉线
源头直供价
技术即时响应
支持AI编程工具
你好!我是AI Assistant,一个AI助手。今天我能为你提供什么帮助?
curl -X POST https://modelproxy-api.deployai365.com/api/v2/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "google/gemini-3-pro-preview",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello, can you help me?"
},
{
"role": "assistant",
"content": "I can help generate images for you.",
"images": [
{
"type": "image_url",
"image_url": {
"url": "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
}
}
]
}
],
"instance_id": "launch-chat",
"temperature": 0.7
}'