From 335acd5bbd1380d7c9ec747dac5e78ab5d50cd53 Mon Sep 17 00:00:00 2001 From: Rick Staa Date: Mon, 23 Sep 2024 16:51:21 +0200 Subject: [PATCH] docs(ai): fix T2I lora example model (#658) This commit ensures people use the `stabilityai/stable-diffusion-xl-base-1.0` model as the based for the Lora requests on the T2I pipeline. --- ai/pipelines/text-to-image.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai/pipelines/text-to-image.mdx b/ai/pipelines/text-to-image.mdx index 8db18cc7..28d30f80 100644 --- a/ai/pipelines/text-to-image.mdx +++ b/ai/pipelines/text-to-image.mdx @@ -134,7 +134,7 @@ To apply LoRa filters to an image, include the `loras` field in your request: curl -X POST "https:///text-to-image" \ -H "Content-Type: application/json" \ -d '{ - "model_id":"ByteDance/SDXL-Lightning", + "model_id":"stabilityai/stable-diffusion-xl-base-1.0", "prompt":"A cool cat on the beach", "width": 1024, "height": 1024,