robot007
/
comfy
- Public
- 7 runs
Run robot007/comfy 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 |
---|---|---|---|
input_prompt |
string
|
beautiful scenery nature glass bottle landscape, purple galaxy bottle
|
Prompt
|
negative_prompt |
string
|
text, watermark, ugly, blurry
|
Negative Prompt
|
image |
string
|
Room photo
|
|
steps |
integer
|
30
|
Steps
|
seed |
integer
|
Sampling seed, leave Empty for Random
|
{
"type": "object",
"title": "Input",
"required": [
"image"
],
"properties": {
"seed": {
"type": "integer",
"title": "Seed",
"x-order": 4,
"description": "Sampling seed, leave Empty for Random"
},
"image": {
"type": "string",
"title": "Image",
"format": "uri",
"x-order": 2,
"description": "Room photo"
},
"steps": {
"type": "integer",
"title": "Steps",
"default": 30,
"x-order": 3,
"description": "Steps"
},
"input_prompt": {
"type": "string",
"title": "Input Prompt",
"default": "beautiful scenery nature glass bottle landscape, purple galaxy bottle",
"x-order": 0,
"description": "Prompt"
},
"negative_prompt": {
"type": "string",
"title": "Negative Prompt",
"default": "text, watermark, ugly, blurry",
"x-order": 1,
"description": "Negative Prompt"
}
}
}
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"
}