Metadata-Version: 2.4
Name: nexus-mm-sdk
Version: 0.1.1
Summary: SDK for NEXUS-MM World Model - Robot Safety Decision Engine
Home-page: https://github.com/AfricaAI348/nexus-mm
Author: NEXUS-MM Team
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# NEXUS-MM SDK

Python SDK for the NEXUS-MM World Model API.

## Install

```bash
pip install git+https://github.com/AfricaAI348/nexus-mm.git#subdirectory=nexus-sdk
```

Quick Start

```python
from nexus_sdk import NexusRobot

robot = NexusRobot(base_url="https://backend-morning-overbrook-7785.fly.dev")

# Ask NEXUS what to do
decision = robot.decide(action="move_forward", surface="ice", speed=0.8)
print(f"Action: {decision.action}, Risk: {decision.risk}")

# Predict physics
result = robot.predict_physics(action="drop", object="glass", height=2.0)

# Health check
print(robot.health())
