-
Notifications
You must be signed in to change notification settings - Fork 15
doc: add AKS MCP tool consolidate prompt #93
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
Conversation
**Parameters:** | ||
```json | ||
{ | ||
"operation": "show|list|create|delete|scale|update|upgrade|nodepool-*|account-*", |
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.
A little concerned on this: when we merge 'az aks' and 'az account' together, and put them in az_aks_operations, will AI be able to know they are 'az aks', 'az account' and add right args?
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.
each subcommand paratmer formats should be included in tool's description
**Parameters:** | ||
```json | ||
{ | ||
"operation": "metrics|resource_health|app_insights|diagnostics|logs", |
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.
the args are quite different, some of them are using 'az' cli, and some of them are not. I am also concerned about if AI can parse the right args.
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.
yes, that's a good point. Let's do some validations. If that's not working well, we can still keep them separately
{ | ||
"operation": "metrics|resource_health|app_insights|diagnostics|logs", | ||
"query_type": "specific to operation", | ||
"parameters": "operation-specific parameters" |
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.
az cli support '--help', while others don't. do we have a way to let AI know it can call '--help' for some specific operation to get the guidance?
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.
could we make --help as part of parameters
No description provided.