[POC] Support Python workflow args in CLI#612
Draft
oliverholworthy wants to merge 1 commit intoNVIDIA-NeMo:mainfrom
Draft
[POC] Support Python workflow args in CLI#612oliverholworthy wants to merge 1 commit intoNVIDIA-NeMo:mainfrom
oliverholworthy wants to merge 1 commit 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
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 for #507 that makes local Python config workflows executable with custom CLI arguments while keeping the existing
preview,create, andvalidatecommands as the execution surface.This lets a workflow file expose:
and run with:
Design
DataDesignerScriptParamsas the small runtime object passed to Python config modules.load_config_builder()contract for current workflow files.--only to local Python config modules.argparse --helpfrom a workflow as a successful CLI exit instead of a config load failure.Why This PR Is Separate
This is the mergeable base layer. It is independently useful for executable workflow files and gives recipe discovery a clean primitive to build on later.