xz-rerank 0.1.1

检索结果重排序 — 本地多信号融合 + 远程 Rerank API 适配
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// 重排序候选项定义
pub mod candidate;

/// 重排序配置
pub mod config;

/// 重排序结果定义
pub mod result;

/// 信号权重配置
pub mod weights;

pub use candidate::*;
pub use config::*;
pub use result::*;
pub use weights::*;