Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 2.23 KB

stable-diffusion-xl-base-1.0.md

File metadata and controls

30 lines (29 loc) · 2.23 KB
model task_type model_display_name layout weight title json_schema
id source name description task tags properties
6d52253a-b731-4a03-b203-cde2d4fae871
1
@cf/stabilityai/stable-diffusion-xl-base-1.0
Diffusion-based text-to-image generative model by Stability AI. Generates and modify images based on text prompts.
id name description
3d6e1f35-341b-4915-a6c8-9a7142a9033a
Text-to-Image
Generates images from input text. These models can be used to generate and modify images based on text prompts.
stabilityai
text-to-image
text-to-image
stable-diffusion-xl-base-1.0
model
0
stable-diffusion-xl-base-1.0
input output
{ "type": "object", "properties": { "prompt": { "type": "string" }, "image": { "oneOf": [ { "type": "string", "format": "binary" }, { "type": "object", "properties": { "image": { "type": "array", "items": { "type": "number" } } } } ] }, "mask": { "oneOf": [ { "type": "string", "format": "binary" }, { "type": "object", "properties": { "mask": { "type": "array", "items": { "type": "number" } } } } ] }, "num_steps": { "type": "integer", "default": 20, "maximum": 20 }, "strength": { "type": "number", "default": 1 }, "guidance": { "type": "number", "default": 7.5 } }, "required": [ "prompt" ] }
{ "type": "string", "contentType": "image/png", "format": "binary" }