mirror of
https://github.com/mudler/LocalAI.git
synced 2026-06-14 19:58:44 -04:00
* docs: add 'how LocalAI works' architecture diagram Add a blueprint-style architecture diagram: clients -> small core (API, router, WebUI, agents) -> gRPC -> backend processes pulled on demand as OCI images. Place it on the overview page and replace the stale external architecture image on the reference page. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * docs: add blueprint diagrams across feature, distributed & getting-started docs Add 24 architecture/flow/comparison diagrams (PNG + HTML source) under docs/static/images/diagrams/, wired into their docs pages, from an impact-vs-effort audit of the docs. Broaden the API surface on the overview architecture diagram (OpenAI, Anthropic, ElevenLabs, Ollama, and LocalAI's own API) and move the gRPC boundary label clear of the arrows. Pages: distributed mode (architecture, scheduling, ds4 layer-split), distributed inferencing, MLX, realtime, quantization, MCP, agents, mitm & cloud proxy, middleware, reverse-proxy TLS, VRAM, voice & face recognition, reranker, function calling, fine-tuning (recipe + jobs), diarization, audio transform, quickstart, model resolution. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * docs: add composable-core diagram to README hero Commit the composable-core card (small core + on-demand backend tiles) alongside the other diagrams and reference it from the README hero via a repo-relative path, so it renders on GitHub. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * docs: fix composable-core connectors/badge and federated-vs-worker layout - composable-core: thicken the plug-in connectors so they read clearly, and widen the SEPARATE IMAGE badge so its text no longer overflows the box. - federated-vs-worker: shorten the WHOLE/SPLIT REQUEST pills to fit, and replace the tangled node-to-node activation arrows with a clean fan-out (request split across all sharded nodes), mirroring the federated panel. Assisted-by: Claude:claude-opus-4-8 [Claude Code] Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io> Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
161 lines
8.0 KiB
HTML
161 lines
8.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Archivo:wght@500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root{
|
|
--paper:#F3E8D2; --paper2:#ECDFC2; --ink:#211C14; --ink-soft:#5A5142;
|
|
--rust:#B43A2C; --rust-deep:#8F2C20; --cold:#3F6E73; --hi:#E7D6AE; --dim:#A99F88;
|
|
}
|
|
*{box-sizing:border-box;margin:0;padding:0}
|
|
html,body{width:1600px;height:900px}
|
|
body{
|
|
background:var(--paper);color:var(--ink);font-family:"Archivo",sans-serif;
|
|
position:relative;overflow:hidden;
|
|
background-image:
|
|
linear-gradient(var(--paper2) 1px,transparent 1px),
|
|
linear-gradient(90deg,var(--paper2) 1px,transparent 1px);
|
|
background-size:40px 40px;
|
|
}
|
|
.frame{position:absolute;inset:26px;border:3px solid var(--ink);}
|
|
.wrap{position:absolute;inset:26px;padding:30px 56px 26px;display:flex;flex-direction:column}
|
|
header{display:flex;align-items:flex-end;justify-content:space-between;gap:30px}
|
|
.eyebrow{font-weight:700;letter-spacing:.22em;text-transform:uppercase;font-size:17px;color:var(--rust-deep)}
|
|
.eyebrow b{color:var(--ink)}
|
|
h1{font-family:"Bricolage Grotesque",sans-serif;font-weight:800;font-size:50px;line-height:.98;letter-spacing:-.015em;margin-top:6px}
|
|
h1 em{font-style:normal;color:var(--rust)}
|
|
.stamp{border:3px solid var(--ink);padding:10px 16px 8px;transform:rotate(3deg);text-align:center;background:var(--paper);box-shadow:6px 6px 0 var(--ink);flex:none}
|
|
.stamp .k{font-family:"Bricolage Grotesque";font-weight:800;font-size:21px;letter-spacing:.04em;line-height:1.05}
|
|
.stamp .s{font-weight:700;font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-soft);margin-top:5px}
|
|
.stage{flex:1;margin-top:8px}
|
|
svg{width:100%;height:100%;overflow:visible}
|
|
footer{display:flex;align-items:center;justify-content:space-between;margin-top:6px;gap:24px}
|
|
.note{font-weight:600;font-size:18px;color:var(--ink-soft);line-height:1.3;max-width:1080px}
|
|
.note b{color:var(--ink)}
|
|
.url{font-family:"Bricolage Grotesque";font-weight:800;font-size:22px;color:var(--rust-deep);letter-spacing:.01em;flex:none}
|
|
.url span{color:var(--ink)}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="frame"></div>
|
|
<div class="wrap">
|
|
<header>
|
|
<div>
|
|
<div class="eyebrow">LocalAI <b>·</b> Face Recognition</div>
|
|
<h1>Identify, with a <em>liveness gate</em></h1>
|
|
</div>
|
|
<div class="stamp">
|
|
<div class="k">1:N</div>
|
|
<div class="s">+ live</div>
|
|
</div>
|
|
</header>
|
|
<div class="stage"><svg viewBox="0 0 1480 560" id="svg"></svg></div>
|
|
<footer>
|
|
<div class="note">1:N match against a vector store; <b>anti-spoofing can veto a verification.</b></div>
|
|
<div class="url">localai.io<span>/features/face-recognition</span></div>
|
|
</footer>
|
|
</div>
|
|
<script>
|
|
const INK="#211C14", PAPER="#F3E8D2", PAPER2="#ECDFC2", HI="#E7D6AE", SOFT="#5A5142", RUST="#B43A2C", RUSTD="#8F2C20", COLD="#3F6E73", DIM="#A99F88";
|
|
function el(t,a,x){const e=document.createElementNS("http://www.w3.org/2000/svg",t);for(const k in a)e.setAttribute(k,a[k]);if(x!=null)e.textContent=x;return e;}
|
|
const svg=document.getElementById("svg");
|
|
function shadowRect(x,y,w,h,fill,stroke,sw,dash){
|
|
svg.appendChild(el("rect",{x:x+7,y:y+7,width:w,height:h,fill:INK}));
|
|
svg.appendChild(el("rect",{x,y,width:w,height:h,fill,stroke:stroke||INK,"stroke-width":sw||3.5,"stroke-dasharray":dash||"none"}));
|
|
}
|
|
function txt(x,y,s,o){o=o||{};svg.appendChild(el("text",{x,y,"font-family":o.f||"Archivo","font-weight":o.w||700,"font-size":o.sz||15,"letter-spacing":o.ls||"0","text-anchor":o.a||"start",fill:o.fill||INK},s));}
|
|
function arrow(x1,y1,x2,y2,color,dash){
|
|
const mx=(x1+x2)/2;
|
|
svg.appendChild(el("path",{d:`M ${x1} ${y1} C ${mx} ${y1}, ${mx} ${y2}, ${x2-11} ${y2}`,fill:"none",stroke:color,"stroke-width":3.5,"stroke-linecap":"round","stroke-dasharray":dash||"none"}));
|
|
const a=7;
|
|
svg.appendChild(el("path",{d:`M ${x2-11} ${y2} l -${a+4} -${a} M ${x2-11} ${y2} l -${a+4} ${a}`,fill:"none",stroke:color,"stroke-width":3.5,"stroke-linecap":"round"}));
|
|
}
|
|
// vertical arrow (top -> bottom)
|
|
function arrowV(x1,y1,x2,y2,color,dash){
|
|
const my=(y1+y2)/2;
|
|
svg.appendChild(el("path",{d:`M ${x1} ${y1} C ${x1} ${my}, ${x2} ${my}, ${x2} ${y2-11}`,fill:"none",stroke:color,"stroke-width":3.5,"stroke-linecap":"round","stroke-dasharray":dash||"none"}));
|
|
const a=7;
|
|
svg.appendChild(el("path",{d:`M ${x2} ${y2-11} l -${a} -${a+4} M ${x2} ${y2-11} l ${a} -${a+4}`,fill:"none",stroke:color,"stroke-width":3.5,"stroke-linecap":"round"}));
|
|
}
|
|
|
|
// small reusable "node" box helper
|
|
function node(x,y,w,h,title,sub,fill,strokeCol,sw,dash){
|
|
if(dash){ svg.appendChild(el("rect",{x,y,width:w,height:h,fill,stroke:strokeCol||INK,"stroke-width":sw||3.5,"stroke-dasharray":dash})); }
|
|
else { shadowRect(x,y,w,h,fill,strokeCol,sw); }
|
|
if(sub){
|
|
txt(x+w/2,y+h/2-2,title,{f:"Bricolage Grotesque",w:800,sz:21,a:"middle"});
|
|
txt(x+w/2,y+h/2+19,sub,{w:700,sz:12.5,a:"middle",fill:SOFT});
|
|
} else {
|
|
txt(x+w/2,y+h/2+7,title,{f:"Bricolage Grotesque",w:800,sz:21,a:"middle"});
|
|
}
|
|
}
|
|
|
|
// ============ VECTOR STORE (shared, top-right anchor) ============
|
|
const VSx=1110, VSy=40, VSw=320, VSh=120;
|
|
shadowRect(VSx,VSy,VSw,VSh,HI,INK,4);
|
|
txt(VSx+22,VSy+44,"Vector store",{f:"Bricolage Grotesque",w:800,sz:27});
|
|
txt(VSx+22,VSy+74,"face embeddings · index",{w:700,sz:14,fill:SOFT});
|
|
txt(VSx+22,VSy+98,"shared by register & identify",{w:700,sz:13,fill:RUSTD});
|
|
|
|
// ============ REGISTER lane (top) ============
|
|
txt(20,42,"REGISTER",{w:700,sz:14,ls:".2em",fill:SOFT});
|
|
const rY=70, rH=66;
|
|
node(24, rY, 200, rH, "Image", "enroll photo", PAPER2);
|
|
node(304, rY, 200, rH, "Face embedding", "vectorize", PAPER2);
|
|
// arrows register
|
|
arrow(24+200, rY+rH/2, 304, rY+rH/2, COLD);
|
|
// embedding -> store (up-right into vector store)
|
|
arrow(304+200, rY+rH/2, VSx, VSy+34, COLD);
|
|
txt(560, rY-2, "store", {w:700,sz:13,a:"middle",fill:COLD});
|
|
|
|
// ============ IDENTIFY lane (middle) ============
|
|
txt(20,232,"IDENTIFY",{w:700,sz:14,ls:".2em",fill:SOFT});
|
|
const iY=258, iH=66;
|
|
node(24, iY, 178, iH, "Probe image", "query face", PAPER2);
|
|
node(254, iY, 168, iH, "Embedding", "vectorize", PAPER2);
|
|
node(474, iY, 200, iH, "Top-K cosine", "search store", PAPER2);
|
|
node(726, iY, 168, iH, "Match", "best candidate", "#EFE0BF");
|
|
// arrows identify chain
|
|
arrow(24+178, iY+iH/2, 254, iY+iH/2, INK);
|
|
arrow(254+168, iY+iH/2, 474, iY+iH/2, INK);
|
|
arrow(474+200, iY+iH/2, 726, iY+iH/2, INK);
|
|
// store -> top-K cosine (dashed lookup, from vector store down)
|
|
arrowV(VSx+VSw/2, VSy+VSh, 574, iY, RUSTD, "3 8");
|
|
txt(VSx+VSw/2+12, VSy+VSh+34, "lookup", {w:700,sz:13,a:"middle",fill:RUSTD});
|
|
|
|
// ============ VERIFY (bottom, highlight) ============
|
|
txt(20,432,"VERIFY",{w:700,sz:14,ls:".2em",fill:RUSTD});
|
|
|
|
// liveness / anti-spoof box (left-lower)
|
|
const lvX=24, lvY=452, lvW=240, lvH=78;
|
|
shadowRect(lvX,lvY,lvW,lvH,PAPER,RUST,4);
|
|
txt(lvX+lvW/2,lvY+34,"Liveness / anti-spoof",{f:"Bricolage Grotesque",w:800,sz:19,a:"middle",fill:RUST});
|
|
txt(lvX+lvW/2,lvY+58,"can VETO the match",{w:700,sz:13,a:"middle",fill:RUSTD});
|
|
|
|
// AND gate
|
|
const agX=560, agY=458, agW=160, agH=66;
|
|
shadowRect(agX,agY,agW,agH,RUST,INK,4);
|
|
txt(agX+agW/2,agY+30,"AND gate",{f:"Bricolage Grotesque",w:800,sz:22,a:"middle",fill:PAPER});
|
|
txt(agX+agW/2,agY+52,"both must pass",{w:700,sz:12.5,a:"middle",fill:"#F1D9C8"});
|
|
|
|
// verified box
|
|
const vbX=820, vbY=452, vbW=200, vbH=78;
|
|
shadowRect(vbX,vbY,vbW,vbH,HI,INK,4);
|
|
txt(vbX+vbW/2,vbY+34,"Verified",{f:"Bricolage Grotesque",w:800,sz:24,a:"middle"});
|
|
txt(vbX+vbW/2,vbY+58,"identity confirmed",{w:700,sz:13,a:"middle",fill:SOFT});
|
|
|
|
// match result -> AND gate (from identify Match box, down)
|
|
arrowV(726+168/2, iY+iH, agX+50, agY, INK);
|
|
txt(726+168/2+86, iY+iH+44, "match result", {w:700,sz:13,a:"middle",fill:INK});
|
|
// liveness -> AND gate (gating input, rust)
|
|
arrow(lvX+lvW, lvY+lvH/2, agX, agY+agH/2, RUST);
|
|
// AND gate -> verified
|
|
arrow(agX+agW, agY+agH/2, vbX, vbY+vbH/2, RUST);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|