sapiens_tools 0.8.0

The tools - Sapiens
Documentation
//! Tools for sapiens

/// Hue tools
#[cfg(feature = "hue")]
pub mod hue;

/// Tool to conclude a chain
pub mod conclude;

/// Tool to run some (limited) python
pub mod python;

/// Tool to test stuffs
pub mod dummy;

/// Tools related to mediawiki: Wikipedia, Wikidata, etc.
#[cfg(feature = "wiki")]
pub mod wiki;

/// Setup tools
pub mod setup;

/// Tools related to Arxiv
#[cfg(feature = "arxiv")]
pub mod arxiv;

/// Text summarization tools
#[cfg(feature = "summarize")]
pub mod summarize;

/// Search the web
#[cfg(feature = "search")]
pub mod search;