March 2026 Summaries
3 posts from Moss
Filter
Month:
Year:
Post Summaries
Back to Blog
AI agents often face user experience challenges due to latency issues, but contrary to popular belief, it's not the language models (LLMs) that are the main culprits. Instead, the retrieval process, which involves fetching necessary context from databases, is responsible for significant delays. This "retrieval latency tax" is particularly problematic in real-time AI applications such as voice agents and conversational systems. While LLMs have seen rapid advancements in speed due to hardware and optimization improvements, retrieval latencies have remained stagnant, often hidden from standard benchmarks. As AI agents become more autonomous and rely on multi-step workflows, the need for efficient retrieval processes becomes critical. The industry's current network-service architecture is a bottleneck, and the solution may lie in co-locating retrieval and inference layers within the same process to eliminate costly network round-trips. Addressing this issue is crucial for enhancing the perceived intelligence and user experience of AI products.
Mar 17, 2026
2,053 words in the original blog post.
A recent exploration into optimizing real-time AI applications reveals that moving data retrieval processes from cloud-hosted vector databases to local, in-process configurations drastically reduces latency, enhancing user experience in voice applications. By using a controlled experiment with a production RAG pipeline, researchers demonstrated that co-locating the vector index within the agent process eliminates network latency, serialization overhead, and connection management complexities, resulting in a dramatic improvement in retrieval times—from a median of 67ms and P99 of 222ms to 5ms and 13.5ms, respectively. This shift from network-based to local retrieval not only addresses the tail latency issue but also provides architectural headroom for additional functionalities, such as more complex LLMs or safety checks, by reclaiming significant processing time. The findings suggest that for latency-sensitive AI applications, especially those handling a manageable volume of data, the architectural choice of local retrieval offers substantial advantages over traditional network-dependent methods.
Mar 17, 2026
2,080 words in the original blog post.
Sri Raghu Malireddi and Harsha Nalluru, former leads at Grammarly and Microsoft respectively, developed Moss to address the latency issues faced by AI agents in delivering real-time interactions. Traditional reliance on network-based retrieval from vector databases, such as Pinecone and Weaviate, resulted in delays that disrupted user experiences in chatbots, voice agents, and copilots. By embedding the semantic search index within the same process as the AI agent, Moss eliminates the need for network hops, achieving sub-10ms retrieval times. Built with Rust and WebAssembly for performance and portability, Moss provides a compact and efficient solution for instant local lookups, enhancing the responsiveness of AI systems. Launched through Y Combinator, Moss is gaining traction with platforms where retrieval latency critically impacts user experience, promising further insights into AI architecture in their upcoming series.
Mar 10, 2026
1,314 words in the original blog post.