[POC] Add Data Designer recipe discovery#613
Draft
oliverholworthy wants to merge 2 commits intoNVIDIA-NeMo:mainfrom
Draft
[POC] Add Data Designer recipe discovery#613oliverholworthy wants to merge 2 commits intoNVIDIA-NeMo:mainfrom
oliverholworthy wants to merge 2 commits intoNVIDIA-NeMo:mainfrom
Conversation
Signed-off-by: Oliver Holworthy <1216955+oliverholworthy@users.noreply.github.com>
Contributor
Linked Issue CheckThis PR does not reference an issue. External contributions must link to Add one of the following to your PR description:
If no issue exists yet, open one See CONTRIBUTING.md |
Contributor
|
Thank you for your submission! We ask that you sign our Developer Certificate of Origin before we can accept your contribution. You can sign the DCO by adding a comment below using this text: I have read the DCO document and I hereby sign the DCO. You can retrigger this bot by commenting recheck in this Pull Request. Posted by the DCO Assistant Lite bot. |
This was referenced May 7, 2026
Signed-off-by: Oliver Holworthy <1216955+oliverholworthy@users.noreply.github.com>
d9a6c90 to
0cf8039
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
POC layered on top of #612 that lets installed packages register Data Designer recipes without DataDesigner core depending on any specific recipe repository.
External packages can register a named recipe with the
data_designer.recipesentry point group. Data Designer can then inspect and execute those recipes through the normal generation verbs:data-designer recipes list --output json data-designer recipes show retrieval-sdg --output json data-designer recipes help retrieval-sdg data-designer preview --recipe retrieval-sdg -- --input-dir ./docs data-designer create --recipe retrieval-sdg -- --input-dir ./docsDesign
data_designer.recipesentry point group as the external registration mechanism.data-designer recipes list,show, andhelpfor human and agent inspection.load_config_builder(params)for execution.build_typer_app()so Data Designer can surface recipe-specific help and structured argument metadata from the same Typer command shape used for execution.argparseparser inspection as a compatibility fallback for simple external recipes, but the POC consumer in DataDesignerPlugins uses Typer.Review Notes
This PR currently includes the #612 commit because the base branch is in a fork. The recipe-discovery work is the top commit. Once #612 lands, this can be rebased so the diff contains only the recipe registry and inspection layer.