-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperformance-tests.yaml
More file actions
41 lines (36 loc) · 1 KB
/
performance-tests.yaml
File metadata and controls
41 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Performance Tests
description: Token, step, and duration budget validation
tests:
- name: Weather agent token budget
input: "Weather check"
trace: ../traces/weather-agent.json
tags: [performance, tokens]
expect:
max_tokens: 500
max_steps: 10
- name: Research agent token budget
input: "Research task"
trace: ../traces/research-agent.json
tags: [performance, tokens]
expect:
max_tokens: 1000
max_steps: 15
- name: Coding agent token budget
input: "Code task"
trace: ../traces/coding-agent.json
tags: [performance, tokens]
expect:
max_tokens: 500
max_steps: 12
- name: Weather agent duration budget
input: "Weather check"
trace: ../traces/weather-agent.json
tags: [performance, duration]
expect:
max_duration_ms: 5000
- name: Research agent duration budget
input: "Research task"
trace: ../traces/research-agent.json
tags: [performance, duration]
expect:
max_duration_ms: 10000