Linear pipeline flow
Map our new automated mortgage approval process workflow.
Try in PlaygroundExample brief
Create a linear flow diagram showing how a mortgage application moves from the initial member origination channels through to the final loan servicing system. Include the steps for document parsing, identity verification, and the automated risk scoring engine which is our primary focus. Show that while the engine scores the risk, a human underwriter must still perform the final review before it hits the core system, and ensure there is a secondary control line for the compliance audit trail.
Render it
Structured intent — create_slide payload
Copy-paste-ready. Renders deterministically (verbatim, no LLM). Add a theme_id for any of the built-in themes — the layout stays identical.
{
"form": "system_flow_map",
"variant": "linear_pipeline_flow",
"headline": "Automated mortgage underwriting speeds closing while ensuring compliance",
"context": "Mortgage application processing pipeline",
"data": {
"nodes": [
{
"id": "in",
"label": "Origination",
"detail": "mobile · branch · web",
"col": 0,
"type": "channel"
},
{
"id": "ocr",
"label": "Document Parsing",
"col": 1,
"type": "service"
},
{
"id": "match",
"label": "Member Verification",
"col": 2,
"type": "service"
},
{
"id": "sum",
"label": "Risk Scoring Engine",
"detail": "FICO & DTI validation",
"col": 3,
"type": "model",
"emphasis": "primary"
},
{
"id": "rev",
"label": "Underwriter Approval",
"col": 4,
"type": "human"
},
{
"id": "core",
"label": "Loan Servicing",
"col": 5,
"type": "outcome"
}
],
"edges": [
{
"from": "in",
"to": "ocr",
"kind": "data"
},
{
"from": "ocr",
"to": "match",
"kind": "data"
},
{
"from": "match",
"to": "sum",
"kind": "data"
},
{
"from": "sum",
"to": "rev",
"kind": "data"
},
{
"from": "rev",
"to": "core",
"kind": "data"
},
{
"from": "sum",
"to": "core",
"label": "compliance trail",
"kind": "control"
}
]
}
}cURL (REST)
curl -X POST https://api.slideforge.dev/v1/render/intent \
-H "Authorization: Bearer sf_live_..." \
-H "Content-Type: application/json" \
-d '{"form":"system_flow_map","variant":"linear_pipeline_flow","headline":"Automated mortgage underwriting speeds closing while ensuring compliance","context":"Mortgage application processing pipeline","data":{"nodes":[{"id":"in","label":"Origination","detail":"mobile · branch · web","col":0,"type":"channel"},{"id":"ocr","label":"Document Parsing","col":1,"type":"service"},{"id":"match","label":"Member Verification","col":2,"type":"service"},{"id":"sum","label":"Risk Scoring Engine","detail":"FICO & DTI validation","col":3,"type":"model","emphasis":"primary"},{"id":"rev","label":"Underwriter Approval","col":4,"type":"human"},{"id":"core","label":"Loan Servicing","col":5,"type":"outcome"}],"edges":[{"from":"in","to":"ocr","kind":"data"},{"from":"ocr","to":"match","kind":"data"},{"from":"match","to":"sum","kind":"data"},{"from":"sum","to":"rev","kind":"data"},{"from":"rev","to":"core","kind":"data"},{"from":"sum","to":"core","label":"compliance trail","kind":"control"}]}}'Frequently asked questions
How do I render the Linear pipeline flow template?
Send a POST to /v1/render/auto with a brief, or call create_slide via MCP with the structured intent shown below. The response includes an editable .pptx, a PDF, and a PNG. $0.05 per slide.
Does an AI write the slide?
No. SlideForge renders deterministically from a structured intent — no LLM draws the slide, so text is never mangled or fabricated. The optional brief path uses a router to pick the pattern, then renders deterministically.
Can I customize the colors and fonts?
Yes. Pass a theme_id to apply a built-in or custom brand theme; the layout stays the same.
Try this template
Render Linear pipeline flow deterministically — editable PowerPoint in under a second.