autogpt 0.3.2

🦀 A Pure Rust Framework For Building AGIs.
Documentation
// Copyright 2026 Mahmoud Harmouch.
//
// Licensed under the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

//! # 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;