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
15
16
//! # Common module.
//!
//! This module contains sub-modules for utility functions and common utilities that can be used across various parts of the project.
//!
//! ## Sub-modules
//!
//! - `utils`: Contains definitions and implementations of various utility functions and helpers that can be used throughout the project.
//!

pub mod utils;

#[cfg(feature = "mem")]
pub mod memory;

#[cfg(feature = "cli")]
pub mod input;