Standardize WinML CLI naming across code and docs (#510)#1092
Open
ziyuanguo1998 wants to merge 2 commits into
Open
Standardize WinML CLI naming across code and docs (#510)#1092ziyuanguo1998 wants to merge 2 commits into
ziyuanguo1998 wants to merge 2 commits into
Conversation
- Normalize lowercase 'winml CLI' -> 'WinML CLI' across command/serve/utils docstrings, scripts, the use-winml-cli skill, the serve static demo, and the test helper (15 occurrences). - Brand 'winml --version' output via prog_name (now 'WinML CLI, version X'). - Replace the stale hardcoded 'ModelKit' workspace-folder marker with 'winml-cli' in analyze debug path normalization.
- Standardize the product name to 'WinML CLI' across README, mkdocs site_name, and docs pages (index, ui-quickstart, supported-models). - Platform references 'Windows ML' are left unchanged; generated PKG-INFO regenerates from README.
xieofxie
reviewed
Jul 13, 2026
| context_settings={"help_option_names": ["-h", "--help"]}, | ||
| ) | ||
| @click.version_option(version=__version__, prog_name="winml") | ||
| @click.version_option(version=__version__, prog_name="WinML CLI") |
xieofxie
reviewed
Jul 13, 2026
| [](https://microsoft.github.io/winml-cli/latest/reports/model_accuracy_report.html) | ||
|
|
||
| **Windows ML CLI** is a command line tool for building **portable, performant, and high-quality** AI models for Windows ML. It takes you from a source model — whether from Hugging Face or your own pipeline — to a hardware-optimized artifact in a reproducible workflow. | ||
| **WinML CLI** is a command line tool for building **portable, performant, and high-quality** AI models for Windows ML. It takes you from a source model — whether from Hugging Face or your own pipeline — to a hardware-optimized artifact in a reproducible workflow. |
Contributor
There was a problem hiding this comment.
as per windows ml doc guide, before first using winml, we should use windows ml to show that winml is its abbreviation
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.
Standardizes the product name to WinML CLI for #510, resolving the mixed user-facing spellings (
winml CLI,Windows ML CLI).Code (8b5e144)
winml CLI->WinML CLIin command/serve/utils docstrings, scripts, the use-winml-cli skill, the serve static demo, and the test helper (15 spots).winml --versionvia prog_name (nowWinML CLI, version X).ModelKitworkspace-folder marker withwinml-cliin analyze debug path normalization.Docs (19e53bd)
Windows ML CLI->WinML CLIacross README, mkdocs site_name, and docs pages (index, ui-quickstart, supported-models).Platform references (
Windows ML) and the CLI command name (winml) are intentionally left unchanged.Addresses #510.