Rollout policies against MuJoCo and PyBullet environments
MuJoCo went open-source in 2022 and is now the most-used rigid-body physics engine in robotics research. SciRouter exposes MuJoCo (and PyBullet as a fallback) as a single API call: pass an environment name and a policy, get back joint-position trajectories, rewards, and episode summaries. Skip the dependency hell of CUDA drivers, GLFW, and OpenGL contexts.
/v1/robotics/simulateimport requests
r = requests.post(
"https://scirouter-gateway-production.up.railway.app/v1/robotics/simulate",
headers={"Authorization": "Bearer sk-sci-..."},
json={
"environment": "cartpole-v1",
"policy": "random",
"episodes": 5,
"max_steps": 500,
},
)
result = r.json()["data"]
print(f"Mean reward: {result['mean_reward']:.2f}")
print(f"Success rate: {result['success_rate']:.0%}")Weekend robotics research
University lab simulation without GPU setup
Benchmarking RL policies
Teaching embodied AI