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: Continuous learning, Learning loop, Harness-layer learning
Harness-layer improvement from production signal: updating prompts, tools, workflows, retrieval, memory, and evals so the learnings live outside the model weights and apply across whichever model the harness mounts.
The agent harness is where continual learning (sometimes called continuous learning) actually happens in production: revised system prompts, retightened tool schemas, restructured workflows, expanded retrieval indices, new skills, updated eval sets, and per-user memory. The term describes closing the loop between what an agent does in production and how the agent is built. 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 not a continual learning system; it is a harness engineering platform that does the work this loop needs — turning production traces into verified improvements to the harness.
RelatedAgent harness, Self-improving agent, Intent discovery, Behavioral failure, Moda
Read the guide: Continual learning →
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