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.

//! # Prompts module.
//!
//! This module contains sub-modules representing different prompts for each agent.
//!
//! ## Sub-modules
//!
//! - `architect`: Contains prompts related to the architect agent.
//! - `backend`: Contains prompts related to the backend agent.
//! - `designer`: Contains prompts related to the designer agent.
//! - `frontend`: Contains prompts related to the frontend agent.
//! - `manager`: Contains prompts related to project management agent.
//!

pub mod architect;
pub mod backend;
pub mod designer;
pub mod frontend;
pub mod generic;
pub mod manager;
pub mod optimizer;

// 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.