langchain_rs 0.0.2

Rust version of Langchain
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use anyhow::Result;

use super::Documents;

#[async_trait::async_trait]
pub trait Embedding: Send + Sync {
    /// Embed query text.
    /// # Arguments
    /// * `query`: query to embed
    async fn embed_query(&self, query: &str) -> Result<Vec<f32>>;
    /// Embed search docs.
    /// # Arguments
    /// * `documents`: documents to embed
    async fn embed_documents(&self, documents: &Documents) -> Result<Vec<Vec<f32>>>;
}