CoolFace
Apppublic

hmb/errors_space

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
workflow.json59 linesDownload Raw Back to root
1{2  "schema_version": "2",3  "name": "Error Banner Demo",4  "runtime": { "default": "client" },5  "references": [6    {7      "id": "ref_prompt",8      "label": "Prompt",9      "role": "reference",10      "asset_type": "text",11      "inputs": [{ "id": "in", "label": "Text", "type": "text" }],12      "outputs": [{ "id": "out", "label": "Text", "type": "text" }],13      "x": 80, "y": 140, "width": 220, "height": 163,14      "data": {15        "in": "A lone lighthouse on a rocky cliff at sunset, dramatic storm clouds rolling in, golden hour light breaking through, oil painting style, highly detailed"16      }17    }18  ],19  "operators": [20    {21      "id": "op_flux",22      "label": "Generate Image",23      "role": "operator",24      "kind": "space",25      "source": "hf://spaces/multimodalart/FLUX.1-merged",26      "space_id": "multimodalart/FLUX.1-merged",27      "runtime": "client",28      "x": 380, "y": 140, "width": 220, "height": 124,29      "inputs": [{ "id": "in_0", "label": "Prompt", "type": "text", "required": true }],30      "outputs": [{ "id": "out_0", "label": "Image", "type": "image", "output_index": 0 }],31      "endpoints": [32        {33          "name": "/generate",34          "inputs": [{ "id": "in_0", "label": "Prompt", "type": "text", "required": true }],35          "outputs": [{ "id": "out_0", "label": "Image", "type": "image", "output_index": 0 }]36        }37      ],38      "data": {}39    }40  ],41  "subjects": [42    {43      "id": "sub_out",44      "label": "Generated Image",45      "role": "subject",46      "asset_type": "image",47      "inputs": [{ "id": "in", "label": "Image", "type": "image" }],48      "outputs": [{ "id": "out", "label": "Image", "type": "image" }],49      "x": 680, "y": 140, "width": 220, "height": 107,50      "data": {}51    }52  ],53  "edges": [54    { "id": "e1", "from_node_id": "ref_prompt", "from_port_id": "out", "to_node_id": "op_flux", "to_port_id": "in_0", "type": "text" },55    { "id": "e2", "from_node_id": "op_flux", "from_port_id": "out_0", "to_node_id": "sub_out", "to_port_id": "in", "type": "image" }56  ],57  "view": { "default": "canvas" }58}59