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
An AI system that improves over time by feeding production signal — user intent, failures, corrections — back into the next iteration of the agent.
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 an agent context it means: ingest every production conversation, mine it for what users actually want and where the agent fails, then route those signals into evals, prompts, fine-tuning, tool definitions, and routing rules. Moda is built as the discovery and debug half of that loop — production conversations in, continually improving agents out.
RelatedSelf-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