superhighfives/living-room-reimaginator
Public
0
runs
Run superhighfives/living-room-reimaginator 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 |
---|---|---|---|
living_room_image |
string
|
Photo of the living room to redesign
|
|
style |
None
|
modern
|
Interior design style
|
hue |
None
|
neutral
|
Color palette and hue preference
|
era |
None
|
contemporary
|
Design era/decade inspiration
|
seed |
integer
|
42
|
Random seed for reproducible results
|
{
"type": "object",
"title": "Input",
"required": [
"living_room_image"
],
"properties": {
"era": {
"enum": [
"contemporary",
"1920s",
"1950s",
"1960s",
"1970s",
"1980s",
"1990s",
"2000s",
"victorian",
"edwardian"
],
"type": "string",
"title": "era",
"description": "Design era/decade inspiration",
"default": "contemporary",
"x-order": 3
},
"hue": {
"enum": [
"warm",
"cool",
"neutral",
"earth_tones",
"monochrome",
"vibrant",
"pastel",
"jewel_tones"
],
"type": "string",
"title": "hue",
"description": "Color palette and hue preference",
"default": "neutral",
"x-order": 2
},
"seed": {
"type": "integer",
"title": "Seed",
"default": 42,
"x-order": 4,
"description": "Random seed for reproducible results"
},
"style": {
"enum": [
"modern",
"minimalist",
"bohemian",
"industrial",
"scandinavian",
"mid-century",
"rustic",
"art_deco",
"mediterranean",
"traditional"
],
"type": "string",
"title": "style",
"description": "Interior design style",
"default": "modern",
"x-order": 1
},
"living_room_image": {
"type": "string",
"title": "Living Room Image",
"format": "uri",
"x-order": 0,
"description": "Photo of the living room to redesign"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "object",
"title": "Output",
"required": [
"empty_room",
"transformed_image",
"style_description"
],
"properties": {
"empty_room": {
"type": "string",
"title": "Empty Room",
"format": "uri"
},
"style_description": {
"type": "string",
"title": "Style Description"
},
"transformed_image": {
"type": "string",
"title": "Transformed Image",
"format": "uri"
}
}
}