From 983fced410fbef5deb64402cf1ee0aa7bb640bd3 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Thu, 14 Aug 2025 22:31:19 +0200 Subject: [PATCH] Doc: Fixed Transcribe graph --- readme/apps/transcribe/system_architecture.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/readme/apps/transcribe/system_architecture.md b/readme/apps/transcribe/system_architecture.md index 785a8df26b..5d892a9137 100644 --- a/readme/apps/transcribe/system_architecture.md +++ b/readme/apps/transcribe/system_architecture.md @@ -66,12 +66,12 @@ flowchart LR ```mermaid flowchart LR - subgraph ClientSide - Client((Client)) + subgraph Client + ClientNode((Joplin)) end - subgraph Joplin - JS[[Joplin Server API]] + subgraph JoplinServer + JS[[REST API]] end subgraph Transcribe @@ -83,7 +83,7 @@ flowchart LR Engine[[LlamaCPP + LLM]] end - Client -- "POST /transcribe" --> JS + ClientNode -- "POST /transcribe" --> JS JS -- "POST /transcribe?secret=***" --> API API -- "Persist job (created)" --> DB API -- "Save image" --> Store @@ -95,11 +95,11 @@ flowchart LR Worker -- "Update status/result" --> DB Worker -- "Delete image" --> Store - Client -- "POST /transcribe/:job_id" --> JS + ClientNode -- "POST /transcribe/:job_id" --> JS JS -- "POST /transcribe/:job_id?secret=***" --> API API -- "Read status/result" --> DB API -- "Status/result" --> JS - JS -- "Status/result (text)" --> Client + JS -- "Status/result (text)" --> ClientNode ``` ### Job status lifecycle