logic.mmd #3

Open
opened 2026-01-04 12:41:11 +00:00 by iN0mad · 0 comments
Owner
graph LR
    %% 1. INGESTION LAYER
    subgraph INGEST [1. LISTEN]
        direction TB
        AUDIO(Voice Calls)
        CHAT(Messenger Text)
        MEET(Meeting Notes)
    end

    %% 2. COGNITIVE LAYER
    subgraph THINK [2. THINK]
        direction TB
        TRANS(AI Transcriber)
        EXTRACT(Entity Extraction)
        INTENT(Intent Classifier)
    end

    %% 3. MEMORY LAYER
    subgraph MEMORY [3. REMEMBER]
        direction TB
        NEO4J(Neo4j Graph DB)
        REL(Relationships)
    end

    %% 4. ACTION LAYER
    subgraph ACT [4. ACT]
        direction TB
        MATCH(MATCHMAKING ENGINE)
        NOTIFY(Smart Notifications)
        DOCS(Auto-Contracts)
    end

    %% CONNECTIONS
    AUDIO --> TRANS
    CHAT --> TRANS
    MEET --> TRANS
    
    TRANS --> EXTRACT
    EXTRACT --> INTENT
    INTENT --> NEO4J
    
    NEO4J --> MATCH
    MATCH --> NEO4J
    
    MATCH --> NOTIFY
    MATCH --> DOCS
    
    REL -.-> NEO4J
```mermaid graph LR %% 1. INGESTION LAYER subgraph INGEST [1. LISTEN] direction TB AUDIO(Voice Calls) CHAT(Messenger Text) MEET(Meeting Notes) end %% 2. COGNITIVE LAYER subgraph THINK [2. THINK] direction TB TRANS(AI Transcriber) EXTRACT(Entity Extraction) INTENT(Intent Classifier) end %% 3. MEMORY LAYER subgraph MEMORY [3. REMEMBER] direction TB NEO4J(Neo4j Graph DB) REL(Relationships) end %% 4. ACTION LAYER subgraph ACT [4. ACT] direction TB MATCH(MATCHMAKING ENGINE) NOTIFY(Smart Notifications) DOCS(Auto-Contracts) end %% CONNECTIONS AUDIO --> TRANS CHAT --> TRANS MEET --> TRANS TRANS --> EXTRACT EXTRACT --> INTENT INTENT --> NEO4J NEO4J --> MATCH MATCH --> NEO4J MATCH --> NOTIFY MATCH --> DOCS REL -.-> NEO4J
iN0mad changed title from logic.mmd to logic.md 2026-01-04 12:48:26 +00:00
iN0mad changed title from logic.md to logic.mmd 2026-01-04 12:50:33 +00:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: iN0mad/antigravity#3