## Basic model info - Model name: microsoft/microsoft mai-image-2.5 - Model description: MAI Image 2.5 is Microsoft's image model built for creative work, delivering photorealistic results at a lower cost, with whole-frame instruction editing alongside text-to-image. - Endpoint name: text-to-image ## Model schema The model schema is defined in the OpenAPI schema: [OpenAPI Schema](https://oapi.sunra.ai/main/microsoft/mai-image-2.5/latest.json) ### Model input schema The model input schema is: ```json { "properties": { "prompt": { "minLength": 1, "title": "Prompt", "type": "string", "x-sr-order": 201 }, "width": { "anyOf": [ { "maximum": 1376, "minimum": 768, "type": "integer" }, { "type": "null" } ], "description": "Output width in pixels, at least 768. Must be set together with height. width x height must not exceed 1,056,768 pixels (e.g. 1024x1024, or 1366x768 for 16:9). The service rounds each edge down to a multiple of 16. When omitted the model returns 1024x1024.", "title": "Width", "x-sr-order": 401 }, "height": { "anyOf": [ { "maximum": 1376, "minimum": 768, "type": "integer" }, { "type": "null" } ], "description": "Output height in pixels, at least 768. Must be set together with width.", "title": "Height", "x-sr-order": 402 } }, "required": [ "prompt" ], "title": "TextToImageInput", "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": "", "width": null, "height": null } ``` ### Output example ```json { } ``` ## Model code examples ### JavaScript ```javascript import { sunra } from "@sunra/client"; const result = await sunra.subscribe("microsoft/mai-image-2.5/text-to-image", { input: { prompt: '', width: null, height: null }, 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( "microsoft/mai-image-2.5/text-to-image", arguments={ "prompt": "", "width": None, "height": None }, 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( "microsoft/mai-image-2.5/text-to-image", SubscribeOptions.builder() .input(Map.of( "prompt", "", "width", null, "height", null)) .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 = "microsoft/mai-image-2.5/text-to-image", input = mapOf( "prompt" to "", "width" to null, "height" to null), 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/microsoft/mai-image-2.5/text-to-image \ --header "Authorization: Key $SUNRA_KEY" \ --header "Content-Type: application/json" \ --data '{"prompt":"","width":null,"height":null}' ``` ## Model readme >