-
Notifications
You must be signed in to change notification settings - Fork 315
[Agents Extension] Add test scenarios using the cli-interactive-tester tool #8524
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
Open
trangevi
wants to merge
13
commits into
main
Choose a base branch
from
trangevi/test-scenarios
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
16db9dd
Add test scenarios for the cli-interactive-tester tool
trangevi 4fbaa67
Some scenario edits
trangevi 61fc535
Picking up recent tester tool updates
trangevi 596826b
Some scenario updates
trangevi 71767db
Some more fixes to the scenarios
trangevi df67a66
Some more improvements
trangevi 3eac215
Remove optimization and evals because I don't understand them yet, wi…
trangevi c18315c
Add prompt to readme
trangevi 1d1e5f2
Add parameterization support
trangevi d3cd9b5
Add tags
trangevi ea2bac4
Agents.md update, to direct people to the testing
trangevi 8a63c1d
cspell
trangevi 4793e9f
PR comments
trangevi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,6 +41,7 @@ words: | |
| - CLIENTSECRET | ||
| - curr | ||
| - dataagent | ||
| - defaultyourvalue | ||
| - envkey | ||
| - exterrors | ||
| - goyaml | ||
|
|
||
6 changes: 6 additions & 0 deletions
6
cli/azd/extensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/.gitignore
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # cli-interactive-tester run artifacts (screenshots, HTML reports, scrollback) | ||
| .reports/ | ||
|
|
||
| # Per-developer / per-CI scenario profile (identifying values). Bootstrap | ||
| # from profile.local.yaml.example. See README "Profile / overrides". | ||
| profile.local.yaml |
19 changes: 19 additions & 0 deletions
19
...xtensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-doctor-empty-dir.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Tier 0 (offline) — `doctor` in an empty directory degrades gracefully. | ||
| name: "doctor-empty-dir" | ||
| command: "azd ai agent doctor" | ||
| cwd: "~/working/azd-agents-doctor-empty-{instance}" | ||
| tags: ["tier:0", "cmd:doctor", "parallel-safe"] | ||
|
|
||
| # Guarantee an empty working dir so the "no azd project" path is exercised. | ||
| # start_session recreates the dir, so removing it is enough. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-doctor-empty-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset to an empty working dir" | ||
|
|
||
| goals: | ||
| - "Run doctor in a directory that has no azd project. Wait for the check report to render." | ||
| - "Confirm the command reports checks as skipped (or failed) with readable, non-crashing output — it should NOT panic or print a Go stack trace." | ||
| - "Note the exit code behavior described in help: 2 when all checks are skipped (preconditions unmet), 1 on failure, 0 when at least one passes." | ||
| - "Take a screenshot of the doctor report." | ||
| - "Report a finding if doctor crashes, prints a stack trace, or gives an unhelpful/confusing message for a missing project." |
18 changes: 18 additions & 0 deletions
18
...tensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-doctor-local-only.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Tier 0 (offline) — `doctor --local-only` skips remote checks. | ||
| name: "doctor-local-only" | ||
| command: "azd ai agent doctor --local-only" | ||
| cwd: "~/working/azd-agents-doctor-local-{instance}" | ||
| tags: ["tier:0", "cmd:doctor", "parallel-safe"] | ||
|
|
||
| # Guarantee an empty working dir for a deterministic local-only run. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-doctor-local-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset to an empty working dir" | ||
|
trangevi marked this conversation as resolved.
|
||
|
|
||
| goals: | ||
| - "Run doctor with --local-only. Wait for the report to render." | ||
| - "Confirm only local checks are attempted and remote/network-dependent checks are skipped (the report should indicate skipped remote checks)." | ||
| - "Confirm the run completes without attempting any network calls and without crashing." | ||
| - "Take a screenshot of the report." | ||
| - "Report a finding if remote checks still run, or if the output is confusing about what was skipped." | ||
12 changes: 12 additions & 0 deletions
12
cli/azd/extensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-help-root.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| # Tier 0 (offline) — verify root help lists every expected subcommand. | ||
| name: "help-root" | ||
| command: "azd ai agent --help" | ||
| cwd: "/tmp" | ||
| tags: ["tier:0", "cmd:help", "parallel-safe"] | ||
|
|
||
| goals: | ||
| - "Wait for the help output to render (it includes an ASCII-art banner and a 'Usage:' section)." | ||
| - "Confirm the 'Available Commands' list includes: doctor, endpoint, eval, files, init, invoke, monitor, optimize, run, sample, sessions, show, version." | ||
| - "Confirm the global flags are listed: --cwd/-C, --debug, --environment/-e, --no-prompt, --output/-o." | ||
| - "Take a screenshot of the help output." | ||
| - "Report a finding if any listed command is missing, if the usage text is malformed, or if the command exits non-zero." |
37 changes: 37 additions & 0 deletions
37
...ons/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-init-picker-navigation.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # Tier 0 (offline) — exercise the `init` interactive picker UX, then abort. | ||
| # | ||
| # This scenario probes the early interactive prompts only (init mode, language, | ||
| # template list). It intentionally ABORTS with Ctrl-C before reaching any Azure / | ||
| # Foundry project prompts, so it needs no Azure auth and creates no resources. | ||
| name: "init-picker-navigation" | ||
| command: "azd ai agent init" | ||
| cwd: "~/working/azd-agents-picker-{instance}" | ||
| tags: ["tier:0", "cmd:init", "picker", "parallel-safe"] | ||
|
|
||
| env: | ||
| AZD_DISABLE_AGENT_DETECT: "1" | ||
|
|
||
| # Clean dir, then seed a file so the dir is non-empty. The init-method picker | ||
| # ("Use the code in the current directory" / "Start new from a template") only | ||
| # appears when the working directory is NOT empty; on an empty dir the command | ||
| # auto-selects the template flow and skips the picker. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-picker-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset working dir" | ||
| - run: "mkdir -p ~/working/azd-agents-picker-{instance} && touch ~/working/azd-agents-picker-{instance}/placeholder.txt" | ||
| cwd: "~/working" | ||
| name: "seed a placeholder file so the init-method picker appears" | ||
|
|
||
| goals: | ||
| - "Wait for the first prompt asking how to initialize (it should appear because the directory is non-empty): 'Use the code in the current directory' / 'Start new from a template'." | ||
| - "Select 'Start new from a template', then wait for the language prompt." | ||
| - "Select a language (Python), then wait for the template list prompt." | ||
| - "On the template list, type a partial search string to filter the list; confirm the list narrows to matching entries." | ||
| - "Type a string that matches nothing; confirm the list shows an empty/no-match state and does not crash." | ||
| - "Clear the filter (backspace) and confirm the full list returns." | ||
| - "Press Down many times past the end of the list; confirm selection stays bounded and does not error." | ||
| - "If a prompt mentions a '?' hint, press '?' and confirm a helpful hint is shown." | ||
| - "Take a screenshot at each interesting state." | ||
| - "Press Ctrl-C (or Escape at the top-level prompt) to abort. Confirm it exits cleanly without a stack trace and without leaving a half-written azure.yaml." | ||
| - "Report a finding for any picker glitch: filter not recovering, crash on no-match, unbounded scrolling, unhelpful hints, or a messy/abrupt abort." |
25 changes: 25 additions & 0 deletions
25
...ai.agents/tests/cli-interactive-tester-scenarios/00-init-validate-mutually-exclusive.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Tier 0 (offline) — `init` rejects a positional argument combined with --manifest. | ||
| # | ||
| # There is no `--from-code` flag. A real, offline-detectable conflict is passing | ||
| # BOTH a positional manifest argument AND -m/--manifest, which the command | ||
| # rejects up front (CodeConflictingArguments) before any wizard or network call. | ||
| name: "init-validate-mutually-exclusive" | ||
| command: "azd ai agent init agent.manifest.yaml -m https://example.com/agent.manifest.yaml" | ||
| cwd: "~/working/azd-agents-validate-{instance}" | ||
| tags: ["tier:0", "cmd:init", "negative-path", "parallel-safe"] | ||
|
|
||
| env: | ||
| AZD_DISABLE_AGENT_DETECT: "1" | ||
|
|
||
| # Start from a clean dir so leftover files can't affect the validation result. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-validate-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset working dir" | ||
|
|
||
| goals: | ||
| - "Wait for the command to fail fast (it should not start the interactive wizard)." | ||
| - "Confirm the error message clearly states that you cannot pass both a positional argument and --manifest." | ||
| - "Confirm the process exits non-zero and does NOT create or modify any project files in the directory." | ||
| - "Take a screenshot of the error output." | ||
| - "Report a finding if the conflicting arguments are silently accepted, if the wizard starts anyway, or if the error message is unclear about the conflict." |
21 changes: 21 additions & 0 deletions
21
....ai.agents/tests/cli-interactive-tester-scenarios/00-init-validate-no-prompt-missing.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| # Tier 0 (offline) — `init --no-prompt` with no resolvable inputs fails helpfully. | ||
| name: "init-validate-no-prompt-missing" | ||
| command: "azd ai agent init --no-prompt" | ||
| cwd: "~/working/azd-agents-validate-noprompt-{instance}" | ||
| tags: ["tier:0", "cmd:init", "negative-path", "parallel-safe"] | ||
|
|
||
| env: | ||
| AZD_DISABLE_AGENT_DETECT: "1" | ||
|
|
||
| # Empty dir is a precondition: no existing code/manifest to resolve from. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-validate-noprompt-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset to an empty working dir" | ||
|
|
||
| goals: | ||
| - "Run init in --no-prompt mode in an empty directory with no flags and no existing code/manifest." | ||
| - "Confirm the command does NOT hang waiting for input (no-prompt must never block on a prompt)." | ||
| - "Confirm it exits non-zero with a helpful message explaining what required value or decision could not be resolved automatically (e.g. needing --src, --manifest, or --project-id)." | ||
| - "Take a screenshot of the error output." | ||
| - "Report a finding if it hangs, prompts interactively despite --no-prompt, or gives an unhelpful error." |
13 changes: 13 additions & 0 deletions
13
...s/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-sample-list-json-filters.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Tier 0 (offline) — `sample list` JSON output and filter flags. | ||
| name: "sample-list-json-filters" | ||
| command: "bash" | ||
| cwd: "/tmp" | ||
| tags: ["tier:0", "cmd:sample", "parallel-safe"] | ||
|
|
||
| goals: | ||
| - "Run: azd ai agent sample list --output json. Confirm the output is valid JSON (an array/object of samples)." | ||
| - "Run: azd ai agent sample list --language python --output json. Confirm results are filtered to python samples only." | ||
| - "Run: azd ai agent sample list --type agent --output json. Confirm results only include agent-type templates." | ||
| - "Run: azd ai agent sample list --featured-only --output json. Confirm only featured samples are returned (a subset of the full list)." | ||
| - "Take a screenshot after each command." | ||
| - "Report a finding if any command produces invalid JSON, ignores its filter, or errors." |
11 changes: 11 additions & 0 deletions
11
...xtensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-sample-list-text.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Tier 0 (offline) — `sample list` renders the human-readable catalog. | ||
| name: "sample-list-text" | ||
| command: "azd ai agent sample list" | ||
| cwd: "/tmp" | ||
| tags: ["tier:0", "cmd:sample", "parallel-safe"] | ||
|
|
||
| goals: | ||
| - "Wait for the curated sample catalog to render as human-readable text." | ||
| - "Confirm at least one sample entry is shown with a name/title and a manifest or repo reference usable with 'azd ai agent init -m' or 'azd init -t'." | ||
| - "Take a screenshot of the catalog output." | ||
| - "Report a finding if the list is empty, truncated, or the command errors." |
11 changes: 11 additions & 0 deletions
11
cli/azd/extensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/00-version.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # Tier 0 (offline) — verify `azd ai agent version` prints a version string. | ||
| name: "version" | ||
| command: "azd ai agent version" | ||
| cwd: "/tmp" | ||
| tags: ["tier:0", "cmd:version", "parallel-safe"] | ||
|
|
||
| goals: | ||
| - "Wait for the command to print a version string (e.g. a value like '0.1.x-preview' or a commit-based 'vdev' build identifier)." | ||
| - "Confirm the process exits cleanly without an error or stack trace." | ||
| - "Take a screenshot of the final output." | ||
| - "Report a finding if no version is printed, if the output is empty, or if the command errors." |
40 changes: 40 additions & 0 deletions
40
...ions/azure.ai.agents/tests/cli-interactive-tester-scenarios/10-init-deploy-mode-code.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| # Tier 1 (auth, scaffold only) — interactive code-deploy mode (entry point + runtime). | ||
| # | ||
| # Requires Azure login (see README "Authentication"). Does NOT run `azd provision`; | ||
| # no cost incurred. | ||
| # Targets the --deploy-mode code path which prompts for entry-point and runtime | ||
| # (instead of building a container image). There is no --from-code flag; the | ||
| # from-code flow is selected interactively at the init-method prompt. | ||
| name: "init-deploy-mode-code" | ||
| command: "azd ai agent init --deploy-mode code" | ||
| cwd: "~/working/azd-agents-t1-code-deploy-{instance}" | ||
| tags: ["tier:1", "cmd:init", "parallel-safe"] | ||
|
|
||
| env: | ||
| AZD_DISABLE_AGENT_DETECT: "1" | ||
|
|
||
| # Seed a committed Python fixture so code-deploy has real source to package. | ||
| # Override the fixture location with AZD_AGENTS_FIXTURES if needed. | ||
| pre: | ||
| - run: "rm -rf ~/working/azd-agents-t1-code-deploy-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset working dir" | ||
| - run: "mkdir -p ~/working/azd-agents-t1-code-deploy-{instance} && cp -r \"${AZD_AGENTS_FIXTURES:-/mnt/c/Repos/azure-dev/cli/azd/extensions/azure.ai.agents/tests/cli-interactive-tester-scenarios/fixtures}/from-code/.\" ~/working/azd-agents-t1-code-deploy-{instance}/" | ||
| cwd: "~/working" | ||
| name: "seed from-code agent fixture (app.py + requirements.txt)" | ||
|
|
||
| goals: | ||
| - "RESOURCE NAMING: whenever you are prompted to NAME a new Azure resource you are creating (Foundry project/account, azd environment, agent, model deployment, or resource group), give it a name prefixed with '{prefix}-' and suffixed with this run's instance id '-{instance}' (e.g. '{prefix}-basic-responses-{instance}') so concurrent instances don't collide on resource names. Some fields lowercase the value and replace invalid characters with hyphens; that normalization is expected. If a name prompt comes pre-filled with a default value, CLEAR it first (select-all then delete, or backspaces) before typing so your name replaces the default instead of appending to it." | ||
| - "At the first 'How do you want to initialize your agent?' prompt, select 'Use the code in the current directory'." | ||
| - "Wait for the tool to inspect the current directory's code with code-deploy (ZIP upload) mode selected." | ||
| - "If an existing agent manifest is detected, confirm reuse." | ||
| - "When prompted for an entry point, provide the main entry file (e.g. 'app.py')." | ||
| - "When prompted for a runtime, select an appropriate runtime (e.g. 'python_3_13')." | ||
| - "If asked to select an Azure AI Foundry project, choose to create a new one, naming it with the '{prefix}-' prefix, and follow the prompts." | ||
| - "If asked to select a subscription, search for and select the '{subscription}' subscription." | ||
| - "If asked for a location/region, select '{region}'." | ||
| - "If asked to select a model, choose '{model}' and accept the remaining model defaults." | ||
| - "Wait for initialization to complete — look for 'Next:' or a success message." | ||
| - "Verify the scaffold: confirm azure.yaml/agent.yaml reflect code-deploy mode with the chosen entry point and runtime, and that a .agentignore file controls ZIP packaging." | ||
| - "Take a screenshot of the completed init output." | ||
| - "STOP here — do NOT run 'azd provision'. Report a finding if the entry-point or runtime prompts are missing, confusing, or not persisted." |
39 changes: 39 additions & 0 deletions
39
...zure.ai.agents/tests/cli-interactive-tester-scenarios/10-init-flags-agent-name-model.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # Tier 1 (auth, scaffold only) — init from a manifest with explicit --agent-name and --model. | ||
| # | ||
| # Requires Azure login (see README "Authentication"). Does NOT run `azd provision`; | ||
| # no cost incurred. | ||
| # Also requires GitHub login: `gh auth login` (manifest download can fall back to | ||
| # the gh CLI when the anonymous GitHub API is rate-limited). The pre hook fails | ||
| # fast if gh is not authenticated. | ||
| # Verifies that the override flags are honored in the generated files. | ||
| name: "init-flags-agent-name-model" | ||
| command: "azd ai agent init -m https://github.com/microsoft-foundry/foundry-samples/blob/main/samples/python/hosted-agents/agent-framework/responses/01-basic/agent.manifest.yaml --agent-name {prefix}-qa-named-agent-{instance} --model {model}" | ||
| cwd: "~/working/azd-agents-t1-flags-{instance}" | ||
| tags: ["tier:1", "cmd:init", "parallel-safe"] | ||
|
|
||
| env: | ||
| AZD_DISABLE_AGENT_DETECT: "1" | ||
|
|
||
| # Require GitHub auth up front (like az login), then start from a clean dir so a | ||
| # prior run's scaffold can't trigger overwrite prompts. | ||
| pre: | ||
| - run: "gh auth status || { echo 'ERROR: GitHub CLI not authenticated. Run: gh auth login'; exit 1; }" | ||
| cwd: "~/working" | ||
| name: "require gh auth login (manifest download)" | ||
| - run: "rm -rf ~/working/azd-agents-t1-flags-{instance}" | ||
| cwd: "~/working" | ||
| name: "reset working dir" | ||
|
|
||
| goals: | ||
| - "RESOURCE NAMING: whenever you are prompted to NAME a new Azure resource you are creating (Foundry project/account, azd environment, agent, model deployment, or resource group), give it a name prefixed with '{prefix}-' and suffixed with this run's instance id '-{instance}' (e.g. '{prefix}-basic-responses-{instance}') so concurrent instances don't collide on resource names. Some fields lowercase the value and replace invalid characters with hyphens; that normalization is expected. If a name prompt comes pre-filled with a default value, CLEAR it first (select-all then delete, or backspaces) before typing so your name replaces the default instead of appending to it." | ||
| - "Wait for the manifest to download and parse." | ||
| - "When asked how to deploy, select 'Container' (hosted agent)." | ||
| - "If asked to select an Azure AI Foundry project, choose to create a new one, naming it with the '{prefix}-' prefix, and follow the prompts." | ||
| - "If asked to select a subscription, search for and select the '{subscription}' subscription." | ||
| - "If asked for a location/region, select '{region}'." | ||
| - "Accept any remaining model defaults (version, SKU, capacity). If prompted for a model deployment name, use a '{prefix}-'-prefixed name." | ||
| - "If asked for container/resource size, select 'Small'." | ||
| - "Wait for initialization to complete — look for 'Next:' or a success message." | ||
| - "Verify the overrides: confirm agent.yaml records the Foundry agent name as '{prefix}-qa-named-agent-{instance}' (the flag value passed via --agent-name) and the model '{model}' — the values passed via flags, not the manifest defaults." | ||
| - "Take a screenshot of the completed init output." | ||
| - "STOP here — do NOT run 'azd provision'. Report a finding if --agent-name or --model is ignored, or if the wizard still prompts for these values despite the flags." |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.