Also known as: Cluster Hierarchy V2, Hierarchical clustering
Three-level segment clustering — Category → Subcategory → Cluster — built with HDBSCAN over Qwen3 embeddings.
Moda's cluster hierarchy groups conversation segments into a three-level taxonomy: broad categories, mid-level subcategories, and tight clusters. The hierarchy is built with HDBSCAN over 4096-D Qwen3-Embedding-8B embeddings, with UMAP projection for visualization. New segments are assigned online via kNN so the taxonomy stays current without rerunning the full clustering job. Cluster labels are generated with TF-IDF plus Claude Haiku 4.5.
RelatedIntent discovery, Segment, Conversation analytics
A behavioral failure where the agent forgets earlier turns, contradicts itself, or asks the user to re-supply known information.
Context loss happens when an AI agent loses track of information from earlier in the conversation — forgetting user preferences, repeating questions already answered, or contradicting prior statements. It is common in long sessions, multi-step workflows, and conversations that exceed the model's effective attention window. Context loss is a behavioral failure: every individual call may succeed, but the conversation as a whole degrades.
RelatedBehavioral failure, Frustration root cause
Also known as: Continual learning, Learning loop, Harness-layer learning
Updating the agent harness — prompts, tools, workflows, retrieval, memory, evals — from production signal, with the learnings living outside the model weights so they apply across whichever model the harness mounts.
Continuous learning (sometimes called continual learning) is the practice of closing the loop between what an agent does in production and how the agent is built. In production most of the loop happens on the harness layer: revised system prompts, retightened tool schemas, restructured workflows, expanded retrieval indices, updated eval sets, and per-user harness state. Model fine-tunes are an option but rarely the first step — they are heavier, harder to inspect, and bound to a specific model. Keeping learnings outside the model weights makes them portable across models, inspectable, reversible, per-user adaptable, and continuously updatable without retraining. Moda is built as the discovery and debug half of that loop — production conversations in, harness-layer learnings out.
RelatedAgent harness, Self-improving agent, Intent discovery, Behavioral failure, Moda
Also known as: LLM conversation analytics, Conversation intelligence
Analytics that treat full agent conversations — not individual calls — as the unit of analysis.
Conversation analytics for AI agents measures population-level behavior across every interaction: what users are trying to do, how often they succeed, where they get stuck, and which intents correlate with churn or escalation. Unlike per-call telemetry, conversation analytics requires segmenting, clustering, and labeling natural-language interactions. Moda automates this with hierarchical clustering of conversation segments.
RelatedIntent discovery, AI agent observability, Cluster hierarchy