Home / Companies / Weaviate / Blog / September 2025

September 2025 Summaries

5 posts from Weaviate

Filter
Month: Year:
Post Summaries Back to Blog
Enterprises integrating AI systems must balance the use of evals and guardrails to ensure reliability and trustworthiness, as discussed in Part 1 of the series. While guardrails act as real-time filters and constraints to prevent harmful inputs and outputs, evals provide logging and performance data to understand system behavior and refine these guardrails. The LLM-as-Judge pattern is introduced as a versatile evaluation model that assesses the quality of AI outputs in real-time by using a separate model to score outputs against explicit criteria, offering a dynamic layer of reasoning that complements existing domain-specific validations. An implementation example using a retail search application demonstrates how the LLM judge evaluates the relevance of search results to customer queries, utilizing tools like LangChain and Weights & Biases for the composable pipeline and evaluation tracking. This pattern transforms evaluation from rigid rules to adaptive reasoning, ensuring AI systems not only operate correctly but also learn and improve over time.
Sep 25, 2025 2,228 words in the original blog post.
Weaviate has achieved ISO 27001:2022 certification, an international standard for information security management systems, demonstrating its commitment to securing customer data through rigorous security measures and third-party audits. This certification enhances customer trust, particularly for those in regulated industries, by providing independent verification of Weaviate's security practices. In addition to ISO 27001, Weaviate holds SOC II Type II certification and offers HIPAA-compliant services, creating a robust security framework that meets diverse compliance requirements. Customers can access audit reports and certificates via Weaviate's trust portal, while resources like tutorials and demos are available to help users build secure applications using Weaviate Cloud.
Sep 24, 2025 398 words in the original blog post.
Weaviate has launched the Query Agent, marking a significant development in data interaction by enabling developers to query data using natural language, bridging the gap between structured and unstructured data. Unlike traditional SQL or Retrieval-Augmented Generation (RAG) methods, the Query Agent acts as an intermediary that comprehends schemas, APIs, and user intent, allowing for automatic filtering, joining, and aggregation. It operates in two main modes: Ask Mode, which generates precise answers based on data, and Search Mode, which optimizes retrieval quality without answer generation. The Query Agent supports features like multi-collection query routing, query expansion, and intelligent reranking, offering a seamless and efficient data interaction experience. Since its preview release, new functionalities have been added, such as user-defined filters, multi-tenant support, full conversation memory for chat applications, and real-time streaming updates. Early adopters, like MetaBuddy, have successfully implemented the Query Agent to transform their data queries into engaging and insightful experiences, significantly enhancing user engagement and efficiency.
Sep 17, 2025 1,387 words in the original blog post.
The text provides a comprehensive guide to using and integrating Weaviate Cloud (WCD) queries into iOS and macOS applications, focusing on the concept of vector similarity search, which helps find similar data efficiently. It simplifies the process by explaining various query types and offering a downloadable Query Helper Application for Mac users to test queries in real-time. The guide, based on Adam Chan's Book Recommendation project, covers essential query functions like data retrieval, reordering, summarizing, and translating, requiring different API keys for advanced features. It positions Weaviate Cloud as a managed service that abstracts the complexities of AI infrastructure, enabling developers to concentrate on building innovative features such as recommendation engines. The article provides practical examples and code templates to empower users to develop sophisticated, AI-driven applications confidently, encouraging them to explore further through a Quickstart tutorial and additional resources.
Sep 09, 2025 1,725 words in the original blog post.
Grounding AI applications with Large Language Models (LLMs) in specific data is crucial for accuracy, and Retrieval-Augmented Generation (RAG) achieves this by linking LLMs to external knowledge sources like vector databases. A key factor in RAG's performance is the data preparation process, specifically chunking, which involves breaking large documents into smaller, manageable chunks to fit within LLMs' limited context windows. Effective chunking strategies, such as fixed-size, recursive, document-based, semantic, and LLM-based chunking, are critical for optimizing retrieval accuracy and preserving context for text generation. The choice of chunking technique depends on the document's nature, the level of detail required, the embedding model used, and the complexity of user queries. Advanced methods like late, hierarchical, and adaptive chunking further refine the process by maintaining context and adjusting parameters dynamically. Tools like LangChain and LlamaIndex, along with manual implementation options, provide frameworks and flexibility for integrating chunking into RAG pipelines, while continuous optimization and testing are essential for maintaining effectiveness in production.
Sep 04, 2025 4,502 words in the original blog post.