Skip to content

Instantly share code, notes, and snippets.

@Miciurash
Last active July 23, 2025 13:25
Show Gist options
  • Select an option

  • Save Miciurash/10365928b886ef8c58763d3d99fa0d03 to your computer and use it in GitHub Desktop.

Select an option

Save Miciurash/10365928b886ef8c58763d3d99fa0d03 to your computer and use it in GitHub Desktop.
flowchart TD
    A["User Input (Voice Query)"] --> B["Responder (Talker: System 1 - Fast)"]
    B -->|Simple Task| C["Quick Response (Voice Output)"]
    B -->|Complex Task| D["Shared Memory (Beliefs, Plans, Context)"]
    B -->|Delegate/Wait Briefly| E["Thinker (Reasoner: System 2 - Slow)"]
    E -->|Reasoning, Planning, Tool Calls| D
    D -->|Update Insights| B
    B -->|Enhanced Response| C
    subgraph "Low Latency Loop"
        B
    end
    subgraph "Asynchronous Deep Processing"
        E
    end
    %% style A fill:#f9f,stroke:#333
    %% style C fill:#f9f,stroke:#333
    %% style D fill:#bbf,stroke:#333
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment