Commit 9a79fa1
docs: fix typo in per-turn user simulator quality prompt
Merge #6305
**Please ensure you have read the [contribution guide](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) before creating a pull request.**
### Link to Issue or Description of Change
**2. Or, if no issue exists, describe the change:**
**Problem:**
The with-persona evaluator prompt template in
`src/google/adk/evaluation/simulation/per_turn_user_simulator_quality_prompts.py`
misspells "existing" as "exsisting" in its "Definition of Conversation History"
section. This text is part of the prompt sent to the model at evaluation time,
so it is model-facing rather than an internal comment. The sibling non-persona
template in the same file already uses the correct spelling in the identical
sentence, so the two templates are inconsistent.
**Solution:**
Correct the single word `exsisting` -> `existing` on that line. This makes the
two templates consistent and fixes the model-facing text. No code path changes.
### Testing Plan
This is a small typo fix in a prompt string, so no behavioral tests are added.
The existing module test suite still passes and linting is clean:
- `pre-commit run --files src/google/adk/evaluation/simulation/per_turn_user_simulator_quality_prompts.py` -> all Passed/Skipped.
- `pytest tests/unittests/evaluation/simulation/test_per_turn_user_simulation_quality_prompts.py -q` -> 6 passed.
**Unit Tests:**
- [ ] I have added or updated unit tests for my change. (N/A: typo-only fix in a prompt string literal; the module's tests mock the templates and do not snapshot the prompt text.)
- [x] All unit tests pass locally.
### Checklist
- [x] I have read the [CONTRIBUTING.md](https://github.com/google/adk-python/blob/main/CONTRIBUTING.md) document.
- [x] I have performed a self-review of my own code.
- [x] New and existing unit tests pass locally with my changes.
COPYBARA_INTEGRATE_REVIEW=#6305 from anxkhn:docs/simulator-prompt-typo 34dc49f
PiperOrigin-RevId: 9435342491 parent 5301ffa commit 9a79fa1
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
146 | 146 | | |
147 | 147 | | |
148 | 148 | | |
149 | | - | |
| 149 | + | |
150 | 150 | | |
151 | 151 | | |
152 | 152 | | |
| |||
0 commit comments