webcraft-ai-backend / api_response.json
Assem0's picture
RAG V1
9b7359e
Raw
History Blame Contribute Delete
1.13 kB
{
"status": "success",
"workspace": {
"blocks": [
{ "id": "root", "type": "html_html" },
{ "id": "body", "type": "html_body" },
{ "id": "sect", "type": "html_section" },
{
"id": "cls",
"type": "html_attr_class",
"props": { "VALUE": "bg-blue-600 p-10 text-center" }
},
{ "id": "h1", "type": "html_h1" },
{
"id": "t1",
"type": "text_content",
"props": { "TEXT": "Hello World" }
},
{ "id": "img", "type": "html_img" },
{
"id": "src",
"type": "text_value",
"props": { "TEXT": "https://example.com/hero.jpg" }
},
{
"id": "alt",
"type": "text_value",
"props": { "TEXT": "Hero section banner" }
}
],
"connections": [
["root.CONTENT", "body"],
["body.CONTENT", "sect"],
["sect.ATTRS", "cls"],
["sect.CONTENT", "h1"],
["h1.CONTENT", "t1"],
["sect.CONTENT", "img"],
["img.SRC", "src"],
["img.ALT", "alt"]
]
},
"block_count": 9,
"attempts": 1,
"message": "Successfully generated 9 blocks"
}