INSAIT — the Institute for Computer Science, Artificial Intelligence and Technology, hosted by Sofia University in partnership with ETH Zürich and EPFL — released SPEAR-1 in October 2025 as Europe's first open robotic foundation model trained on 3D understanding (arXiv:2511.17411). The model is a Vision-Language-Action policy. Its key idea: rather than learn 3D scene structure from scarce, expensive robot demonstrations, SPEAR-VLM learns it during pretraining from roughly 45 million frames of mostly non-robotic data — by pairing a PaliGemma 3B vision-language backbone with the MoGe monocular geometric encoder and training on 3D visual-question-answering tasks. A Flow-Matching action expert then attends to the VLM's features and emits action chunks: delta end-effector translation, delta rotation, gripper state.
The 2D → 3D step lives inside the VLM, not as a separate perception module. SPEAR-1 reads monocular RGB and reasons about depth, occlusion and scene geometry directly — which is why it beats π0-FAST and π0.5 with roughly 20× fewer robot demonstrations and shows its biggest gains on fine-positioning tasks where 3D understanding is the bottleneck. Published checkpoints (huggingface.co/INSAIT-Institute/spear1-franka) target Franka Research 3 manipulators and WidowX rovers.
How Praemonitus uses it. SPEAR-1 is a per-robot manipulation policy, not a fleet coordinator — it lives inside one robot and outputs that robot's next action. Praemonitus is the layer above it: task allocation across a mixed fleet, scheduling, Bayesian risk scoring, mission-abort thresholds, operator-in-the-loop confirmation. For compatible embodiments (Franka, WidowX) Praemonitus dispatches manipulation sub-tasks to SPEAR-1 on the robot; for others it uses different per-robot policies through the same interface. We adopted SPEAR-1 because its 3D-from-2D pretraining matches the data regime of civilian operations — many cameras, few demonstrations — and because an open, auditable model is the only kind we are willing to put behind a calibrated decision wrapper.
Attribution. SPEAR-1 weights and code are distributed by INSAIT under the Gemma license inherited from PaliGemma; the SPEAR-1 paper is released CC BY 4.0. We use the published checkpoints under those terms; attribution and integration enquiries belong to INSAIT at contact@insait.ai. Project site: spear.insait.ai.