-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdataset.json
More file actions
74 lines (74 loc) · 2.91 KB
/
dataset.json
File metadata and controls
74 lines (74 loc) · 2.91 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"scenarios": [
{
"id": "cloud-sql-debug-instance",
"starting_prompt": "Check on my databases in project ext-test-cloud-sql-postgres.",
"conversation_plan": "Ask the agent to list all Cloud SQL instances in the project. Once all instances are listed, if 'daily-ci-evals-db' exists, get its details and validate it is RUNNABLE.",
"expected_trajectory": [
"list_instances",
"get_instance"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres"
},
"kind": "tools",
"max_turns": 4
},
{
"id": "cloud-sql-schema-tables-explore",
"starting_prompt": "I want to understand the structure of my database.",
"conversation_plan": "First, ask the agent to list the schemas in the database. After the agent provides the schemas, ask it to list the tables specifically for the 'public' schema.",
"expected_trajectory": [
"list_schemas",
"list_tables"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres"
},
"kind": "tools",
"max_turns": 6
},
{
"id": "cloud-sql-performance-check",
"starting_prompt": "Our database performance seems degraded.",
"conversation_plan": "Start by asking the agent to check for any active queries that are running for a long time (e.g., more than 10 seconds). After the agent responds, follow up by asking if there are any database locks that might be causing issues.",
"expected_trajectory": [
"list_active_queries",
"list_locks"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres"
},
"kind": "tools",
"max_turns": 6
},
{
"id": "cloud-sql-metrics-cpu-investigation",
"starting_prompt": "I'm worried about the database load for daily-ci-evals-db.",
"conversation_plan": "First, ask the agent to check the CPU utilization for the instance 'daily-ci-evals-db' for the last 5 minutes. After the agent provides the CPU data, ask it to check the overall database stats to see connection counts or transaction volume.",
"expected_trajectory": [
"get_system_metrics",
"list_database_stats"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres"
},
"kind": "tools",
"max_turns": 6
},
{
"id": "cloud-sql-instance-not-found",
"starting_prompt": "Get details for the instance 'missing-db-123'.",
"conversation_plan": "The user asks for details of an instance named 'missing-db-123' that doesn't exist. The agent should try to get it, fail, and inform the user. The user will then ask to list instances to find the correct name.",
"expected_trajectory": [
"get_instance",
"list_instances"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-cloud-sql-postgres"
},
"kind": "tools",
"max_turns": 4
}
]
}