diff --git a/crates/g3-core/src/lib.rs b/crates/g3-core/src/lib.rs index 8afc703..410b1c8 100644 --- a/crates/g3-core/src/lib.rs +++ b/crates/g3-core/src/lib.rs @@ -137,30 +137,10 @@ impl Agent { Self::new_with_mode(config, ui_writer, false, false).await } - pub async fn new_with_readme( - config: Config, - ui_writer: W, - readme_content: Option, - ) -> Result { - Self::new_with_mode_and_readme(config, ui_writer, false, readme_content, false, None).await - } - - pub async fn new_autonomous_with_readme( - config: Config, - ui_writer: W, - readme_content: Option, - ) -> Result { - Self::new_with_mode_and_readme(config, ui_writer, true, readme_content, false, None).await - } - pub async fn new_autonomous(config: Config, ui_writer: W) -> Result { Self::new_with_mode(config, ui_writer, true, false).await } - pub async fn new_with_quiet(config: Config, ui_writer: W, quiet: bool) -> Result { - Self::new_with_mode(config, ui_writer, false, quiet).await - } - pub async fn new_with_readme_and_quiet( config: Config, ui_writer: W,