ai-lib-core 0.9.6

AI-Protocol execution runtime core (protocol, client, pipeline, transport)
1
2
3
4
5
6
7
//! Rerank(文档重排序)模块:通过 Provider API(如 Cohere Rerank)按相关性对文档重排序。

mod client;
mod types;

pub use client::{RerankerClient, RerankerClientBuilder};
pub use types::{RerankOptions, RerankResult};