llm-chain-tools 0.4.0

A library for providing Large Language Models with tools (also known as 'actions') that they can trigger
Documentation
1
2
3
4
5
6
7
8
9
//! Commonly used tools ready to import
//!

mod bash;
mod exit;
mod python;
pub use bash::BashTool;
pub use exit::ExitTool;
pub use python::PythonTool;