-
Notifications
You must be signed in to change notification settings - Fork 3.3k
{Scripts} Add AI-powered help documentation quality analysis tool #32469
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
|
The git hooks are available for azure-cli and azure-cli-extensions repos. They could help you run required checks before creating the PR. Please sync the latest code with latest dev branch (for azure-cli) or main branch (for azure-cli-extensions). pip install azdev --upgrade
azdev setup -c <your azure-cli repo path> -r <your azure-cli-extensions repo path>
|
| self.spinner_thread.join() | ||
|
|
||
|
|
||
| def find_help_files(input_path): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use the azdev command to retrieve the detailed help of every commands. The help description in the help.py files are not complete. Especially missing the argument help descriptions.
| "dockerfile": "Dockerfile" | ||
| "dockerfile": "Dockerfile", | ||
| "context": ".." | ||
| }, | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/github-cli:1": {} | ||
| }, | ||
| "workspaceFolder": "/workspaces", | ||
| "onCreateCommand": "uv venv .venv --seed", | ||
| "postCreateCommand": "REPO_NAME=$(basename $GITHUB_REPOSITORY) && cat $REPO_NAME/.devcontainer/init.sh >> ~/.bashrc && mkdir .vscode && cp $REPO_NAME/.devcontainer/mcp.json .vscode/", | ||
| // "workspaceFolder": "/workspaces", | ||
| "onCreateCommand": "uv venv .venv --seed --clear", | ||
| "postCreateCommand": "cat .devcontainer/init.sh >> ~/.bashrc && mkdir -p .vscode && cp .devcontainer/mcp.json .vscode/", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CC @necusjz to review this change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"workspaceFolder": "/workspaces" is by design. although the entry point of codespaces is azure-cli, in practice the abstraction layer sits above that. It is not just about operating on azure-cli repo, but also involves azure-cli-extensions, azure-rest-api-specs, and aaz.
in addition, changes to .devcontainer seem out of the scope of this pull request.
Related command
N/A - This PR adds new tooling for help documentation analysis, not command changes.
Description
This PR introduces a new AI-powered tool for evaluating the quality of Azure CLI help documentation. The tool uses Azure OpenAI to analyze help files and provide detailed quality assessments based on multiple frameworks.
Key Components:
help_evaluator.py: Core evaluation class that handles Azure OpenAI integration, prompt management, and analysis generationevaluate-help.py: Command-line interface for running evaluations on single files or entire directoriesprompts/directoryFeatures:
*_help.pyfiles in specified directoriesTesting Guide
cd scripts/ai pip install -r requirements.txt.env:cp .env.example .env # Edit .env with your Azure OpenAI credentialsscripts/ai/analysisHistory Notes
{Scripts} Add AI-powered help documentation quality analysis tool
This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.