-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdataset.json
More file actions
45 lines (45 loc) · 1.56 KB
/
dataset.json
File metadata and controls
45 lines (45 loc) · 1.56 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
{
"scenarios": [
{
"id": "cloud-sql-debug-instance",
"starting_prompt": "Check on my databases in project ${GOOGLE_CLOUD_PROJECT}.",
"conversation_plan": "Ask the agent to list all Cloud SQL instances in the project. Once all instances are listed, if '${CLOUD_SQL_MSSQL_INSTANCE}' exists, get its details and validate it is RUNNABLE.",
"expected_trajectory": [
"list_instances",
"get_instance"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"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 databases in the instance. After the agent provides the databases, ask it to list the tables specifically for that database.",
"expected_trajectory": [
"list_databases",
"list_tables"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"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 the CPU utilization system metrics for the database instance to see if it's overloaded.",
"expected_trajectory": [
"get_system_metrics"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "${GOOGLE_CLOUD_PROJECT}"
},
"kind": "tools",
"max_turns": 3
}
]
}