Skip to content

Commit e08695c

Browse files
committed
docs: adjust plugin dev note excerpt
1 parent 324e2a9 commit e08695c

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docs/devnotes/posts/have-it-your-way.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ authors:
1111

1212
![Data Designer plugin extensions](assets/have-it-your-way/data-designer-plugins-hero.png){ .devnote-float-right }
1313

14-
Data Designer is built around a simple idea: describe the dataset you want, and let the framework handle execution. A config points to seed data, defines generated columns, picks models, and shapes the final records — no orchestration code required.
14+
Data Designer is built around a simple idea: describe the dataset you want, and let the framework handle execution. A config points to seed data, defines generated columns, picks models, and shapes the final records — no orchestration code required. [Data Designer plugins](../../plugins/overview.md) keep that promise when a project needs something custom.
1515

16-
[Data Designer plugins](../../plugins/overview.md) keep that promise when a project needs something custom. Suppose a robotics team has [Isaac Sim](https://developer.nvidia.com/isaac/sim)-generated warehouse runs and wants to turn robot poses, camera views, and event metadata into instruction data. With an internal simulation-log plugin, the user-facing part can still be this small:
16+
<!-- more -->
17+
18+
Suppose a robotics team has [Isaac Sim](https://developer.nvidia.com/isaac/sim)-generated warehouse runs and wants to turn robot poses, camera views, and event metadata into instruction data. With an internal simulation-log plugin, the user-facing part can still be this small:
1719

1820
```bash
1921
uv pip install data-designer-isaac-logs
@@ -43,7 +45,6 @@ builder.add_processor(RobotSFTProcessor(output_column="messages"))
4345

4446
That is the point of plugins: install a package, import its config classes, and keep the workflow declarative. The Isaac run reader, event labeler, and trainer-format processor own the custom parsing, labeling, validation, and export shape, while Data Designer still handles discovery, dependency ordering, model calls, previews, and output.
4547

46-
<!-- more -->
4748

4849
<div class="devnote-clear"></div>
4950

0 commit comments

Comments
 (0)