Introduction

Welcome to the ThemisAevra Neuro-Symbolic Engine.

The **ThemisAevra API** allows you to offload high-level semantic reasoning to our cloud brain while maintaining low-level control on your edge hardware. It is designed for **Humanoid**, **Quadruped**, and **Wheeled** platforms.

! Safety First: All API commands are filtered through a deterministic safety layer before execution.

Quick Install

# Install the Python SDK pip install themis-aevra-sdk

Your First Agent

Initialize a secure connection to the reasoning core.

from themis_aevra import Agent # Initialize Agent with API Key agent = Agent(api_key="sk_live_...") # Define a semantic task task = "Pick up the red box and place it on the conveyor" # Execute (returns a stream of motor commands) for command in agent.solve(task): robot.actuate(command)