Kairos is a 4B-parameter native cross-embodiment world model for unified understanding, generation, and action prediction. Through a progressive Cross-Embodiment Data Curriculum, it learns from general videos, human behavior, and real-robot interaction to build persistent world representations. Powered by a World-Action Model architecture and hybrid linear temporal memory, Kairos jointly predicts future visual states and executable robot actions, enabling long-horizon reasoning, high-quality generation, and real-time edge-side deployment for embodied AI.
Dec 18, 2025: 🎉 Kairos 3.0 was officially introduced, along with the Kairos World Model inference code and kairos-4B-480P-pretrained.
🚀 1. Motivation
Embodied AI is entering the era of Scaling Laws, yet scaling alone cannot overcome the core barriers to reliable real-world interaction. Heterogeneous embodiment data, weak long-horizon reasoning, separated video-and-action modeling, and edge-side compute constraints still limit the practicality of current world models. Kairos addresses these challenges by unifying cross-embodiment pretraining, persistent world-state modeling, future generation, and executable action prediction within an efficient deployment-aware framework.
🌟 2. Kairos Framework
🌍 Native Pretraining Paradigm with Cross-Embodiment Data Curriculum
Kairos introduces a native world-model pretraining paradigm that learns physical, behavioral, and embodied knowledge from scratch, rather than relying on decoupled post-training adaptation. Through a Cross-Embodiment Data Curriculum (CEDC), the model progressively absorbs knowledge from general videos, human behavior data, and real-robot interaction data. This curriculum enables Kairos to move beyond flat data scaling, building world representations that evolve from passive physical understanding to active task intent and embodied control.
Kairos is designed as a native end-to-end architecture for understanding, generating, and predicting the world within a unified Mixture-of-Transformers framework. Instead of treating world modeling as simple video continuation, Kairos maintains persistent world states, where understanding provides causal interpretation, generation unfolds plausible futures, and prediction produces executable robot actions. This unified design allows the model to connect perception, reasoning, planning, and action in a single intelligence loop.
⚡ Hybrid Linear Temporal Memory for Efficient Deployment
Kairos introduces a hybrid linear temporal memory mechanism for long-horizon world modeling. By combining Sliding-Window Attention, Dilated Sliding-Window Attention, and Gated Linear Attention, the model captures local dynamics, mid-range interactions, and global causal memory under linear-complexity temporal modeling. Together with deployment-aware system co-design, including efficient kernels, quantization, and token streaming, Kairos supports low-memory, high-throughput inference and lays the foundation for real-time closed-loop deployment.
✨ 3. Demos
Physical–causal consistency
Cross-embodiment generalization
Accurate Action Prediction
High-efficiency inference
🧠 Physical–causal consistency
Kairos leverages causal CoT and physical laws to transform multimodal inputs into deep task logic. It enables autonomous planning and feasibility analysis, shifting the system from "executing commands" to "understanding intent" for real-world robotic actions.
🎨 Cross-embodiment generalization
Unified Cross-Embodiment Generation: A single "brain" that generalizes across single-arm, dual-arm, and dexterous-hand platforms. Kairos enables shared, transferable world knowledge with maximal adaptability. Broad Hardware Support: Native compatibility with Agibot G1, Unitree G1, and Songling PIPER, significantly slashing development costs through zero-shot multi-task generalization.
🎯 Accurate Action Prediction
Powered by its World-Action Model, Kairos predicts executable robot action trajectories directly from visual observations and task context. This enables accurate, temporally coherent, and physically grounded action generation for long-horizon embodied manipulation.
🔮 High-efficiency inference
Real-time Edge Performance: Industry-leading inference speed with ultra-low resource consumption. Optimized for low-latency, high-reliability deployment across single or multi-GPU embodied systems.
Supports 720P HD output with enhanced fine-grained detail capture
📈 5. Evaluation
🎯 5.1 Accuracy Benchmarks
worldmodel_bench
dreamgen
Performance comparison across embodied world model benchmarks
eval_robotwin2.0
eval_libero_plus
Performance comparison across world action model benchmarks
⚡ 5.2 Deployment
5.2.1 Real-time Inference
GPU
Resolution
Memory(GB)
1 GPU (s)
4 GPUs (s)
NV-A800
480P
23.5
11.7
3.0
NV-RTX5090
480P
13.9
11.4
5.7
*(results based on kairos-4B-robot 480p distillation)
5.2.2 Benchmark for A800 GPU
Model
Parameters
Memory (GB)
Complexity (PFLOPs)
1 GPU (s)
4 GPUs (s)
Kairos
4B
23.5
2.3
43.3
9.5
Cosmos 2.5
14B
70.2
156.5 (~70x)
2526.0
687.2
Wan 2.2
5B
23.4
16.6 (~7x)
201.0
85.0
Lingbot
28B
46.1
347.4 (~160x)
5525.0
1436.0
*(evaluation setting:TI2V mode with 720P/5s)
🔧 6. Quick Start
6.1 Environment Installation
bash
1# Clone the repository2git clone https://github.com/kairos-agi/kairos-sensenova.git
3cd kairos-sensenova
45# You can set up the environment in two ways:6# 1) Build container from the Docker image7# 2) Build the environment from requirements with conda or venv89# 1) Docker image:10# Note:11# Please select the Docker image that matches your GPU platform.12# The default image is for A800 / A100, while RTX 5090 requires the -rtx5090 image tag, and METAX C500 requires the -metax tag.1314# Pull the Docker image15# For A800 / A10016echo"$GHCR_TOKEN"|docker login ghcr.io -u username --password-stdin
17docker pull ghcr.io/kairos-agi/kairos-sensenova:v0.0.1
1819# For RTX 509020# docker pull ghcr.io/kairos-agi/kairos-sensenova:v0.0.1-rtx50902122# For METAX C50023# docker pull ghcr.io/kairos-agi/kairos-sensenova:v0.0.1-metax2425# Create a container using Docker26docker run --rm -it \27 --gpus all \28 -v $(pwd):/workspace \29 ghcr.io/kairos-agi/kairos-sensenova:v0.0.1 \30bash3132# For RTX 509033# docker run --rm -it \34# --gpus all \35# -v $(pwd):/workspace \36# ghcr.io/kairos-agi/kairos-sensenova:v0.0.1-rtx5090 \37# bash3839# For METAX C50040# docker run --rm -it \41# --gpus all \42# -v $(pwd):/workspace \43# ghcr.io/kairos-agi/kairos-sensenova:v0.0.1-metax \44# bash4546# 2) Requirements47# build a python environment with python>=3.10, torch>=2.6, and cuda>=12.648# install requirements49# Note: METAX C500 is not supported in this setup method. For METAX C500, please use the Docker image only.50pip install -r requirements.txt
1# Note: Please complete Section 6.2 first to download the Kairos model weights.23# Step1: Download additional dependencies for inference4mkdir -p models/Qwen models/Wan2.1-T2V-14B
56# Download Qwen2.5-VL for Text-Encoder7hf download Qwen/Qwen2.5-VL-7B-Instruct-AWQ \8 --local-dir models/Qwen/Qwen2.5-VL-7B-Instruct-AWQ \9 --include "*.safetensors"1011hf download Qwen/Qwen3.5-2B \12 --local-dir models/Qwen/Qwen3.5-2B
1314# Download Wan2.1-VAE for VAE-Encoder/Decoder15hf download Wan-AI/Wan2.1-T2V-14B \16 --local-dir models/Wan2.1-T2V-14B \17 --include "Wan2.1_VAE.pth"1819# Step2: Run the examples20# The example JSON files provided here are intended for the21# `kairos-sensenova-robot-4B-480P-distilled` model.22#23# For TI2V and I2V, please use the 480P JSON configs. This distilled model is24# optimized for 480P, and its performance at 720P is not ideal.25#26# For other models and the matching configs, please refer to `docs/QUICKSTART.md`.2728# kairos-4B-720p29# Text2Video30bash examples/inference.sh examples/example_t2v.json kairos/configs/kairos_4b_config.py
31# Text&FirstImage2Video32bash examples/inference.sh examples/example_ti2v.json kairos/configs/kairos_4b_config.py
33# FirstImage2Video34bash examples/inference.sh examples/example_i2v.json kairos/configs/kairos_4b_config.py
3536# kairos-team/Kairos3.1-4B-robot-480P37# Text&FirstImage2Video38bash examples/inference.sh examples/example_ti2v_480P_robot_1.json kairos/configs/kairos_4b_video_only_config.py
39bash examples/inference.sh examples/example_ti2v_480P_robot_2.json kairos/configs/kairos_4b_video_only_config.py
40
6.4 Run Inference in Simulation Environments
We provide benchmark-specific instructions and evaluation scripts for the following embodied AI benchmarks.
Benchmark
Description
Guide
RoboTwin 2.0
Dual-arm manipulation benchmark for evaluating long-horizon embodied control and action prediction.
Developed and maintained by the Kairos Team. We specialize in Embodied Intelligence and World Model research, with a mission to build Artificial General Intelligence (AGI) that truly understands the physical world. Our goal is to accelerate the industrialization of embodied technologies and reshape the global landscape of AI competition.
📄 8. License
Kairos is open-sourced under the Apache License 2.0. Feel free to use, modify, and build commercial products on top of it. Check the LICENSE file for the full text.
📚 9. Citation
If you find our work helpful, please cite us.
@misc{kairosteam2026kairosregretawarenativeworldaction,
title={Kairos: A Regret-Aware Native World-Action Model Stack for Physical AI},
author={Kairos Team and Fei Wang and Shan You and Qiming Zhang and Tao Huang and Zuoyi Fu and Zhisheng Zheng and Yunlong Xi and Feng Lv and Xiaoming Wu and Zeyu Liu and Cong Wan and Pu Li and Ruiqing Yang and Xiaoou Li and Wei Wang and Kangkang Zhu and Yuwei Zhang and Shi Fu and Zheng Zhang and Xiaoning Wu and Xuzeng Fan and Dacheng Tao and Xiaogang Wang},
year={2026},
eprint={2606.16533},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2606.16533},
}