-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcodex-cli.evalset.json
More file actions
47 lines (47 loc) · 2.06 KB
/
Copy pathcodex-cli.evalset.json
File metadata and controls
47 lines (47 loc) · 2.06 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
{
"scenarios": [
{
"id": "cloud-sql-list-instances-01",
"starting_prompt": "list all Cloud SQL instances in project astana-evaluation",
"conversation_plan": "Ask the agent to list instances in project astana-evaluation. Once all instances are listed if nl2code exist get its state and validate its RUNNABLE",
"expected_trajectory": [
"cloud-sql__list_instances",
"cloud-sql__get_instance"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "astana-evaluation"
},
"kind": "tools",
"max_turns": 3
},
{
"id": "csql-create-ambiguous-multiturn-01",
"starting_prompt": "I need a database.",
"conversation_plan": "The user starts with a vague request. You want to CREATE a NEW Cloud SQL instance named 'my-pg-app'. If the agent offers to create one, say YES. When asked for details, provide 'my-pg-app' as the instance name and 'user_data' as the database name. Never claim to have an existing instance. The goal is for the agent to eventually create the database 'user_data' inside 'my-pg-app' in astana-evaluation project.",
"expected_trajectory": [
"cloud-sql__list_instances",
"cloud-sql__create_instance",
"cloud-sql__create_database"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "astana-evaluation"
},
"kind": "tools",
"max_turns": 6
},
{
"id": "csql-instance-not-found-failure",
"starting_prompt": "Update the instance 'non-existent-db-123' to have 8 cores.",
"conversation_plan": "The user asks to interact with an instance named 'non-existent-db-123' in astana-evaluation project that doesn't exist. The agent should try to get the instance details or update it directly, fail to find it, and inform the user. The user will then ask to list instances to find the correct name.",
"expected_trajectory": [
"cloud-sql__update_instance",
"cloud-sql__list_instances"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "astana-evaluation"
},
"kind": "tools",
"max_turns": 4
}
]
}