pub trait HypotheticalGenerator: Send + Sync {
// Required method
fn generate(&self, query: &str) -> Result<String>;
}Expand description
Trait for generating hypothetical documents from queries.
Required Methods§
Implementors§
impl HypotheticalGenerator for AnthropicHypotheticalGenerator
Available on crate feature
eval only.