auria-execution
Expert assembly and execution pipeline for AURIA Runtime Core.
Overview
Implements the core execution engine that orchestrates expert assembly and forward pass execution.
Execution Backend Trait
use ;
use async_trait;
Execution Flow
- Router selects experts
- Expert Cache lookup
- Expert Assembler assembles missing experts
- Execution Core executes forward pass
- Tokens returned to user
Usage
use ExecutionEngine;
let engine = new;
let output = engine.execute.await?;