fuga-2.0 / src /ai /mod.rs
Kateira1123's picture
Fuga 2.0 core modules: AI, VSA, TM, anomaly detection
33b4056 verified
Raw
History Blame Contribute Delete
1.14 kB
pub mod resonance_attention;
pub mod router;
pub mod core;
pub mod memory_store;
pub mod answer_engine;
pub mod codegen;
pub mod moe;
pub mod hnsw;
pub mod jepa;
pub mod hierarchical_jepa;
pub mod prompts;
pub mod world;
pub mod wave_mesh;
pub mod sdr;
pub mod sdr_store;
pub mod htm_temporal;
pub mod anomaly;
pub use codegen::CodegenResult;
pub use resonance_attention::{ResonanceAttention, AttentionCell};
pub use router::{DynamicRouter, TargetExpert, ExpertConfig};
pub use core::{FugaAI, AIOutput};
pub use memory_store::{MemoryStore, MemoryEntry, AttractorIndex, NUM_ATTRACTORS};
pub use moe::MoEStore;
pub use answer_engine::{AnswerEngine, AnswerResult, AnswerHit};
pub use jepa::JepaPredictor;
pub use hierarchical_jepa::HierarchicalJEPA;
pub use prompts::PromptVectors;
pub use sdr::{SdrVector, SdrIndex, sparsify, encode_text, domain_sdr, SDR_DIM, SDR_DENSITY, SDR_WORDS};
pub use sdr_store::SdrStore;
pub use htm_temporal::{TemporalMemory, TemporalCell, DendriteSegment, Synapse};
pub mod temporal_predictor;
pub mod self_mirror;
pub use anomaly::{AnomalyDetector, AnomalyEvent, AnomalyReflector, CorrectionSignal, StyloProfile};