autogpt 0.1.15

🦀 A Pure Rust Framework For Building AGIs.
//! # 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 manager;
pub mod optimizer;