Skip to main content
Version 1.5.1
Released November 20, 2025

New Features

Document Summaries

  • Automatic summary generation - Uploaded documents now include automatic summaries
  • Summaries in search results - Summaries appear in search results to provide context
  • Batch summary generation - One summary is generated for every 100 chunks of content
Benefit: Get quick context about documents without reading the full content. Summaries help you understand document relevance at a glance.

Upload Text Directly from Console

  • No file needed - Paste or type your text content directly in the namespace console
  • Faster processing - Text-only uploads are processed more quickly than file uploads
  • Automatic chunking and indexing - Text is automatically chunked and indexed for search
  • Optional metadata - Add custom metadata fields to organize your content
Benefit: Quickly add text content without creating files. Perfect for notes, snippets, or content that doesn’t need to be stored as a document file.

Improvements

Enhanced Search Results

  • Summary metadata in results - Top results may include summary_text and summary_chunk_id in metadata for better context
  • Automatic summary fetching - Summary information is fetched automatically when available
Example Search Result with Summary:
{
  "id": "doc-123",
  "score": 0.856432,
  "label": "Close Match",
  "text": "...",
  "metadata": {
    "title": "Introduction to ML",
    "summary_text": "This document provides an overview of machine learning...",
    "summary_chunk_id": "summary-123"
  }
}