RerankingService

Trait RerankingService 

Source
pub trait RerankingService: Send + Sync {
    // Required method
    fn rerank<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        query: &'life1 str,
        candidates: &'life2 [Candidate],
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Candidate>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait;
}
Expand description

Trait for reranking services

Required Methods§

Source

fn rerank<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, query: &'life1 str, candidates: &'life2 [Candidate], ) -> Pin<Box<dyn Future<Output = Result<Vec<Candidate>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Implementors§