vectorless 0.1.31

Reasoning-native document intelligence engine for AI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) 2026 vectorless developers
// SPDX-License-Identifier: Apache-2.0

//! Rerank result types.

/// Output from the rerank pipeline.
pub struct RerankOutput {
    /// Synthesized answer.
    pub answer: String,
    /// Number of LLM calls used during synthesis/fusion.
    pub llm_calls: u32,
    /// Confidence score (0.0–1.0) — derived from LLM evaluate() result.
    pub confidence: f32,
}