-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdataset.json
More file actions
32 lines (32 loc) · 1.23 KB
/
dataset.json
File metadata and controls
32 lines (32 loc) · 1.23 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
{
"scenarios": [
{
"id": "bq-search-and-insight",
"starting_prompt": "Find tables related to sales in project ext-test-bigquery-analytics.",
"conversation_plan": "First, ask the agent to find tables related to sales. Once it lists the tables (which should include 'sales_data' in 'evalbench_ci'), ask it to identify the top product by sales in that table.",
"expected_trajectory": [
"search_catalog",
"ask_data_insights"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-bigquery-analytics"
},
"kind": "tools",
"max_turns": 4
},
{
"id": "bq-insight-and-forecast",
"starting_prompt": "What are the top products by sales in the table 'sales_data' in dataset 'evalbench_ci' and project 'ext-test-bigquery-analytics'?",
"conversation_plan": "First, ask the agent to find the top products by sales in the sales_data table. After it identifies the top products, ask it to forecast the sales for the top product for the next 5 steps.",
"expected_trajectory": [
"ask_data_insights",
"forecast"
],
"env": {
"GOOGLE_CLOUD_PROJECT": "ext-test-bigquery-analytics"
},
"kind": "tools",
"max_turns": 4
}
]
}