diff --git a/docs/wiki/LLM-Router.md b/docs/wiki/LLM-Router.md index 939bf32..3133008 100644 --- a/docs/wiki/LLM-Router.md +++ b/docs/wiki/LLM-Router.md @@ -6,17 +6,17 @@ The LLM Router provides a unified interface for language model calls. Agents req ``` ┌─────────────────────────────────────────────────────────────────┐ -│ Agent Handler │ +│ Agent Handler │ │ response = await complete("grok-4.1", messages) │ └─────────────────────────────────┬───────────────────────────────┘ │ ▼ ┌─────────────────────────────────────────────────────────────────┐ -│ LLM Router │ -│ • Find backends serving model │ -│ • Select backend (strategy) │ -│ • Retry on failure │ -│ • Track usage per agent │ +│ LLM Router │ +│ • Find backends serving model │ +│ • Select backend (strategy) │ +│ • Retry on failure │ +│ • Track usage per agent │ └────────────┬────────────────┬────────────────┬──────────────────┘ │ │ │ ▼ ▼ ▼ diff --git a/docs/wiki/architecture/Message-Pump.md b/docs/wiki/architecture/Message-Pump.md index 3391c67..61edf21 100644 --- a/docs/wiki/architecture/Message-Pump.md +++ b/docs/wiki/architecture/Message-Pump.md @@ -28,17 +28,17 @@ await pump.shutdown() │ ▼ ┌──────────────────────────────────────────────────────────────┐ -│ INGRESS PIPELINE │ +│ INGRESS PIPELINE │ │ │ -│ ┌─────────┐ ┌──────┐ ┌──────────┐ ┌─────────────┐ │ -│ │ Repair │ → │ C14N │ → │ Envelope │ → │ Payload │ │ -│ │ Step │ │ Step │ │ Validate │ │ Extraction │ │ -│ └─────────┘ └──────┘ └──────────┘ └─────────────┘ │ +│ ┌─────────┐ ┌──────┐ ┌──────────┐ ┌─────────────┐ │ +│ │ Repair │ → │ C14N │ → │ Envelope │ → │ Payload │ │ +│ │ Step │ │ Step │ │ Validate │ │ Extraction │ │ +│ └─────────┘ └──────┘ └──────────┘ └─────────────┘ │ │ │ -│ ┌──────────┐ ┌─────────┐ ┌─────────────┐ │ -│ │ Thread │ → │ XSD │ → │ Deserialize │ │ -│ │ Assign │ │ Validate│ │ to class │ │ -│ └──────────┘ └─────────┘ └─────────────┘ │ +│ ┌──────────┐ ┌─────────┐ ┌─────────────┐ │ +│ │ Thread │ → │ XSD │ → │ Deserialize │ │ +│ │ Assign │ │ Validate│ │ to class │ │ +│ └──────────┘ └─────────┘ └─────────────┘ │ │ │ └──────────────────────────────────────────────────────────────┘ │ diff --git a/docs/wiki/architecture/Overview.md b/docs/wiki/architecture/Overview.md index f56f2cf..a91149c 100644 --- a/docs/wiki/architecture/Overview.md +++ b/docs/wiki/architecture/Overview.md @@ -223,7 +223,7 @@ For CPU-bound handlers: ``` ┌─────────────────────────────────────────────────────────────────┐ -│ Main Process (StreamPump) │ +│ Main Process (StreamPump) │ │ - Ingress pipeline │ │ - Routing decisions │ │ - Response re-injection │ @@ -240,7 +240,7 @@ For CPU-bound handlers: └─────────────────┼──────────────────┘ ▼ ┌─────────────────────────────────────────────────────────────────┐ -│ Shared Backend (Redis / Manager / Memory) │ +│ Shared Backend (Redis / Manager / Memory) │ │ - Context buffer slots │ │ - Thread registry mappings │ └─────────────────────────────────────────────────────────────────┘