mod formation;
mod maintenance;
mod recall;
use anda_core::Principal;
use anda_db::schema::DocumentId;
use anda_engine::memory::Conversation;
pub use formation::*;
pub use maintenance::*;
pub use recall::*;
#[async_trait::async_trait]
pub trait BrainHook: Send + Sync {
fn is_maintenance_processing(&self) -> bool;
async fn on_conversation_end(&self, agent_name: &str, conversation: &Conversation);
async fn try_start_formation(&self);
async fn try_start_maintenance(&self, formation_id: DocumentId) -> Option<DocumentId>;
}
pub static SELF_USER_ID: Principal = Principal::from_slice(&[1]);
pub static SYSTEM_PROMPT_DYNAMIC_BOUNDARY: &str = "__SYSTEM_PROMPT_DYNAMIC_BOUNDARY__";