subtopics
F1R3FLY
F1R3FLY is the concurrent, sharded execution layer powering ASI:Chain. Grounded in Rholang (Reflective Higher-Order process calculus), it models every interaction as concurrent processes communicating over channels. It uses reified RSpaces and MORK PathMaps for programmable, living storage.
</> Example Implementation
Concurrent process channels
Demonstrates F1R3FLY's Rholang-based concurrent process model with channel communication.
; F1R3FLY concurrent execution model
; Based on rho-calculus
new channel in {
channel!(42) |
for (value <- channel) {
stdout!(*value)
}
}
; Processes communicate via named channels
MeTTaCycle
MeTTaCycle is the AGI execution engine for ASI:Chain — an "AI Layer 0" transforming raw computational power into a global cognitive reactor. It orchestrates the dynamic evolution of Atomspaces and uses ChromaDB for embeddings and PeTTa for reasoning.
</> Example Implementation
Cognitive reactor loop
A conceptual view of MeTTaCycle's cognitive reactor loop that drives continuous Atomspace evolution.
; MeTTaCycle orchestrates Atomspace evolution
; AI Layer 0 execution cycle
!(mettacycle-step
(perceive environment-state)
(reason (pln-inference goals))
(act (select-action plan))
(learn (update-atoms results)))