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-Agent SDK

Overview

PreviousHow to Publish AgentsNextLLM Core API

Last updated 1 month ago

The AIOS-Agent SDK (Cerebrum) provides a structured interface between user device applications and the AIOS kernel through different functional modules.

All queries from these modules are ultimately channeled through a central send_request(Query) function in the AIOS-Agent SDK, which then communicates with the AIOS kernel via HTTP requests (either to localhost or a remote URL).

On the user device side, the agent contains code snippets for planning, action, memory, and storage that interact with their respective modules through the Cerebrum Client interface. This creates a clean separation between the application logic and the kernel communication layer. Please make sure you have read about how to use and develop agents before going deep into these APIs.

The SDKs contain the following APIs:

LLM Core API
Memory API
Storage API
Tool API
How agents leverage Agent-SDK to interact with AIOS kernel