Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions adk/testing/evals.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading