| ### Image Generation | |
| POST http://localhost:8090/v1/chat/completions | |
| Content-Type: application/json | |
| Authorization: Bearer {{AXONHUB_API_KEY}} | |
| { | |
| "model": "cogview-3-flash", | |
| "messages": [ | |
| { | |
| "role": "user", | |
| "content": "Generate an image of a cat." | |
| } | |
| ], | |
| "tools": [ | |
| { | |
| "type": "image_generation", | |
| "image_generation": { | |
| "model": "gpt-image-1", | |
| "size": "1024x1024", | |
| "quality": "low" | |
| } | |
| } | |
| ], | |
| "modalities": ["text", "image"] | |
| } | |
| ### Image Generation with Image | |
| POST http://localhost:8090/v1/chat/completions | |
| Content-Type: application/json | |
| Authorization: Bearer {{AXONHUB_API_KEY}} | |
| < ./edit_image.json | |