Home / Companies / Weaviate / Blog / May 2026

May 2026 Summaries

4 posts from Weaviate

Filter
Month: Year:
Post Summaries Back to Blog
Weaviate Cloud has introduced more granular role-based access control (RBAC) by adding two new roles, Editor and Viewer, to its existing roles of Owner and Admin, enhancing security and management capabilities for organizations using the platform. This expanded RBAC system allows for precise permission settings, ensuring users have access only to the resources necessary for their roles, which helps in minimizing accidental changes and maintaining security. The Owner role retains full access, including the ability to manage billing and user invitations, while Admins can manage clusters and day-to-day activities without altering ownership. Editors can handle cluster management without access to billing or user invitations, and Viewers have read-only access for visibility without modification capabilities. Managing these roles is straightforward, with changes taking effect immediately, and organizations must always maintain at least one Owner. For further details or assistance, users are encouraged to consult the product documentation or engage with the community forums.
May 28, 2026 625 words in the original blog post.
The text discusses the implementation of a coding assistant using Weaviate's Model Context Protocol (MCP) server to efficiently manage and retrieve data from a codebase and its documentation. The challenge of working without retrieval is highlighted, as it can lead to inefficiencies when agents guess context or unnecessarily use up tokens. Retrieval-Augmented Generation (RAG) typically solves this by indexing the codebase in a vector database, allowing for precise data retrieval. Weaviate simplifies this process by integrating the MCP server directly within the database, reducing operational complexity. The document outlines steps to set up this system, including enabling MCP, designing schemas for code and documentation chunks, ingesting data, and connecting LLM clients like Claude Code, Cursor, and VS Code. The use of hybrid search, which combines BM25 and vector search, is emphasized for balancing identifier and semantic intent retrieval, thus enhancing the coding assistant's capability to understand and interact with the codebase. This setup allows agents to efficiently query and retrieve relevant code or documentation segments, making the assistant more knowledgeable and effective in providing real-time, contextually accurate responses.
May 21, 2026 4,199 words in the original blog post.
Hybrid search in vector databases combines vector similarity for semantic understanding and BM25 for exact token matching, with tokenization playing a crucial role in determining the effectiveness of the BM25 component. Poor tokenization can lead to search failures, especially in multilingual contexts, by failing to handle language-specific nuances such as accents and non-whitespace-delimited languages. Weaviate v1.37 enhances hybrid search by making its tokenizer observable and adaptable, allowing for per-property configuration to address these issues. This includes support for accent folding, per-language stopwords, and language-specific tokenizers for non-Latin scripts, ensuring more robust and accurate search results across different languages and data types. The update also introduces REST endpoints for testing and verifying tokenization configurations without reindexing, providing a more efficient way to fine-tune search performance.
May 14, 2026 2,672 words in the original blog post.
Research into hallucination detection in multi-agent LLM systems highlights that retrieval quality, rather than model size or configuration, significantly impacts the accuracy and reliability of outputs. Retrieval-Augmented Generation (RAG) systems use an external knowledge store to provide context for language models, but when retrieval fails, models can produce confident yet incorrect outputs. Key failure modes include retrieval drift, context truncation, stale index poisoning, low-relevance top-k retrieval, and inter-agent miscommunication. Addressing these issues involves improving embedding models, chunking architecture, retrieval strategies, and index maintenance while employing metrics like context precision, recall, and faithfulness to evaluate retrieval quality. The research emphasizes that retrieval quality is the most critical factor for ensuring factual accuracy and recommends focusing on retrieval improvements over model scaling, particularly in complex multi-agent systems.
May 06, 2026 2,184 words in the original blog post.