Ragent 1.1.0 Ships Hybrid Retrieval and Full-Lineage Tracing for RAG
Most RAG frameworks stop at vector similarity. Ragent 1.1.0 gives teams a production-grade retrieval stack that combines four search strategies, traces every answer back to its source, and surfaces the cost of each retrieval step — all configurable at runtime without touching code. For anyone building a customer-facing knowledge bot or internal Q&A system, these are the observability and control primitives that separate a demo from a deployable service.
Ragent 1.1.0 is a systematic rebuild of the retrieval, ingestion, and prompt-management layers. Its hybrid retrieval now runs vector, Elasticsearch keyword, LightRAG graph, and You.com web search in parallel, merging results through Reciprocal Rank Fusion and a unified re-ranker. A Scope layer constrains which knowledge bases a query hits, and retrieval budgets are configurable across three stages. Every answer carries persistent source citations down to the document segment, plus auto-generated follow-up questions. The document chunking pipeline now handles multimodal content: a VLM converts images to text, MinerU parses rich documents, and the pipeline logs each stage for traceability. Prompts move from template files to a runtime-configurable Agent Profile and Prompt Slot model with placeholder validation and system-default fallbacks. Model routing is organized into tiered profiles (fast, standard, deep) with circuit-breaker degradation, and a full-link trace shows per-node latency for every request. The architecture refactors retrieval, ingestion, prompt runtime, and object storage into independently evolvable modules, with object storage abstracted behind a single interface that swaps between S3-compatible stores and Alibaba Cloud OSS.
Shipping a four-channel hybrid retrieval system with RRF fusion and a re-ranker moves Ragent past the typical single-vector demo into territory that usually requires stitching together separate services.
Making the Scope layer configurable per intent node and Collection, rather than a global setting, gives operators fine-grained control over which knowledge base answers which question — a practical necessity for multi-tenant or multi-domain deployments that most RAG frameworks skip.
Decoupling vectorized text from display text in the chunking pipeline is a quiet but important design choice: it lets the embedding model consume one representation while the user sees another, which matters when images or rich formatting are involved.
The tiered model-routing with circuit-breaker degradation treats LLM calls as a reliability problem, not just a cost problem, which is the right posture for any system that must stay online when a model endpoint goes down.