Syscall: A request from an agent to the AIOS kernel for resources, such as generating text or reading memory, abstracting the hardware details.
LLM Core: An abstraction in AIOS treating an LLM instance (local or cloud) as a processing unit similar to a CPU core.
Context Interrupt: The process of pausing an LLM generation task, saving its state (snapshot), and restoring it later to allow other agents to run.
Beam Search: A search algorithm that explores a graph by expanding the most promising node in a limited set; AIOS snapshots this tree structure for context switching.
LRU-K: Least Recently Used-K; a page replacement algorithm that evicts items not used recently, considering the K-th last reference to better estimate frequency.
ReAct: Reasoning and Acting; a paradigm where agents generate reasoning traces before executing actions.
Reflexion: An agent framework where agents verbally reflect on feedback to improve future responses.