-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdataset.json
More file actions
60 lines (60 loc) · 2.33 KB
/
dataset.json
File metadata and controls
60 lines (60 loc) · 2.33 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
{
"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": 3
},
{
"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": 3
},
{
"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": 3
},
{
"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": 3
}
]
}