From 551b93318ad61389df42bb843a98969313e68ddf Mon Sep 17 00:00:00 2001 From: "charmenta[bot]" <291047445+charmenta[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 15:53:29 +0000 Subject: [PATCH] auto-update(docs): 716 --- adk/testing/evals.mdx | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/adk/testing/evals.mdx b/adk/testing/evals.mdx index 15ea5978..ba7c6c36 100644 --- a/adk/testing/evals.mdx +++ b/adk/testing/evals.mdx @@ -75,6 +75,19 @@ Assert the agent doesn't respond: user: "ok thanks", expectSilence: true, } +} +``` + +Start a turn in a new conversation under the same user with `newConversation: true`. The prior transcript is gone, so the agent can only answer from user-scoped memory — useful for testing what your agent persists across conversations. It's ignored on the first turn. + +```typescript +{ + newConversation: true, + user: "What's my name?", + assert: { + response: [{ contains: "Priya" }], + }, +} ``` ## Assertions