Skip to content

Commit f1235eb

Browse files
committed
fix: change default viewer from rerun-web to rerun (dimos-viewer)
The native Rerun viewer (dimos-viewer) is now the default. The web dashboard remains available via --viewer-backend rerun-web. - GlobalConfig: viewer_backend default 'rerun-web' -> 'rerun' - Updated visualization docs to reflect new default
1 parent 9eac040 commit f1235eb

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

dimos/core/global_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GlobalConfig(BaseSettings):
3030
robot_ip: str | None = None
3131
simulation: bool = False
3232
replay: bool = False
33-
viewer_backend: ViewerBackend = "rerun-web"
33+
viewer_backend: ViewerBackend = "rerun"
3434
n_workers: int = 2
3535
memory_limit: str = "auto"
3636
mujoco_camera_position: str | None = None

docs/usage/visualization.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Dimos supports three visualization backends: Rerun (web or native) and Foxglove.
77
Choose your viewer backend via the CLI (preferred):
88

99
```bash
10-
# Rerun web viewer (default) - Full vis dashboard and teleop panel in browser
10+
# Rerun native viewer (default) - native dimos-viewer window
1111
dimos run unitree-go2
1212

1313
# Explicitly select the viewer backend:
@@ -19,12 +19,12 @@ dimos --viewer-backend foxglove run unitree-go2
1919
Alternative (environment variable):
2020

2121
```bash
22-
# Rerun web viewer - Full dashboard in browser
23-
VIEWER_BACKEND=rerun-web dimos run unitree-go2
24-
25-
# Rerun native viewer - native Rerun window + teleop panel at http://localhost:7779
22+
# Rerun native viewer (default) - native dimos-viewer window
2623
VIEWER_BACKEND=rerun dimos run unitree-go2
2724

25+
# Rerun web viewer - Full dashboard in browser + teleop panel
26+
VIEWER_BACKEND=rerun-web dimos run unitree-go2
27+
2828
# Foxglove - Use Foxglove Studio instead of Rerun
2929
VIEWER_BACKEND=foxglove dimos run unitree-go2
3030
```

0 commit comments

Comments
 (0)