g3 console initial cut + error doesnt kill auto

This commit is contained in:
Dhanji Prasanna
2025-11-04 11:39:26 +11:00
parent 6913c5f72e
commit aaf918828f
53 changed files with 6796 additions and 23 deletions

View File

@@ -66,6 +66,8 @@ pub struct AgentConfig {
pub enable_streaming: bool,
pub timeout_seconds: u64,
pub auto_compact: bool,
pub max_retry_attempts: u32,
pub autonomous_max_retry_attempts: u32,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
@@ -137,6 +139,8 @@ impl Default for Config {
enable_streaming: true,
timeout_seconds: 60,
auto_compact: true,
max_retry_attempts: 3,
autonomous_max_retry_attempts: 6,
},
computer_control: ComputerControlConfig::default(),
webdriver: WebDriverConfig::default(),
@@ -253,6 +257,8 @@ impl Config {
enable_streaming: true,
timeout_seconds: 60,
auto_compact: true,
max_retry_attempts: 3,
autonomous_max_retry_attempts: 6,
},
computer_control: ComputerControlConfig::default(),
webdriver: WebDriverConfig::default(),