## Basic model info - Model name: xai/xai grok-imagine-image-2.0 - Model description: Generate and edit images built for real creative work with xAI's Grok Imagine Image 2.0 — precise instruction following, sharp typography, quality and resolution selectable up to 2K. - Endpoint name: image-editing ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/xai/grok-imagine-image-2.0/latest.json) ### Model input schema The model input schema is: ```json { "description": "Input model for image editing using Grok Imagine Image 2.0.", "properties": { "prompt": { "description": "Text description of the desired edit.", "maxLength": 8000, "minLength": 1, "title": "Prompt", "type": "string", "x-sr-order": 201 }, "images": { "description": "List of URLs of the images to edit. A maximum of 3 images are supported. Each input image adds $0.01 to the price.", "items": { "anyOf": [ { "format": "uri", "maxLength": 2083, "minLength": 1, "type": "string" }, { "type": "string" } ] }, "maxItems": 3, "minItems": 1, "title": "Images", "type": "array", "x-sr-order": 301 }, "quality": { "default": "medium", "description": "Generation quality tier (matches the upstream xAI tiers). 'medium' costs more than 'low'.", "enum": [ "low", "medium" ], "title": "Quality", "type": "string", "x-sr-order": 402 }, "resolution": { "default": "1k", "description": "Output resolution class. '2k' costs more than '1k'.", "enum": [ "1k", "2k" ], "title": "Resolution", "type": "string", "x-sr-order": 403 } }, "required": [ "prompt", "images" ], "title": "ImageEditingInput", "type": "object" } ``` ### Model output schema The model output schema is: ```json { "properties": { "images": { "items": { "properties": { "content_type": { "description": "The mime type of the file.", "title": "Content Type", "type": "string" }, "file_name": { "description": "The name of the file. It will be auto-generated if not provided.", "title": "File Name", "type": "string" }, "file_size": { "description": "The size of the file in bytes.", "title": "File Size", "type": "integer" }, "url": { "description": "The URL where the file can be downloaded from.", "title": "Url", "type": "string" } }, "required": [ "content_type", "file_name", "file_size", "url" ], "title": "SunraFile", "type": "object" }, "title": "Images", "type": "array" } }, "required": [ "images" ], "title": "ImagesOutput", "type": "object" } ``` ## Example inputs and outputs Use the following example inputs and outputs to understand the model. ### Input example ```json { "prompt": "", "images": [ ], "quality": "medium", "resolution": "1k" } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("xai/grok-imagine-image-2.0/image-editing", { input: { prompt: '', images: [], quality: 'medium', resolution: '1k' }, logs: true, onQueueUpdate: (update) => { console.log(`Status Update: ${update.status}, Request ID: ${update.request_id}`); }, }); console.log(result.data); console.log(result.requestId); ``` ### Python ```python import sunra_client result = sunra_client.subscribe( "xai/grok-imagine-image-2.0/image-editing", arguments={ "prompt": "", "images": [], "quality": "medium", "resolution": "1k" }, with_logs=True, on_enqueue=print, on_queue_update=print, ) print(result) ``` ### Java ```java import ai.sunra.client.*; import java.util.Map; import com.google.gson.JsonObject; var client = SunraClient.withEnvCredentials(); var response = client.subscribe( "xai/grok-imagine-image-2.0/image-editing", SubscribeOptions.builder() .input(Map.of( "prompt", "", "images", , "quality", "medium", "resolution", "1k")) .resultType(JsonObject.class) .onQueueUpdate(update -> System.out.printf( "\nStatus Update: %s, Request ID: %s%n", update.getStatus(), update.getRequestId() )) .logs(true) .build() ); System.out.println("Completed!"); System.out.println(response.getData()); ``` ### Kotlin ```kotlin import ai.sunra.client.kt.* import com.google.gson.JsonObject val client = createSunraClient() val response = client.subscribe( endpointId = "xai/grok-imagine-image-2.0/image-editing", input = mapOf( "prompt" to "", "images" to , "quality" to "medium", "resolution" to "1k"), options = ai.sunra.client.kt.SubscribeOptions(logs = true), onUpdate = { update -> println("\nStatus Update: ${update.status}, Request ID: ${update.requestId}") } ) println("Completed!") println(response.data) ``` ### Curl ```bash curl --request POST \ --url https://api.sunra.ai/v1/queue/xai/grok-imagine-image-2.0/image-editing \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","images":[],"quality":"medium","resolution":"1k"}' ``` ## Model readme >