appam 0.1.1

High-throughput, traceable, reliable Rust agent framework for long-horizon AI sessions and easy extensibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Built-in tool implementations.
//!
//! This module contains Rust implementations of commonly used tools such as
//! bash execution, file operations, and HTTP requests. Built-in tools can be
//! registered in agent configurations via module paths.

// Placeholder for built-in tools to be ported from asteria-agent
// pub mod bash;
// pub mod read_file;
// pub mod write_file;
// pub mod list_directory;
// pub mod glob_search;
// pub mod grep_search;
// pub mod send_request;
// pub mod run_python;

// These will be implemented in a later phase