Authorization: Bearer ********************{
"model": "gemini-2.5-flash-image",
"messages": [
{
"role": "user",
"content": "画一只可爱的小猫"
}
]
}curl --location 'https://drwa.openai-next.com/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gemini-2.5-flash-image",
"messages": [
{
"role": "user",
"content": "画一只可爱的小猫"
}
]
}'{
"id": "chatcmpl_xxx",
"object": "chat.completion",
"created": 1776768940,
"model": "gpt-image-2",
"choices": [
{
"index": 0,
"message": {
"role": "system",
"content": "string",
"property1": "string",
"property2": "string"
},
"finish_reason": "string"
}
],
"property1": "string",
"property2": "string"
}