lc-tools 0.8.0

Built-in tools for langchainrust — Calculator, DateTime, URLFetch, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! 工具扩展:HTTP / File / SQL / ComputerUse

pub mod computer;
pub mod file;
pub mod http;
#[cfg(feature = "sqlite-storage")]
pub mod sql;

pub use computer::{ComputerMode, ComputerUseInput, ComputerUseOutput, ComputerUseTool};
pub use file::FileTool;
pub use http::HTTPTool;
#[cfg(feature = "sqlite-storage")]
pub use sql::SQLTool;