stable-diffusion-xl-lightning
Model ID: @cf/bytedance/stable-diffusion-xl-lightning
SDXL-Lightning is a lightning-fast text-to-image generation model. It can generate high-quality 1024px images in a few steps.
 Properties
Task Type: Text-to-Image
 Code Examples
Workers - TypeScript
import { Ai } from "@cloudflare/ai";
export interface Env {  AI: Ai;
}
export default {  async fetch(request: Request, env: Env) {    const ai = new Ai(env.AI);
    const inputs = {      prompt: "cyberpunk cat",    };
    const response = await ai.run(      "@cf/bytedance/stable-diffusion-xl-lightning",      inputs    );
    return new Response(response, {      headers: {        "content-type": "image/png",      },    });  },
};
curl
curl https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/ai/run/@cf/bytedance/stable-diffusion-xl-lightning \  -X POST \  -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \  -d '{ "prompt": "cyberpunk cat" }'
 Response
The response is a binary PNG file.
 API Schema
The following schema is based on JSON SchemaInput JSON Schema
Output JSON Schema