temporarily disable codebase_fast_start

it seems the llm gets "lazy" and assumes all the tool
calls meant it's done most of the work.
I need to revise this approach.
This commit is contained in:
Jochen
2025-11-27 16:36:40 +11:00
parent 52f78653b4
commit 0d504d6422

View File

@@ -204,6 +204,8 @@ use rustyline::DefaultEditor;
use sha2::{Digest, Sha256}; use sha2::{Digest, Sha256};
use std::path::Path; use std::path::Path;
use std::path::PathBuf; use std::path::PathBuf;
use std::process::exit;
use sha2::{Digest, Sha256};
use tokio_util::sync::CancellationToken; use tokio_util::sync::CancellationToken;
use tracing::{error, info}; use tracing::{error, info};
@@ -325,6 +327,10 @@ pub async fn run() -> Result<()> {
.await; .await;
} }
if cli.codebase_fast_start.is_some() {
print!("codebase_fast_start is temporarily disabled.");
exit(1);
}
// Otherwise, continue with normal mode // Otherwise, continue with normal mode
// Only initialize logging if not in retro mode // Only initialize logging if not in retro mode