txtai 9.2.0

Rust client for txtai
Documentation
use serde_json::json;

pub use crate::api::{API, Texts, TextsBatch};

/// Workflow definition
pub struct Workflow {
    api: API
}

/// Workflow implementation
impl Workflow {
    /// Creates a Workflow instance.
    /// 
    pub fn new() -> Workflow {
        Workflow { 
            api: API::new()
        }
    }

    /// Creates a Workflow instance.
    /// 
    /// # Arguments
    /// * `url` - API url
    pub fn with_url(url: &str) -> Workflow {
        Workflow {
            api: API::with_url(url) 
        }
    }

    /// Creates a Workflow instance.
    /// 
    /// # Arguments
    /// * `url` - API url
    /// * `token` - API token
    pub fn with_url_token(url: &str, token: &str) -> Workflow {
        Workflow {
            api: API::with_url_token(url, token)
        }
    }

    /// Executes a named workflow using elements as input.
    ///
    /// `name` workflow name
    /// `elements` list of elements to run through workflow
    pub async fn workflow(&self, name: &str, elements: &Vec<&str>) -> TextsBatch {
        // Query parameters
        let params = json!({
            "name": name,
            "elements": elements
        });

        // Execute API call
        Ok(self.api.post("workflow", &params).await?.json().await?)
    }
}