AIOS Docs
  • Welcome
  • Getting Started
    • Installation
    • Quickstart
      • Use Terminal
      • Use WebUI
    • Environment Variables Configuration
  • AIOS Kernel
    • Overview
    • LLM Core(s)
      • LiteLLM Compatible Backend
      • vLLM Backend
      • Hugging Face Backend
      • LLM Routing
    • Scheduler
      • FIFOScheduler
      • RRScheduler
    • Context
    • Memory
      • Base Layer
      • Agentic Memory Operations
    • Storage
      • sto_mount
      • sto_create_file
      • sto_create_directory
      • sto_write
      • sto_retrieve
      • sto_rollback
      • sto_share
    • Tools
    • Access
    • Syscalls
    • Terminal
  • AIOS Agent
    • How to Use Agent
    • How to Develop Agents
      • Develop with Native SDK
      • Develop with AutoGen
      • Develop with Open-Interpreter
      • Develop with MetaGPT
    • How to Publish Agents
  • AIOS-Agent SDK
    • Overview
    • LLM Core API
      • llm_chat
      • llm_chat_with_json_output
      • llm_chat_with_tool_call_output
      • llm_call_tool
      • llm_operate_file
    • Memory API
      • create_memory
      • get_memory
      • update_memory
      • delete_memory
      • search_memories
      • create_agentic_memory
    • Storage API
      • mount
      • create_file
      • create_dir
      • write_file
      • retrieve_file
      • rollback_file
      • share_file
    • Tool API
      • How to Develop Tools
    • Access API
    • Post API
    • Agent API
  • Community
    • How to Contribute
Powered by GitBook
On this page
  1. AIOS Kernel

Terminal

AIOS Terminal UI

PreviousSyscallsNextHow to Use Agent

Last updated 2 months ago

The terminal UI in AIOS is powered by the LLM-based semantic file system, which is published in ICLR2025, with its paper can be found at .

Before running the AIOS terminal, please make sure you have read the instructions in to set up the environment and launch the AIOS kernel.

And you need to create a folder to put the files you want to manage, the default folder is ./root

After that, you can run the following command to start the AIOS terminal.

python scripts/run_terminal.py

When you successfully enter the system, the interface is as follows:

Then you can start interacting with the AIOS terminal by typing natural language commands.

@inproceedings{
    shi2025from,
    title={From Commands to Prompts: {LLM}-based Semantic File System for AIOS},
    author={Zeru Shi and Kai Mei and Mingyu Jin and Yongye Su and Chaoji Zuo and Wenyue Hua and Wujiang Xu and Yujie Ren and Zirui Liu and Mengnan Du and Dong Deng and Yongfeng Zhang},
    booktitle={The Thirteenth International Conference on Learning Representations},
    year={2025},
    url={https://openreview.net/forum?id=2G021ZqUEZ}
}

For instructions of how to use commands, refer to .

https://github.com/agiresearch/AIOS-LSFS
From Commands to Prompts: LLM-based Semantic File System for AIOS
AIOS
Example of Launched AIOS terminal