-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdataset.json
More file actions
56 lines (56 loc) · 1.96 KB
/
dataset.json
File metadata and controls
56 lines (56 loc) · 1.96 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
{
"scenarios": [
{
"id": "cloud-sql-list-instances",
"starting_prompt": "Show me all the Cloud SQL instances in this project.",
"conversation_plan": "Ask the agent to list the Cloud SQL instances in the current project.",
"expected_trajectory": [
"list_instances"
],
"kind": "tool",
"max_turns": 5
},
{
"id": "cloud-sql-data-explore",
"starting_prompt": "What schemas and tables do we have in this database? Please list them.",
"conversation_plan": "Ask the agent to list the schemas in the database. Then ask to list the tables.",
"expected_trajectory": [
"list_schemas",
"list_tables"
],
"kind": "tool",
"max_turns": 5
},
{
"id": "cloud-sql-perf-troubleshoot",
"starting_prompt": "The database is running slow. Are there any active queries running for more than 10 seconds or any locks?",
"conversation_plan": "Ask the agent to check for active queries running longer than 10 seconds. Then ask to check for locks.",
"expected_trajectory": [
"list_active_queries",
"list_locks"
],
"kind": "tool",
"max_turns": 5
},
{
"id": "cloud-sql-metrics-cpu",
"starting_prompt": "Can you show me the CPU utilization for instance 'daily-ci-evals-db' in project 'ext-test-cloud-sql-postgres' for the last 5 minutes?",
"conversation_plan": "Ask the agent to query the CPU utilization metric for the specified instance and project using PromQL.",
"expected_trajectory": [
"get_system_metrics"
],
"kind": "tool",
"max_turns": 4
},
{
"id": "cloud-sql-unused-indexes",
"starting_prompt": "Are there any unused indexes in the database that we can clean up?",
"conversation_plan": "Ask the agent to list unused indexes in the database.",
"expected_trajectory": [
"list_indexes"
],
"kind": "tool",
"max_turns": 4
}
]
}