autogpt 0.1.15

🦀 A Pure Rust Framework For Building AGIs.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Traits module.
//!
//! This module contains sub-modules related to agents and their functions.
//!
//! ## Sub-modules
//!
//! - `agent`: Contains definitions related to agents.
//! - `functions`: Contains definitions of special functions for agents.
//! - `composite`: Contains a composite of special functions and definitions for agents.
//!

pub mod agent;
pub mod composite;
pub mod functions;