This page documents the public API for @ioai/lerobot-studio. The package provides the viewer, archive helpers, and their types. It does not include the standalone application's export engine.
The generated report below is the canonical API reference. Update the source code, run npm run api:report, and do not edit the generated report directly.
import { LeRobotViewer } from '@ioai/lerobot-studio';
import '@ioai/lerobot-studio/style.css';
<LeRobotViewer dataSource="https://example.com/dataset.zip" theme="system" />;dataSource can be a remote archive URL or a custom DataSource:
createArchiveDataSourceFromFile— local ZIP / TAR / TAR.GZcreateArchiveDataSourceFromUrl— remote archive you want to reuse
The viewer supports in-session episode changes when the dataset allows them. onExport is a callback for your host UI; it does not export anything by itself.
Implement DataSource if your application needs to read bytes or text by path. Treat paths and content as untrusted, and release object URLs in clear().
Loading phases are download, index, gunzip, and read. Fatal errors include invalid sources, unavailable remote URLs, unsupported archives, and dataset-loading failures.