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
8 changes: 8 additions & 0 deletions adk/testing/evals.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ Fire an event instead of a message:

```typescript
{
event: {
payload: { type: "order.placed", orderId: "ord-123", total: 49.99 },
},
assert: {
response: [{ contains: "order" }],
},
}
event: {
type: "order.placed",
payload: { orderId: "ord-123", total: 49.99 },
Expand Down Expand Up @@ -321,6 +328,7 @@ adk evals --tag smoke # Run evals with a specific tag
adk evals --type regression # Run only regression evals
adk evals -v # Show full details, not just failures
```
adk evals --prod # Run evals against the deployed production agent

View past runs:

Expand Down
Loading