
zeke/vibe-coded-pipelines-quick-start
Public
0
runs
Run zeke/vibe-coded-pipelines-quick-start with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
prompt |
string
|
Text prompt for image generation
|
|
aspect_ratio |
None
|
1:1
|
Aspect ratio for the generated image
|
upscale_factor |
None
|
4x
|
How much to upscale the final image
|
enhance_model |
None
|
Standard V2
|
Upscaling model: Standard V2 (general), Low Resolution V2 (low-res), CGI (digital art), High Fidelity V2 (preserves details), Text Refine (text)
|
seed |
integer
|
42
|
Random seed for reproducible generation
|
{
"type": "object",
"title": "Input",
"required": [
"prompt"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"default": 42,
"x-order": 4,
"description": "Random seed for reproducible generation"
},
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "Text prompt for image generation"
},
"aspect_ratio": {
"enum": [
"1:1",
"16:9",
"21:9",
"2:3",
"3:2",
"4:5",
"5:4",
"9:16",
"9:21"
],
"type": "string",
"title": "aspect_ratio",
"description": "Aspect ratio for the generated image",
"default": "1:1",
"x-order": 1
},
"enhance_model": {
"enum": [
"Standard V2",
"Low Resolution V2",
"CGI",
"High Fidelity V2",
"Text Refine"
],
"type": "string",
"title": "enhance_model",
"description": "Upscaling model: Standard V2 (general), Low Resolution V2 (low-res), CGI (digital art), High Fidelity V2 (preserves details), Text Refine (text)",
"default": "Standard V2",
"x-order": 3
},
"upscale_factor": {
"enum": [
"None",
"2x",
"4x",
"6x"
],
"type": "string",
"title": "upscale_factor",
"description": "How much to upscale the final image",
"default": "4x",
"x-order": 2
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}