Skip to content

Commit feeff45

Browse files
committed
fix help examples
1 parent 3e93c18 commit feeff45

File tree

1 file changed

+7
-3
lines changed
  • src/aks-preview/azext_aks_preview

1 file changed

+7
-3
lines changed

src/aks-preview/azext_aks_preview/_help.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3904,10 +3904,10 @@
39043904
- name: --max-steps
39053905
type: int
39063906
short-summary: Maximum number of steps the LLM can take to investigate the issue.
3907-
- name: --non-interactive
3907+
- name: --no-interactive
39083908
type: bool
39093909
short-summary: Disable interactive mode. When set, the agent will not prompt for input and will run in batch mode.
3910-
- name: --echo_request
3910+
- name: --no-echo-request
39113911
type: bool
39123912
short-summary: Disable echoing back the question provided to AKS Agent in the output.
39133913
- name: --show-tool-output
@@ -3923,11 +3923,15 @@
39233923
- name: Analyze cluster with specific AI model
39243924
text: az aks agent "Check cluster health" --model azure/my-gpt4-deployment --api-key sk-xxx
39253925
- name: Run in non-interactive batch mode
3926-
text: az aks agent "Diagnose networking issues" --interactive false --max-steps 5
3926+
text: az aks agent "Diagnose networking issues" --no-interactive --max-steps 5
39273927
- name: Use Azure OpenAI with custom deployment
39283928
text: az aks agent "Analyze failed deployments" --model azure/my-gpt4-deployment --api-key xxx
39293929
- name: Show detailed tool output during analysis
39303930
text: az aks agent "Why is my service unavailable?" --show-tool-output
39313931
- name: Use custom configuration file
39323932
text: az aks agent "Check resource usage" --config-file /path/to/custom.config
3933+
- name: Run agent with no echo of the original question
3934+
text: az aks agent "What is the status of my cluster?" --no-echo-request
3935+
- name: Refresh toolsets to get the latest available tools
3936+
text: az aks agent --refresh-toolsets
39333937
"""

0 commit comments

Comments
 (0)