This topology maps how unstructured TikTok live chat (Social) is grounded by PopShelf's deterministic inventory (Knowledge) to produce real-time, zero-hallucination seller dialogue (Generative).
graph TD
classDef social fill:#3b1c1c,stroke:#ff6b6b,stroke-width:2px,color:#fff;
classDef knowledge fill:#1a2b3c,stroke:#4dabf7,stroke-width:2px,color:#fff;
classDef generative fill:#1c3b2b,stroke:#51cf66,stroke-width:2px,color:#fff;
classDef default fill:#2a2a35,stroke:#555,stroke-width:1px,color:#fff;
subgraph Social_Graph [Social Node - Audience / Rented Land]
V[Viewer: Profile, Loyalty Tier]:::social
I[Interaction: Live Comment, Sentiment]:::social
end
subgraph Knowledge_Graph [Knowledge Node - The Truth / Owned Land]
P[Product: SKU, Price, Stock Status]:::knowledge
S[Session: Run of Show, Time Remaining]:::knowledge
end
subgraph Generative_Graph [Generative Node - The Engine]
SC[Script Component: Hooks, Pitch, CTA]:::generative
R[Teleprompter Output: Seller Dialogue]:::generative
end
V -->|Generates| I
I -->|Intent Extraction| SC
I -.->|Checks Availability| P
S -->|Paces| SC
P -->|Constrains| SC
SC -->|Assembles| R