Watch
1
0
Fork
You've already forked souveraine
0

two swipes, one progress; home is zone 0; pocket is a belief

This commit is contained in:
Fimeg 2026-08-05 19:16:41 -04:00
commit d7965a57fd
188 changed files with 9258 additions and 3970 deletions

View file

@ -1,7 +1,7 @@
#![allow(dead_code)] // WIP scaffolding not yet wired
use anyhow::Result;
use std::sync::Arc;
use tokio::sync::RwLock;
use anyhow::Result;
use crate::core::config::ConsciousnessConfig;
@ -21,6 +21,10 @@ impl ChainOrchestrator {
talking_enabled: bool,
thinking_enabled: bool,
) -> Result<Self> {
Ok(Self { config, talking_enabled, thinking_enabled })
Ok(Self {
config,
talking_enabled,
thinking_enabled,
})
}
}