From 8c46848cc5210e101b9e45dfb86f1ad323cf5573 Mon Sep 17 00:00:00 2001 From: alexisxy Date: Mon, 3 Jun 2024 20:52:23 -0400 Subject: [PATCH 1/6] support caching eval results --- .gitignore | 1 + browser_env/auto_login.py | 3 +- evaluation_harness/__init__.py | 1 + evaluation_harness/env_config.py | 81 +++++ evaluation_harness/evaluators.py | 422 ++++++++++++++++--------- evaluation_harness/helper_functions.py | 35 +- run.py | 5 +- scripts/check_error_runs.py | 79 +++-- 8 files changed, 435 insertions(+), 192 deletions(-) create mode 100644 evaluation_harness/env_config.py diff --git a/.gitignore b/.gitignore index f6bd932..e2e9f76 100644 --- a/.gitignore +++ b/.gitignore @@ -144,6 +144,7 @@ config_files/vwa/test_reddit.json config_files/vwatest_shopping.json config_files/wa/test_webarena.json config_files/wa/test_webarena/* +log_files/* cache/* agents/prompts/jsons/* \ No newline at end of file diff --git a/browser_env/auto_login.py b/browser_env/auto_login.py index 67a22c9..d1434dd 100644 --- a/browser_env/auto_login.py +++ b/browser_env/auto_login.py @@ -50,6 +50,7 @@ assert len(SITES) == len(URLS) == len(EXACT_MATCH) == len(KEYWORDS) + def is_expired( storage_state: Path, url: str, keyword: str, url_exact: bool = True ) -> bool: @@ -63,7 +64,7 @@ def is_expired( context = browser.new_context(storage_state=storage_state) page = context.new_page() page.goto(url) - time.sleep(1) + page.wait_for_timeout(1000) d_url = page.url content = page.content() context_manager.__exit__() diff --git a/evaluation_harness/__init__.py b/evaluation_harness/__init__.py index fd0b27d..90a4075 100644 --- a/evaluation_harness/__init__.py +++ b/evaluation_harness/__init__.py @@ -16,4 +16,5 @@ shopping_get_sku_latest_review_author, shopping_get_sku_latest_review_rating, shopping_get_sku_latest_review_text, + PseudoPage ) diff --git a/evaluation_harness/env_config.py b/evaluation_harness/env_config.py new file mode 100644 index 0000000..26e1ae7 --- /dev/null +++ b/evaluation_harness/env_config.py @@ -0,0 +1,81 @@ +# websites domain +import os + +DATASET = os.environ["DATASET"] +if DATASET not in ["webarena", "visualwebarena"]: + raise ValueError( + "Please set the DATASET environment variable, the possible options are `webarena`, `visualwebarena` and `miniwob++`" + ) + +# WebArena +if DATASET == "webarena": + REDDIT = os.environ.get("REDDIT", "") + SHOPPING = os.environ.get("SHOPPING", "") + SHOPPING_ADMIN = os.environ.get("SHOPPING_ADMIN", "") + GITLAB = os.environ.get("GITLAB", "") + WIKIPEDIA = os.environ.get("WIKIPEDIA", "") + MAP = os.environ.get("MAP", "") + HOMEPAGE = os.environ.get("HOMEPAGE", "") + assert ( + REDDIT + and SHOPPING + and SHOPPING_ADMIN + and GITLAB + and WIKIPEDIA + and MAP + and HOMEPAGE + ), ( + f"Please setup the URLs to each site. Current: \n" + + f"Reddit: {REDDIT}\n" + + f"Shopping: {SHOPPING}\n" + + f"Shopping Admin: {SHOPPING_ADMIN}\n" + + f"Gitlab: {GITLAB}\n" + + f"Wikipedia: {WIKIPEDIA}\n" + + f"Map: {MAP}\n" + + f"Homepage: {HOMEPAGE}\n" + ) + +elif DATASET == "visualwebarena": + REDDIT = os.environ.get("REDDIT", "") + SHOPPING = os.environ.get("SHOPPING", "") + WIKIPEDIA = os.environ.get("WIKIPEDIA", "") + HOMEPAGE = os.environ.get("HOMEPAGE", "") + CLASSIFIEDS = os.environ.get("CLASSIFIEDS", "") + CLASSIFIEDS_RESET_TOKEN = os.environ.get("CLASSIFIEDS_RESET_TOKEN", "") + REDDIT_RESET_URL = os.environ.get("REDDIT_RESET_URL", "") + + assert ( + REDDIT + and SHOPPING + and WIKIPEDIA + and HOMEPAGE + and CLASSIFIEDS + and CLASSIFIEDS_RESET_TOKEN + ), ( + f"Please setup the URLs and tokens to each site. Current: " + + f"Reddit: {REDDIT}" + + f"Shopping: {SHOPPING}" + + f"Wikipedia: {WIKIPEDIA}" + + f"Homepage: {HOMEPAGE}" + + f"Classifieds: {CLASSIFIEDS}" + + f"Classifieds reset token: {CLASSIFIEDS_RESET_TOKEN}" + ) + +else: + raise ValueError(f"Dataset not implemented: {DATASET}") + + +ACCOUNTS = { + "reddit": {"username": "MarvelsGrantMan136", "password": "test1234"}, + "shopping": { + "username": "emma.lopez@gmail.com", + "password": "Password.123", + }, + "classifieds": { + "username": "blake.sullivan@gmail.com", + "password": "Password.123", + }, + "shopping_site_admin": {"username": "admin", "password": "admin1234"}, + "shopping_admin": {"username": "admin", "password": "admin1234"}, + "gitlab": {"username": "byteblaze", "password": "hello1234"}, +} diff --git a/evaluation_harness/evaluators.py b/evaluation_harness/evaluators.py index 03224fd..305d73e 100644 --- a/evaluation_harness/evaluators.py +++ b/evaluation_harness/evaluators.py @@ -1,56 +1,62 @@ """base class for evaluation""" # answer string match -import importlib +import base64 +from io import BytesIO import json -import re -import time -import urllib +import os from pathlib import Path -from typing import Any, Optional, Tuple, Union +from typing import Any, Optional, TypedDict, Union, Dict from urllib.parse import urljoin -import evaluate # type: ignore[import] +import numpy.typing as npt +import numpy as np import requests from beartype import beartype from beartype.door import is_bearable from nltk.tokenize import word_tokenize # type: ignore from PIL import Image -from playwright.sync_api import CDPSession, Page - -from browser_env.actions import Action -from browser_env.utils import StateInfo +from playwright.sync_api import Page from evaluation_harness import image_utils from evaluation_harness.helper_functions import ( - PseudoPage, - get_query_text, - get_query_text_lowercase, - gitlab_get_project_memeber_role, llm_fuzzy_match, llm_ua_match, - reddit_get_latest_comment_content_by_username, - reddit_get_latest_comment_obj_by_username, - reddit_get_parent_comment_username_of_latest_comment_by_username, - reddit_get_post_url, - shopping_get_latest_order_url, - shopping_get_num_reviews, - shopping_get_order_product_name_list, - shopping_get_order_product_option, - shopping_get_order_product_quantity, - shopping_get_product_attributes, - shopping_get_product_price, - shopping_get_rating_as_percentage, - shopping_get_sku_latest_review_author, - shopping_get_sku_latest_review_rating, - shopping_get_sku_latest_review_text, + PseudoPage, ) + +class Action(TypedDict): + action_type: int + coords: npt.NDArray[np.float32] + element_role: int + element_name: str + text: list[int] + page_number: int + url: str + nth: int + element_id: str + direction: str + key_comb: str + pw_code: str + answer: str + raw_prediction: str # raw prediction from the model + + +Observation = str | npt.NDArray[np.uint8] + + +class StateInfo(TypedDict): + observation: dict[str, Observation] + info: Dict[str, Any] + + Trajectory = list[Union[Action, StateInfo]] @beartype class Evaluator(object): - def __init__(self, eval_tag: str = "") -> None: + def __init__(self, eval_tag: str = "", log_file: str = "") -> None: self.eval_tag = eval_tag + self.log_file = log_file def __call__( self, @@ -165,12 +171,16 @@ def exact_match(ref: str, pred: Union[str, int]) -> float: @staticmethod @beartype - def must_include(ref: str, pred: str) -> float: + def must_include(ref: str, pred: str, tokenize: bool = False) -> float: clean_ref = StringEvaluator.clean_answer(ref) clean_pred = StringEvaluator.clean_answer(pred) # tokenize the answer if the ref is a single word # prevent false positive (e.g, 0) - if len(word_tokenize(clean_ref)) == 1: + if ( + tokenize + and len(clean_ref) == 1 + and len(word_tokenize(clean_ref)) == 1 + ): tok_pred = word_tokenize(clean_pred) return float(clean_ref in tok_pred) else: @@ -200,6 +210,27 @@ def fuzzy_match(ref: str, pred: str, intent: str) -> float: def ua_match(ref: str, pred: str, intent: str) -> float: return llm_ua_match(pred, ref, intent) + @beartype + def cache_pred( + self, + last_action: Action, + config_file: Path | str + ) -> None: + if not self.log_file: + return + + d = { + 'trajectory': [{ + 'raw_prediction': last_action["raw_prediction"], + 'answer': last_action["answer"] + }], + 'config_file': os.path.basename(config_file), + 'page': None + } + + with open(self.log_file, "a") as f: + f.write(json.dumps(d) + "\n") + def __call__( self, trajectory: Trajectory, @@ -211,6 +242,7 @@ def __call__( last_action = self.get_last_action(trajectory) pred = self.clean_answer(last_action["answer"]) + self.cache_pred(last_action, config_file) score = 1.0 for approach, value in configs["eval"]["reference_answers"].items(): @@ -238,7 +270,11 @@ def __call__( assert isinstance(value, list) for must_value in value: value_or = must_value.split(" |OR| ") - score *= any([self.must_include(ref=v, pred=pred) for v in value_or]) + score *= any([self.must_include( + ref=v, + pred=pred, + tokenize=(len(value) == 1) + ) for v in value_or]) case "must_exclude": assert isinstance(value, list) for must_excl_value in value: @@ -277,32 +313,25 @@ def __call__( return score -@beartype -class StringSoftEvaluator(Evaluator): - """Use text generation metrics such as BLEU, ROUGE, etc. to evaluate the answer""" - - def __call__( - self, - trajectory: Trajectory, - config_file: Path | str, - page: Page | PseudoPage | None = None - ) -> float: - with open(config_file, "r") as f: - configs = json.load(f) - - last_action = self.get_last_action(trajectory) - pred = last_action["answer"] - ref = configs["eval"]["reference_answers"] - # rouge - m = evaluate.load("rouge") - rouge = m.compute(predictions=[pred], references=[ref]) - return float(rouge["rouge1"]) - - @beartype class URLExactEvaluator(Evaluator): """Check whether the URL is exactly the same as of the reference URLs""" + def cache_pred(self, url: str, config_file: Path | str) -> None: + if not self.log_file: + return + + d = { + 'trajectory': [], + 'config_file': os.path.basename(config_file), + 'page': { + 'url': url + } + } + + with open(self.log_file, "a") as f: + f.write(json.dumps(d) + "\n") + def __call__( self, trajectory: Trajectory, @@ -321,6 +350,8 @@ def clean_url(url: str) -> str: return url pred = clean_url(page.url) + self.cache_pred(url=pred, config_file=config_file) + ref_urls = configs["eval"]["reference_url"].split(" |OR| ") ref_urls = [clean_url(url) for url in ref_urls] matching_rule = configs["eval"].get("url_note", "EXACT") @@ -342,6 +373,20 @@ def clean_url(url: str) -> str: class HTMLContentExactEvaluator(Evaluator): """Check whether the contents appear in the page""" + def cache_pred(self, selected_element_cache: list[str], config_file: Path | str) -> None: + if not self.log_file: + return + d = { + 'trajectory': [], + 'config_file': os.path.basename(config_file), + 'page': { + 'selected_element_cache': selected_element_cache + } + } + + with open(self.log_file, "a") as f: + f.write(json.dumps(d) + "\n") + def __call__( self, trajectory: Trajectory, @@ -353,63 +398,75 @@ def __call__( targets = configs["eval"]["program_html"] + cache_flag = getattr(page, "selected_element_cache", None) + selected_element_cache = page.selected_element_cache if cache_flag else [] + score = 1.0 - for target in targets: - target_url: str = target["url"] # which url to check - if target_url.startswith("func"): - func = target_url.split("func:")[1] - func = func.replace("__last_url__", page.url) - target_url = eval(func) - - locator: str = target["locator"] # js element locator - - # navigate to that url - if target_url != "last": - page.goto(target_url) - time.sleep(3) # TODO [shuyanzh]: fix this hard-coded sleep - - # empty, use the full page - if not locator.strip(): - selected_element = page.content() - # use JS to select the element - elif locator.startswith("document.") or locator.startswith( - "[...document." - ): - if "prep_actions" in target: + for t_idx, target in enumerate(targets): + # get element to compare with the current target + # for cache scenario, we directly get the selected element + if cache_flag: + selected_element = selected_element_cache[t_idx] + # regular online scenario + else: + target_url: str = target["url"] # which url to check + if target_url.startswith("func"): + func = target_url.split("func:")[1] + func = func.replace("__last_url__", page.url) + target_url = eval(func) + + locator: str = target["locator"] # js element locator + # navigate to that url + if target_url != "last": + page.goto(target_url) + page.wait_for_timeout(3000) # TODO [shuyanzh]: fix this hard-coded sleep + + # empty, use the full page + if not locator.strip(): + selected_element = page.content() + # use JS to select the element + elif locator.startswith("document.") or locator.startswith( + "[...document." + ): + # some locators are hidden, operate the page to make it visible + if "prep_actions" in target: + try: + for prep_action in target["prep_actions"]: + page.evaluate(f"() => {prep_action}") + except Exception: + pass try: - for prep_action in target["prep_actions"]: - page.evaluate(f"() => {prep_action}") + selected_element = str(page.evaluate(f"() => {locator}")) + if not selected_element: + selected_element = "" except Exception: - pass - try: - selected_element = str(page.evaluate(f"() => {locator}")) - if not selected_element: + # the page is wrong, return empty selected_element = "" - except Exception: - # the page is wrong, return empty - selected_element = "" - elif locator.startswith("lambda:"): - try: - locator = locator.lstrip("lambda:") - selected_element = page.evaluate(locator) - if not selected_element: + elif locator.startswith("lambda:"): + try: + locator = locator.lstrip("lambda:") + selected_element = page.evaluate(locator) + if not selected_element: + selected_element = None + except Exception: + # the page is wrong, return empty selected_element = None - except Exception: - # the page is wrong, return empty - selected_element = None - # run program to call API - elif locator.startswith("func:"): # a helper function - func = locator.split("func:")[1] - func = func.replace("__page__", "page") - selected_element = eval(func) - else: - raise ValueError(f"Unknown locator: {locator}") + # run program to call API + elif locator.startswith("func:"): # a helper function + func = locator.split("func:")[1] + func = func.replace("__page__", "page") + selected_element = eval(func) + else: + raise ValueError(f"Unknown locator: {locator}") + + selected_element_cache.append(selected_element) # If the selected element is None, then the page is wrong if selected_element is None: score = 0.0 break + # compare if "exact_match" in target["required_contents"]: required_contents = target["required_contents"]["exact_match"] score *= StringEvaluator.exact_match( @@ -423,7 +480,9 @@ def __call__( score *= any( [ StringEvaluator.must_include( - ref=content, pred=selected_element + ref=content, + pred=selected_element, + tokenize=False ) for content in content_or ] @@ -477,6 +536,7 @@ def __call__( f"Unknown required_contents: {target['required_contents'].keys()}" ) + self.cache_pred(selected_element_cache, config_file) return score @@ -484,12 +544,43 @@ def __call__( class PageImageEvaluator(Evaluator): """Check whether the answer is correct by querying a vision model.""" - def __init__(self, captioning_fn): + def __init__(self, captioning_fn, eval_tag: str = "", log_file: str = ""): + super().__init__(eval_tag, log_file) self.captioning_fn = captioning_fn # Default to 0.8 as the threshold for similarity to account for compression, resizing, etc # This might be too generous but we bias towards minimizing false negatives. self.ssim_threshold = 0.8 + def cache_pred( + self, + image_cache: list[list[Image.Image]], + config_file: Path | str + ) -> None: + if not self.log_file: + return + + # image to base64 + image_strs = [] + + for images in image_cache: + cur_image_strs = [] + for image in images: + buffer = BytesIO() + image.save(buffer, format=image.format or "JPEG") + cur_image_strs.append(base64.b64encode(buffer.getvalue()).decode("utf-8")) + image_strs.append(cur_image_strs) + + d = { + 'trajectory': [], + 'config_file': os.path.basename(config_file), + 'page': { + 'image_str_cache': image_strs + } + } + + with open(self.log_file, "a") as f: + f.write(json.dumps(d) + "\n") + def __call__( self, trajectory: Trajectory, @@ -499,60 +590,72 @@ def __call__( with open(config_file, "r") as f: configs = json.load(f) - for query in configs["eval"]["page_image_query"]: - locator: str = query["eval_image_class"] - target_url: str = query["eval_image_url"] - if target_url.startswith("func"): - func = target_url.split("func:")[1] - func = func.replace("__last_url__", page.url) - target_url = eval(func) - - # navigate to that url - if target_url != "last": - page.goto(target_url) - time.sleep(3) # TODO(jykoh): fix this hard-coded sleep - - # empty, use the full page - if not locator.strip(): - images = page.get_by_role("img").all() - # use JS to select the element - elif locator.startswith("."): - # Get all img children under the locator - elements = page.query_selector_all(locator) - images = [] - for element in elements: - is_img = element.evaluate( - 'element => element.tagName === "IMG"' - ) - if is_img: - images.append(element) - else: - images.extend(element.query_selector_all("img")) + cache_flag = getattr(page, "image_cache", None) + image_cache = page.image_cache if cache_flag else [] + + score = 1.0 + for q_idx, query in enumerate(configs["eval"]["page_image_query"]): + # load the image from the cache + if cache_flag: + all_image_pixels = image_cache[q_idx] + # regular online scenario else: - raise ValueError(f"Unknown locator: {locator}") + locator: str = query["eval_image_class"] + target_url: str = query["eval_image_url"] + if target_url.startswith("func"): + func = target_url.split("func:")[1] + func = func.replace("__last_url__", page.url) + target_url = eval(func) + + # navigate to that url + if target_url != "last": + page.goto(target_url) + page.wait_for_timeout(3000) # TODO(jykoh): fix this hard-coded sleep + + # empty, use the full page + if not locator.strip(): + images = page.get_by_role("img").all() + # use JS to select the element + elif locator.startswith("."): + # Get all img children under the locator + elements = page.query_selector_all(locator) + images = [] + for element in elements: + is_img = element.evaluate( + 'element => element.tagName === "IMG"' + ) + if is_img: + images.append(element) + else: + images.extend(element.query_selector_all("img")) + else: + raise ValueError(f"Unknown locator: {locator}") - if images == []: - return 0.0 + if images == []: + score = 0.0 + break - all_image_pixels = [] - for image in images: - try: - # Get image from URL. - image_url = image.get_attribute("src") - if not image_url.startswith( - ("http://", "https://", "www.") - ): - image_url = urljoin(page.url, image_url) - image = Image.open( - requests.get(image_url, stream=True).raw - ) - all_image_pixels.append(image) - except Exception as e: - print("[WARNING]: ", e) + all_image_pixels = [] + for image in images: + try: + # Get image from URL. + image_url = image.get_attribute("src") + if not image_url.startswith( + ("http://", "https://", "www.") + ): + image_url = urljoin(page.url, image_url) + image = Image.open( + requests.get(image_url, stream=True).raw + ) + all_image_pixels.append(image) + except Exception as e: + print("[WARNING]: ", e) + + image_cache.append(all_image_pixels) - score = 1.0 if all_image_pixels == []: - return 0.0 + score = 0.0 + break else: # Run the VQA eval on the image elements. eval_vqas = query.get("eval_vqa", []) @@ -601,6 +704,7 @@ def __call__( break score *= float(found_exact_match) + self.cache_pred(image_cache, config_file) return score @@ -625,24 +729,26 @@ def __call__( @beartype def evaluator_router( - config_file: Path | str, captioning_fn=None + config_file: Path | str, + captioning_fn=None, + log_file: str = "" ) -> EvaluatorComb: """Router to get the evaluator class""" with open(config_file, "r") as f: configs = json.load(f) eval_types = configs["eval"]["eval_types"] - evaluators: list[Evaluator | EvaluatorPartial] = [] + evaluators: list[Evaluator] = [] for eval_type in eval_types: match eval_type: case "string_match": - evaluators.append(StringEvaluator()) + evaluators.append(StringEvaluator(log_file=log_file)) case "url_match": - evaluators.append(URLExactEvaluator()) + evaluators.append(URLExactEvaluator(log_file=log_file)) case "program_html": - evaluators.append(HTMLContentExactEvaluator()) + evaluators.append(HTMLContentExactEvaluator(log_file=log_file)) case "page_image_query": - evaluators.append(PageImageEvaluator(captioning_fn)) + evaluators.append(PageImageEvaluator(captioning_fn, log_file=log_file)) case _: raise ValueError(f"eval_type {eval_type} is not supported") diff --git a/evaluation_harness/helper_functions.py b/evaluation_harness/helper_functions.py index c934c16..9ad3b86 100644 --- a/evaluation_harness/helper_functions.py +++ b/evaluation_harness/helper_functions.py @@ -1,4 +1,6 @@ """Implements helper functions to assist evaluation cases where other evaluators are not suitable.""" +import base64 +from io import BytesIO import json from datetime import datetime, timezone from typing import Any, Union @@ -7,13 +9,10 @@ import requests from beartype import beartype from beartype.typing import Dict, List -from playwright.sync_api import CDPSession, Page - -from browser_env.env_config import ( +from playwright.sync_api import Page +from evaluation_harness.env_config import ( ACCOUNTS, - REDDIT, - SHOPPING, - WIKIPEDIA, + SHOPPING ) from llms.providers.openai_utils import ( generate_from_openai_chat_completion, @@ -21,16 +20,32 @@ class PseudoPage: - def __init__(self, original_page: Page, url: str): + def __init__(self, original_page: Page | None, url: str): self.url = url self.original_page = original_page + def from_dict(self, data: dict[str, Any]): + for key, value in data.items(): + if key == "image_str_cache": + image_cache = [] + for cur_image_str in value: + cur_image_cache = [] + for image_str in cur_image_str: + cur_image_cache.append(Image.open(BytesIO(base64.b64decode(image_str)))) + image_cache.append(cur_image_cache) + setattr(self, "image_cache", image_cache) + else: + setattr(self, key, value) + def __getattr__(self, attr: str) -> Any: + if self.original_page is None: + return getattr(self, attr) + # Delegate attribute access to the original page object - if attr not in ["url"]: - return getattr(self.original_page, attr) - else: + if attr in ["url"]: return getattr(self, attr) + else: + return getattr(self.original_page, attr) @beartype diff --git a/run.py b/run.py index 3e3d3fb..fd6d2a0 100644 --- a/run.py +++ b/run.py @@ -45,6 +45,7 @@ LOG_FOLDER = "log_files" Path(LOG_FOLDER).mkdir(parents=True, exist_ok=True) LOG_FILE_NAME = f"{LOG_FOLDER}/log_{time.strftime('%Y%m%d%H%M%S', time.localtime())}_{random.randint(0, 10000)}.log" +EVAL_CACHE_FILE = LOG_FILE_NAME.replace(".log", "_eval_cache.jsonl") logger = logging.getLogger("logger") logger.setLevel(logging.INFO) @@ -428,7 +429,9 @@ def test( # NOTE: eval_caption_image_fn is used for running eval_vqa functions. evaluator = evaluator_router( - config_file, captioning_fn=eval_caption_image_fn + config_file, + captioning_fn=eval_caption_image_fn, + log_file=EVAL_CACHE_FILE ) score = evaluator( trajectory=trajectory, diff --git a/scripts/check_error_runs.py b/scripts/check_error_runs.py index 0039b56..df0c7bb 100644 --- a/scripts/check_error_runs.py +++ b/scripts/check_error_runs.py @@ -1,18 +1,22 @@ """Some executions may failed. This script checks the recordings, print the task ids. It deletes the recordings if needed.""" + import argparse import glob +import json import os -import shutil import sys -def merge_logs(result_folder: str, args: argparse.Namespace) -> str: - if not os.path.exists(f"{result_folder}/log_files.txt"): +def merge_logs( + args: argparse.Namespace, + save_file: str = "tmp_merged_log.txt", +) -> tuple[str, dict[str, list[str]]]: + if not os.path.exists(f"{args.result_folder}/log_files.txt"): sys.exit(1) - with open(f"{result_folder}/log_files.txt", "r") as f: + with open(f"{args.result_folder}/log_files.txt", "r") as f: log_files = f.readlines() merged_results = {} @@ -27,7 +31,7 @@ def merge_logs(result_folder: str, args: argparse.Namespace) -> str: if ( cur_log and index - and os.path.exists(f"{result_folder}/render_{index}.html") + and os.path.exists(f"{args.result_folder}/render_{index}.html") and len(cur_log) >= 3 ): merged_results[index] = cur_log @@ -40,28 +44,60 @@ def merge_logs(result_folder: str, args: argparse.Namespace) -> str: if ( cur_log and index - and os.path.exists(f"{result_folder}/render_{index}.html") + and os.path.exists(f"{args.result_folder}/render_{index}.html") and len(cur_log) >= 3 ): merged_results[index] = cur_log # sort by the key - merged_results = dict( - sorted(merged_results.items(), key=lambda x: int(x[0])) - ) + merged_results = dict(sorted(merged_results.items(), key=lambda x: int(x[0]))) - merged_log_path = f"{result_folder}/tmp_merged_log.txt" + merged_log_path = f"{args.result_folder}/{save_file}" with open(merged_log_path, "w") as f: for k, v in merged_results.items(): for line in v: f.write(line) print(f"Number of examples: {len(merged_results)}") + return merged_log_path, merged_results + + +def merge_eval_cache( + args: argparse.Namespace, + save_file: str = "tmp_merged_eval_cache.jsonl" +) -> None: + if not os.path.exists(f"{args.result_folder}/log_files.txt"): + sys.exit(1) + + with open(f"{args.result_folder}/log_files.txt", "r") as f: + log_files = f.readlines() + + id_to_cache = {} + for file in log_files: + with open(file.strip().replace(".log", "_eval_cache.jsonl"), "r") as f: + for line in f: + data = json.loads(line) + id = data["config_file"].split(".")[0] + # later will overwrite the previous data + id_to_cache[id] = data + + merged_cache_path = f"{args.result_folder}/{save_file}" + # sort by the key + id_to_cache = dict(sorted(id_to_cache.items(), key=lambda x: int(x[0]))) + with open(merged_cache_path, "w") as f: + for k, v in id_to_cache.items(): + f.write(json.dumps(v) + "\n") + + +def check_unlogged( + args: argparse.Namespace, + merged_results: dict[str, list], +) -> None: unlog_examples = [] for i in range(812): if ( - os.path.exists(f"{result_folder}/render_{i}.html") + os.path.exists(f"{args.result_folder}/render_{i}.html") and str(i) not in merged_results ): unlog_examples.append(i) @@ -75,17 +111,14 @@ def merge_logs(result_folder: str, args: argparse.Namespace) -> str: for idx in unlog_examples: os.remove(f"{args.result_folder}/render_{idx}.html") - unifinished_examples = [ - i for i in range(0, 812) if str(i) not in merged_results - ] + +def check_unfinished(merged_results: dict[str, list]) -> None: + unifinished_examples = [i for i in range(0, 812) if str(i) not in merged_results] print(f"Number of unfinished examples: {len(unifinished_examples)}") print(unifinished_examples) - return merged_log_path - -def check_unhandled_errors(args: argparse.Namespace) -> int: - log_path = merge_logs(args.result_folder, args) +def check_unhandled_errors(args: argparse.Namespace, log_path: str) -> int: with open(log_path, "r") as f: logs = f.read() @@ -124,9 +157,7 @@ def check_unexpected_logout(args: argparse.Namespace) -> int: with open(render_file, "r") as f: contents = f.read() if any([s in contents for s in target_strings]): - task_id = int( - render_file.split("/")[-1].split(".")[0].split("_")[-1] - ) + task_id = int(render_file.split("/")[-1].split(".")[0].split("_")[-1]) error_examples.append(task_id) print(f"Number of unexpected logout: {len(error_examples)}") print(error_examples) @@ -149,7 +180,11 @@ def check_unexpected_logout(args: argparse.Namespace) -> int: parser.add_argument("--tolerance", type=int, default=0) args = parser.parse_args() - n1 = check_unhandled_errors(args) + log_path, merged_results = merge_logs(args) + merge_eval_cache(args) + check_unlogged(args, merged_results) + check_unfinished(merged_results) + n1 = check_unhandled_errors(args, log_path) n2 = check_unexpected_logout(args) if n1 + n2 > args.tolerance: sys.exit(1) From b964245069d54d698f2e4864a151cda31c7ee29d Mon Sep 17 00:00:00 2001 From: alexisxy Date: Thu, 20 Jun 2024 12:20:42 -0400 Subject: [PATCH 2/6] add initial draft of webarena 2.0 --- .gitignore | 5 +- config_files/wa/test_webarena_v2.raw.json | 29844 ++++++++++++++++ .../eval_evaluators/fuzzy_match_dataset.json | 17873 +++++++++ .../eval_evaluators/fuzzy_match_test.py | 420 + .../eval_evaluators/seed_data.json | 266 + evaluation_harness/evaluators.py | 370 +- evaluation_harness/helper_functions.py | 223 +- scripts/generate_test_data.py | 12 +- scripts/openai_request_parallel.py | 508 + scripts/utils.py | 49 + 10 files changed, 49423 insertions(+), 147 deletions(-) create mode 100644 config_files/wa/test_webarena_v2.raw.json create mode 100644 evaluation_harness/eval_evaluators/fuzzy_match_dataset.json create mode 100644 evaluation_harness/eval_evaluators/fuzzy_match_test.py create mode 100644 evaluation_harness/eval_evaluators/seed_data.json create mode 100644 scripts/openai_request_parallel.py create mode 100644 scripts/utils.py diff --git a/.gitignore b/.gitignore index e2e9f76..915e81b 100644 --- a/.gitignore +++ b/.gitignore @@ -144,7 +144,10 @@ config_files/vwa/test_reddit.json config_files/vwatest_shopping.json config_files/wa/test_webarena.json config_files/wa/test_webarena/* +config_files/wa/test_webarena_v2/* +config_files/wa/test_webarena_v2.json log_files/* cache/* -agents/prompts/jsons/* \ No newline at end of file +agents/prompts/jsons/* +local_* \ No newline at end of file diff --git a/config_files/wa/test_webarena_v2.raw.json b/config_files/wa/test_webarena_v2.raw.json new file mode 100644 index 0000000..13cc5a4 --- /dev/null +++ b/config_files/wa/test_webarena_v2.raw.json @@ -0,0 +1,29844 @@ +[ + { + "sites": [ + "shopping_admin" + ], + "task_id": 0, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the top-{{n}} best-selling product in {{year}}", + "instantiation_dict": { + "n": 1, + "year": 2022 + }, + "intent": "What is the top-1 best-selling product in 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Quest Lumaflex\u2122 Band" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Quest Lumaflex\u2122 Band", + "procedure_note": "Select the best seller report, config the period, from and to. Quest Lumaflex\u2122 Band has 5 order quantities." + }, + "intent_template_id": 279 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 1, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the top-{{n}} best-selling brand in {{period}}", + "instantiation_dict": { + "n": 1, + "period": "Quarter 1 2022" + }, + "intent": "What is the top-1 best-selling brand in Quarter 1 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Sprite" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Sprite", + "procedure_note": "Select the order report, config the period, from and to. The result will list all orders. There are 9 Sprite products ordered" + }, + "intent_template_id": 279 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 3, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the products ranked as the top-{{n}} best-selling in {{year}}, including any ties at these ranks?", + "instantiation_dict": { + "n": 2, + "year": 2022 + }, + "intent": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 279, + "procedure_note": "Both order report, or best-seller report" + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 4, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the products ranked as the top-{{n}} best-selling in {{period}}, including any ties at this ranks?", + "instantiation_dict": { + "n": 1, + "period": "Jan 2023" + }, + "intent": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 279 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 5, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the best-selling product category in {{period}}. My store sells top, bottom, gear and misc products.", + "instantiation_dict": { + "period": "Jan 2023" + }, + "intent": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Top" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Top", + "procedure_note": "Get all orders for January 2023. Categorize the products into top, bottom, gear and misc. Count the number of products in each category. Top has 16 products ordered." + }, + "intent_template_id": 279 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 6, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the products ranked as the top-{{n}} best-selling in {{period}}, including any ties at this ranks?", + "instantiation_dict": { + "n": 1, + "period": "2022 pride month" + }, + "intent": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 279 + }, + { + "sites": [ + "map" + ], + "task_id": 7, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the full address of all {{airport_type}} that are within a driving distance of {{radius}} to {{start}}", + "instantiation_dict": { + "airport_type": "international airports", + "start": "Carnegie Mellon University", + "radius": "50 km" + }, + "intent": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Pittsburgh International Airport People Movers, Airport Boulevard, Findlay Township, Allegheny County, Pennsylvania, 15231, United States" + }, + "intent_template_id": 79 + }, + { + "sites": [ + "map" + ], + "task_id": 8, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the full address of all {{airport_type}} that are within a driving distance of {{radius}} to {{start}}", + "instantiation_dict": { + "airport_type": "international airports", + "start": "Carnegie Mellon University", + "radius": "5 km" + }, + "intent": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no airport within 5 km of Carnegie Mellon University" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 79 + }, + { + "sites": [ + "map" + ], + "task_id": 9, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the full address of all {{airport_type}} that are within a driving distance of {{radius}} to {{start}}", + "instantiation_dict": { + "airport_type": "international airports", + "start": "Carnegie Art Museum", + "radius": "30 km" + }, + "intent": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Pittsburgh International Airport People Movers, Airport Boulevard, Findlay Township, Allegheny County, Pennsylvania, 15231, United States" + }, + "intent_template_id": 79 + }, + { + "sites": [ + "map" + ], + "task_id": 10, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the full address of all {{airport_type}} that are within a driving distance of {{radius}} to {{start}}", + "instantiation_dict": { + "airport_type": "US international airports", + "start": "Niagara Falls", + "radius": "60 km" + }, + "intent": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States Buffalo-Niagara International Airport, South Youngs Road, Town of Cheektowaga, Erie County, New York, 14221, United States" + }, + "intent_template_id": 79 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 11, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the the number of reviews that our store received so far that mention term \"{{term}}\"", + "instantiation_dict": { + "term": "disappointed" + }, + "intent": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "6" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "6" + }, + "intent_template_id": 288 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 12, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the the number of reviews that our store received so far that mention term \"{{term}}\"", + "instantiation_dict": { + "term": "satisfied" + }, + "intent": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2" + }, + "intent_template_id": 288 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 13, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the the number of reviews that our store received so far that mention term \"{{term}}\"", + "instantiation_dict": { + "term": "decent" + }, + "intent": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2" + }, + "intent_template_id": 288 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 14, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the the number of reviews that our store received so far that mention term \"{{term}}\"", + "instantiation_dict": { + "term": "not useful" + }, + "intent": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 288 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 15, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the the number of reviews that our store received so far that mention term \"{{term}}\"", + "instantiation_dict": { + "term": "best" + }, + "intent": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2" + }, + "intent_template_id": 288 + }, + { + "sites": [ + "map" + ], + "task_id": 16, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Compare the time for walking and driving route from {{start}} to {{end}}", + "instantiation_dict": { + "start": "5000 Fifth Avenue, Pittsburgh", + "end": "UPMC family health center" + }, + "intent": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "driving: 2min", + "walking: 16min" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Driving: 2min. Walking: 16min." + }, + "intent_template_id": 73 + }, + { + "sites": [ + "map" + ], + "task_id": 17, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Compare the time for walking and driving route from {{start}} to {{end}}", + "instantiation_dict": { + "start": "AMC Waterfront", + "end": "Carnegie Mellon University" + }, + "intent": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "driving: 13min", + "walking: 1h 35min" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "driving: 13min, walking: 1h 35min." + }, + "intent_template_id": 73 + }, + { + "sites": [ + "map" + ], + "task_id": 18, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Compare the time for walking and driving route from {{start}} to {{end}}", + "instantiation_dict": { + "start": "AMC Waterfront", + "end": "Univ of Pittsburgh" + }, + "intent": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "driving: 15min", + "walking: 1h 47min" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "driving: 15min, walking: 1h 47min." + }, + "intent_template_id": 73 + }, + { + "sites": [ + "map" + ], + "task_id": 19, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Compare the time for walking and driving route from {{start}} to {{end}}", + "instantiation_dict": { + "start": "Carnegie Science Center", + "end": "Carnegie Mellon University" + }, + "intent": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "driving: 12min", + "walking: 1h 44min." + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "driving: 12min, walking: 1h 44min." + }, + "intent_template_id": 73 + }, + { + "sites": [ + "map" + ], + "task_id": 20, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Compare the difference in time for walking and driving route from {{start}} to {{end}}", + "instantiation_dict": { + "start": "Randyland", + "end": "Carnegie Mellon University" + }, + "intent": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "driving: 13min", + "walking: 1h 45min" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "driving: 13min, walking: 1h 45min." + }, + "intent_template_id": 73 + }, + { + "sites": [ + "shopping" + ], + "task_id": 21, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/6s-wireless-headphones-over-ear-noise-canceling-hi-fi-bass-foldable-stereo-wireless-kid-headsets-earbuds-with-built-in-mic-micro-sd-tf-fm-for-iphone-samsung-ipad-pc-black-gold.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "ear cups being small" + }, + "intent": "List out reviewers, if exist, who mention about ear cups being small", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Joseph Brzezinski, Catso, Dibbins, Anglebert Dinkherhump, Michelle Davis" + }, + "intent_template_id": 222 + }, + { + "sites": [ + "shopping" + ], + "task_id": 22, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/fujifilm-finepix-z200fd-10mp-digital-camera-with-5x-optical-dual-image-stabilized-zoom-black.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "under water photo" + }, + "intent": "List out reviewers, if exist, who mention about under water photo", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no review that mention about under water photo for the given product" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 222 + }, + { + "sites": [ + "shopping" + ], + "task_id": 23, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/3-pack-samsung-galaxy-s6-screen-protector-nearpow-tempered-glass-screen-protector-with-9h-hardness-crystal-clear-easy-bubble-free-installation-scratch-resist.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "good fingerprint resistant" + }, + "intent": "List out reviewers, if exist, who mention about good fingerprint resistant", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Rachel", + "T. Gannon" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Rachel, T. Gannon, " + }, + "intent_template_id": 222 + }, + { + "sites": [ + "shopping" + ], + "task_id": 24, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/haflinger-men-s-wool-felt-open-back-slippers-beige-550-peat-us-7.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "price being unfair" + }, + "intent": "List out reviewers, if exist, who mention about price being unfair", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no reivew that mention about price being unfair for the given product" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 222 + }, + { + "sites": [ + "shopping" + ], + "task_id": 25, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/epson-workforce-wf-3620-wifi-direct-all-in-one-color-inkjet-printer-copier-scanner-amazon-dash-replenishment-ready.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "average print quality" + }, + "intent": "List out reviewers, if exist, who mention about average print quality", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Goldfish", + "Roxanne Brandon Coffey" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "GoldfishGoldfish, Roxanne Brandon Coffey" + }, + "intent_template_id": 222 + }, + { + "sites": [ + "shopping" + ], + "task_id": 26, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/epson-workforce-wf-3620-wifi-direct-all-in-one-color-inkjet-printer-copier-scanner-amazon-dash-replenishment-ready.html", + "geolocation": null, + "intent_template": "List out reviewers, if exist, who mention about {{description}}", + "instantiation_dict": { + "description": "complain of the customer service" + }, + "intent": "List out reviewers, if exist, who mention about complain of the customer service", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Bob in Vegas", + "RemyR" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Bob in Vegas, RemyRRemyR" + }, + "intent_template_id": 222 + }, + { + "sites": [ + "reddit" + ], + "task_id": 27, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the {{forum}} forum.", + "instantiation_dict": { + "forum": "Showerthoughts" + }, + "intent": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 33 + }, + { + "sites": [ + "reddit" + ], + "task_id": 28, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the {{forum}} forum.", + "instantiation_dict": { + "forum": "Worcester" + }, + "intent": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 33 + }, + { + "sites": [ + "reddit" + ], + "task_id": 29, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the {{forum}} forum.", + "instantiation_dict": { + "forum": "DIY" + }, + "intent": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 33 + }, + { + "sites": [ + "reddit" + ], + "task_id": 30, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the {{forum}} forum.", + "instantiation_dict": { + "forum": "space" + }, + "intent": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 33 + }, + { + "sites": [ + "reddit" + ], + "task_id": 31, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the {{forum}} forum.", + "instantiation_dict": { + "forum": "photoshopbattles" + }, + "intent": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 33 + }, + { + "sites": [ + "map" + ], + "task_id": 32, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I will arrive {{place}} soon. Provide the name of a {{target1}} in the vicinity, if available. Then, tell me the {{information}} to {{target2}} from the hotel.", + "instantiation_dict": { + "place": "Pittsburgh Airport", + "information": "the walking distance", + "target1": "Hilton hotel", + "target2": "the nearest supermarket own by a local company" + }, + "intent": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the distance is 2.0km?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "DoubleTree by Hilton Hotel Pittsburgh Airport Distance: 2.0km" + }, + "intent_template_id": 78 + }, + { + "sites": [ + "map" + ], + "task_id": 33, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I will arrive {{place}} soon. Provide the name of a {{target1}} in the vicinity, if available. Then, tell me the {{information}} to {{target2}} from the hotel.", + "instantiation_dict": { + "place": "Pittsburgh Airport", + "target1": "Hilton hotel", + "information": "the shortest walking distance", + "target2": "a supermarket" + }, + "intent": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the distance is 1.4km?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "DoubleTree by Hilton Hotel Pittsburgh Airport Distance: 1.4km" + }, + "intent_template_id": 78 + }, + { + "sites": [ + "map" + ], + "task_id": 34, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I will arrive {{place}} soon. Provide the name of a {{target1}} in the vicinity, if available. Then, tell me the {{information}} to {{target2}} from the hotel.", + "instantiation_dict": { + "place": "Pittsburgh Airport", + "target1": "Hyatt hotel", + "information": "the shortest walking time", + "target2": "a supermarket" + }, + "intent": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the walking time is 3h 30min?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Hyatt Regency Pittsburgh International Airport\n3:30" + }, + "intent_template_id": 78 + }, + { + "sites": [ + "map" + ], + "task_id": 35, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I will arrive {{place}} soon. Provide the name of a {{target1}} in the vicinity, if available. Then, tell me the {{information}} to {{target2}} from the hotel.", + "instantiation_dict": { + "place": "Pittsburgh Airport", + "target1": "Hyatt hotel", + "information": "the minimal driving time", + "target2": "a supermarket" + }, + "intent": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the driving time is 15min?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Hyatt Regency Pittsburgh International Airport Time: 15min" + }, + "intent_template_id": 78 + }, + { + "sites": [ + "map" + ], + "task_id": 36, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Check if the {{place}} in pittsburgh can be reached in one hour by car from {{location}}", + "instantiation_dict": { + "place": "social security administration", + "location": "Carnegie Mellon University" + }, + "intent": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Yes" + }, + "intent_template_id": 77 + }, + { + "sites": [ + "map" + ], + "task_id": 37, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Check if the {{place}} in pittsburgh can be reached in one hour by car from {{location}}", + "instantiation_dict": { + "place": "police station", + "location": "gates building at CMU" + }, + "intent": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Yes" + }, + "intent_template_id": 77 + }, + { + "sites": [ + "map" + ], + "task_id": 38, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Check if the {{place}} in pittsburgh can be reached in one hour by car from {{location}}", + "instantiation_dict": { + "place": "duquesne university", + "location": "pittsburgh airport" + }, + "intent": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Yes" + }, + "intent_template_id": 77 + }, + { + "sites": [ + "map" + ], + "task_id": 39, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Check if the {{place}} in pittsburgh can be reached in one hour by car from {{location}}", + "instantiation_dict": { + "place": "walmart", + "location": "5600 fifth avenue" + }, + "intent": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Yes" + }, + "intent_template_id": 77 + }, + { + "sites": [ + "map" + ], + "task_id": 40, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Check if the {{place}} in pittsburgh can be reached in one hour by car from {{location}}", + "instantiation_dict": { + "place": "amc theatre", + "location": "hobart street" + }, + "intent": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Yes" + }, + "intent_template_id": 77 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 41, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "List the top {{n}} most searched terms in my store", + "instantiation_dict": { + "n": "1" + }, + "intent": "List the top 1 most searched terms in my store", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "hollister" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "hollister" + }, + "intent_template_id": 285 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 42, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "List the top {{n}} most searched terms in my store", + "instantiation_dict": { + "n": "2" + }, + "intent": "List the top 2 most searched terms in my store", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "hollister", + "Joust Bag" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "hollister, Joust Bag" + }, + "intent_template_id": 285 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 43, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "List the top {{n}} most searched terms in my store", + "instantiation_dict": { + "n": "3" + }, + "intent": "List the top 3 most searched terms in my store", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "hollister", + "Joust Bag", + "nike" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "hollister, Joust Bag, nike" + }, + "intent_template_id": 285 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 44, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Check out my todos", + "instantiation_dict": {}, + "intent": "Check out my todos", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/dashboard/todos", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 303 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 45, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "Check out the oldest closed issues", + "instantiation_dict": {}, + "intent": "Check out the oldest closed issues", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/?sort=created_asc&state=closed", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 300 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 46, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Check out the most recent open issues", + "instantiation_dict": {}, + "intent": "Check out the most recent open issues", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/issues/?sort=created_date&state=opened", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 300 + }, + { + "sites": [ + "shopping" + ], + "task_id": 47, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Today is 6/12/2023. Tell me how many fulfilled orders I have {{period}}, and the total amount of money I spent.", + "instantiation_dict": { + "period": "over the past month" + }, + "intent": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the number of orders is 0?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the total spend is $0?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0 order, $0 total spend" + }, + "intent_template_id": 197 + }, + { + "sites": [ + "shopping" + ], + "task_id": 48, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Today is 6/12/2023. Tell me how many fulfilled orders I have {{period}}, and the total amount of money I spent.", + "instantiation_dict": { + "period": "over the past three days" + }, + "intent": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the number of orders is 0?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the total spend is $0?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0 order, $0 total spend" + }, + "intent_template_id": 197 + }, + { + "sites": [ + "shopping" + ], + "task_id": 49, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Today is 6/12/2023. Tell me how many fulfilled orders I have {{period}}, and the total amount of money I spent.", + "instantiation_dict": { + "period": "over the past four month" + }, + "intent": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the number of orders is 3?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the total spend is $845.49?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "3 orders, $845.49 total spend" + }, + "intent_template_id": 197 + }, + { + "sites": [ + "shopping" + ], + "task_id": 50, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Today is 6/12/2023. Tell me how many fulfilled orders I have {{period}}, and the total amount of money I spent.", + "instantiation_dict": { + "period": "over the past year" + }, + "intent": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the number of orders is 24?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the total spend is $6560.69?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "24 orders, $6560.69 total spend" + }, + "intent_template_id": 197 + }, + { + "sites": [ + "shopping" + ], + "task_id": 51, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Today is 6/12/2023. Tell me how many fulfilled orders I have {{period}}, and the total amount of money I spent.", + "instantiation_dict": { + "period": "over the past six month" + }, + "intent": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage clearly state the number of orders is 12?", + "answer": "yes" + }, + { + "question": "Does the passage clearly state the total spend is $1603.69?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "12 orders, $1603.69 total spend" + }, + "intent_template_id": 197 + }, + { + "sites": [ + "map" + ], + "task_id": 52, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How long does it take to walk from {{start}} to {{end}}?", + "instantiation_dict": { + "start": "Carnegie Mellon University", + "end": "starbucks on Craig Street" + }, + "intent": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "7 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "7 min" + }, + "intent_template_id": 68 + }, + { + "sites": [ + "map" + ], + "task_id": 53, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How long does it take to walk from {{start}} to {{end}}?", + "instantiation_dict": { + "start": "Univ of Pittsburgh", + "end": "starbucks on Craig Street" + }, + "intent": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "18 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "18 min" + }, + "intent_template_id": 68 + }, + { + "sites": [ + "map" + ], + "task_id": 54, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How long does it take to walk from {{start}} to {{end}}?", + "instantiation_dict": { + "start": "Carnegie Mellon University", + "end": "Univ of Pittsburgh" + }, + "intent": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "25 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "25 min" + }, + "intent_template_id": 68 + }, + { + "sites": [ + "map" + ], + "task_id": 55, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How long does it take to walk from {{start}} to {{end}}?", + "instantiation_dict": { + "start": "the starbuck near CMU", + "end": "Chatham university" + }, + "intent": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "30 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "30 min" + }, + "intent_template_id": 68 + }, + { + "sites": [ + "map" + ], + "task_id": 56, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How long does it take to walk from {{start}} to {{end}}?", + "instantiation_dict": { + "start": "Carnegie Museum of Art", + "end": "a library at CMU" + }, + "intent": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "11 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "11 min" + }, + "intent_template_id": 68 + }, + { + "sites": [ + "map" + ], + "task_id": 57, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the closest {{place1}}(s) to {{place2}}", + "instantiation_dict": { + "place1": "restaurant", + "place2": "university center at Carnegie Mellon University" + }, + "intent": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "El Gallo de Oro, Back Bar Grill, Grano, Beefsteak, Nourish, Schatz Dining Room, Au Bon Pain" + }, + "intent_template_id": 69 + }, + { + "sites": [ + "map" + ], + "task_id": 58, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the closest {{place1}}(s) to {{place2}}", + "instantiation_dict": { + "place1": "cafe", + "place2": "CMU Hunt library" + }, + "intent": "Tell me the closest cafe(s) to CMU Hunt library", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "De Fer Coffee & Tea" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "De Fer Coffee & Tea" + }, + "intent_template_id": 69 + }, + { + "sites": [ + "map" + ], + "task_id": 59, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the closest {{place1}}(s) to {{place2}}", + "instantiation_dict": { + "place1": "restaurant", + "place2": "CMU Hunt library" + }, + "intent": "Tell me the closest restaurant(s) to CMU Hunt library", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The exchange" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "The exchange" + }, + "intent_template_id": 69 + }, + { + "sites": [ + "map" + ], + "task_id": 60, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the closest {{place1}}(s) to {{place2}}", + "instantiation_dict": { + "place1": "restaurant", + "place2": "CMU Posner Hall" + }, + "intent": "Tell me the closest restaurant(s) to CMU Posner Hall", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The exchange" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "The exchange" + }, + "intent_template_id": 69 + }, + { + "sites": [ + "map" + ], + "task_id": 61, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the closest {{place1}}(s) to {{place2}}", + "instantiation_dict": { + "place1": "restaurant", + "place2": "CMU Sorrells Library" + }, + "intent": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "La Prima Espresso" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "La Prima Espresso" + }, + "intent_template_id": 69 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 62, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Which customer has completed the {{quantifier}} number of orders in the entire history?", + "instantiation_dict": { + "quantifier": "most" + }, + "intent": "Which customer has completed the most number of orders in the entire history?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Jane Smith" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Jane Smith" + }, + "intent_template_id": 276 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 63, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Which customer(s) has completed the {{quantifier}} number of orders in the entire history?", + "instantiation_dict": { + "quantifier": "second most" + }, + "intent": "Which customer(s) has completed the second most number of orders in the entire history?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Adam Garcia, Michael Nguyen, Sarah Miller" + }, + "intent_template_id": 276 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 64, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Which customer has placed {{number}} orders in the entire history?", + "instantiation_dict": { + "number": "2" + }, + "intent": "Which customer has placed 2 orders in the entire history?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lisa Kim, Lisa Green, Julia Williams, Brian Smith, Alexander Thomas" + }, + "intent_template_id": 276 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 65, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Which customer has completed the {{quantifier}} number of orders in the entire history?", + "instantiation_dict": { + "quantifier": "fifth most" + }, + "intent": "Which customer has completed the fifth most number of orders in the entire history?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Jane Doe", + "Matt Baker" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Jane Doe and Matt Baker, both placed 12 orders" + }, + "intent_template_id": 276 + }, + { + "sites": [ + "reddit" + ], + "task_id": 66, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Among the top {{number}} post in \"{{subreddit}}\" forum, {{description}}", + "instantiation_dict": { + "number": 10, + "subreddit": "books", + "description": "show me the post URLs that recommand a single book" + }, + "intent": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "__REDDIT__/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol, __REDDIT__/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + }, + "intent_template_id": 17 + }, + { + "sites": [ + "reddit" + ], + "task_id": 67, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Among the top {{number}} post in \"{{subreddit}}\" forum, {{description}}", + "instantiation_dict": { + "number": 10, + "subreddit": "books", + "description": "show me the book names from posts that recommand a single book" + }, + "intent": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "A Christmas Carol", + "The Hobbit" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "A Christmas Carol, The Hobbit" + }, + "intent_template_id": 17 + }, + { + "sites": [ + "reddit" + ], + "task_id": 68, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Among the top {{number}} post in \"{{subreddit}}\" forum, {{description}}", + "instantiation_dict": { + "number": 10, + "subreddit": "books", + "description": "show me the author name and the book name from posts that recommand a single book" + }, + "intent": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "answer": "yes" + }, + { + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "answer": "yes" + }, + { + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "answer": "yes" + }, + { + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "answer": "yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "A Christmas Carol by Levar Burton: , The Hobbit by J. R. R. Tolkien" + }, + "intent_template_id": 17 + }, + { + "sites": [ + "reddit" + ], + "task_id": 69, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Among the top {{number}} post in \"{{subreddit}}\" forum, {{description}}", + "instantiation_dict": { + "number": 10, + "subreddit": "books", + "description": "is there any post talks about supporting local book stores? If so, tell me the organizations involved" + }, + "intent": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "bookshop.org" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "bookshop.org" + }, + "intent_template_id": 17 + }, + { + "sites": [ + "map" + ], + "task_id": 70, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the zip code of {{place}}?", + "instantiation_dict": { + "place": "Carnegie Mellon University" + }, + "intent": "What is the zip code of Carnegie Mellon University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "15213" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "15213" + }, + "intent_template_id": 70 + }, + { + "sites": [ + "map" + ], + "task_id": 71, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the zip code of {{place}}?", + "instantiation_dict": { + "place": "Chatham University" + }, + "intent": "What is the zip code of Chatham University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "15232" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "15232" + }, + "intent_template_id": 70 + }, + { + "sites": [ + "map" + ], + "task_id": 72, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the zip code of {{place}}?", + "instantiation_dict": { + "place": "Yale University" + }, + "intent": "What is the zip code of Yale University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "06516" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "06516" + }, + "intent_template_id": 70 + }, + { + "sites": [ + "map" + ], + "task_id": 73, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the zip code of {{place}}?", + "instantiation_dict": { + "place": "Columbia University" + }, + "intent": "What is the zip code of Columbia University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "10027" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "10027" + }, + "intent_template_id": 70 + }, + { + "sites": [ + "map" + ], + "task_id": 74, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Given the following locations, {{place_list}}, what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "instantiation_dict": { + "place_list": [ + "Carnegie Mellon University", + "apple store shadyside", + "starbucks on craig street" + ] + }, + "intent": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Carnegie Mellon University, starbucks on forbes ave, apple store shadyside" + }, + "intent_template_id": 65 + }, + { + "sites": [ + "map" + ], + "task_id": 75, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Given the following locations, {{place_list}}, what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "instantiation_dict": { + "place_list": [ + "Massachusetts Institute of Technology", + "Harvard University", + "Boston Logan International Airport" + ] + }, + "intent": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport" + }, + "intent_template_id": 65 + }, + { + "sites": [ + "map" + ], + "task_id": 76, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Given the following locations, {{place_list}}, what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "instantiation_dict": { + "place_list": [ + "Princeton University", + "Yale University", + "Harvard University" + ] + }, + "intent": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The order is Princeton University, Yale University, Harvard University" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Princeton University, Yale University, Harvard University" + }, + "intent_template_id": 65 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 77, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the total count of {{status}} reviews amongst all the reviews?", + "instantiation_dict": { + "status": "Pending" + }, + "intent": "What is the total count of Pending reviews amongst all the reviews?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "5" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "5" + }, + "intent_template_id": 277 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 78, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the total count of {{status}} reviews amongst all the reviews?", + "instantiation_dict": { + "status": "Approved" + }, + "intent": "What is the total count of Approved reviews amongst all the reviews?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "346" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "346" + }, + "intent_template_id": 277 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 79, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What is the total count of {{status}} reviews amongst all the reviews?", + "instantiation_dict": { + "status": "Not Approved" + }, + "intent": "What is the total count of Not Approved reviews amongst all the reviews?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 277 + }, + { + "sites": [ + "map" + ], + "task_id": 80, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the duration required to first walk from {{place_A}} to {{place_B}}, and then drive to {{place_C}}?", + "instantiation_dict": { + "place_A": "Carnegie Mellon University", + "place_B": "Starbucks on Craig Street", + "place_C": "Pittsburgh International Airport" + }, + "intent": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "38 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "38 min" + }, + "intent_template_id": 72 + }, + { + "sites": [ + "map" + ], + "task_id": 81, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the duration required to first walk from {{place_A}} to {{place_B}}, and then drive to {{place_C}}?", + "instantiation_dict": { + "place_A": "Univ of Pittsburgh", + "place_B": "starbucks on Craig Street", + "place_C": "Pittsburgh International Airport" + }, + "intent": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "49 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "49 min" + }, + "intent_template_id": 72 + }, + { + "sites": [ + "map" + ], + "task_id": 82, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the duration required to first walk from {{place_A}} to {{place_B}}, and then drive to {{place_C}}?", + "instantiation_dict": { + "place_A": "Massachusetts Institute of Technology", + "place_B": "Harvard University", + "place_C": "Boston Logan International Airport" + }, + "intent": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "63 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "63 min" + }, + "intent_template_id": 72 + }, + { + "sites": [ + "map" + ], + "task_id": 83, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the duration required to first walk from {{place_A}} to {{place_B}}, and then drive to {{place_C}}?", + "instantiation_dict": { + "place_A": "Carnegie Mellon University", + "place_B": "apple store shadyside", + "place_C": "starbucks on craig street" + }, + "intent": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "22 min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "22 min" + }, + "intent_template_id": 72 + }, + { + "sites": [ + "map" + ], + "task_id": 84, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "From my stay at {{hotel}}, what's the estimated driving time to reach {{place}}?", + "instantiation_dict": { + "hotel": "DoubleTree by Hilton New York Downtown", + "place": "Keens Steakhouse" + }, + "intent": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "14 minutes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "14 minutes" + }, + "intent_template_id": 64 + }, + { + "sites": [ + "map" + ], + "task_id": 85, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "From my stay at {{hotel}}, what's the estimated driving time to reach {{place}}?", + "instantiation_dict": { + "hotel": "La Quinta Inn near the airport", + "place": "Carnegie Mellon University" + }, + "intent": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "30 minutes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "30 minutes" + }, + "intent_template_id": 64 + }, + { + "sites": [ + "map" + ], + "task_id": 86, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "From my stay at {{hotel}}, what's the estimated driving time to reach {{place}}?", + "instantiation_dict": { + "hotel": "La Quinta Inn near the airport", + "place": "Upitt" + }, + "intent": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "29 minutes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "29 minutes" + }, + "intent_template_id": 64 + }, + { + "sites": [ + "map" + ], + "task_id": 87, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "From my stay at {{hotel}}, what's the estimated driving time to reach {{place}}?", + "instantiation_dict": { + "hotel": "red roof inn", + "place": "Pittsburgh science museum" + }, + "intent": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "20 minutes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "20 minutes" + }, + "intent_template_id": 64 + }, + { + "sites": [ + "map" + ], + "task_id": 88, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "From my stay at {{hotel}}, what's the estimated driving time to reach {{place}}?", + "instantiation_dict": { + "hotel": "Homewood Suites Southpointe", + "place": "PPG Paints Arena" + }, + "intent": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "34 minutes" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "34 minutes" + }, + "intent_template_id": 64 + }, + { + "sites": [ + "map" + ], + "task_id": 89, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Which US states border {{state}}?", + "instantiation_dict": { + "state": "Connecticut" + }, + "intent": "Which US states border Connecticut?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Rhode Island", + "Massachusetts", + "New York" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Rhode Island, Massachusetts, New York" + }, + "intent_template_id": 67 + }, + { + "sites": [ + "map" + ], + "task_id": 90, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Which US states border {{state}}?", + "instantiation_dict": { + "state": "Pennsylvania" + }, + "intent": "Which US states border Pennsylvania?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Ohio, Maryland, New York, New Jersey, Delaware, West Virginia" + }, + "intent_template_id": 67 + }, + { + "sites": [ + "map" + ], + "task_id": 91, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Which US states border {{state}}?", + "instantiation_dict": { + "state": "Massachusetts" + }, + "intent": "Which US states border Massachusetts?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Rhode Island, Connecticut, New York, New Hampshire, Vermont" + }, + "intent_template_id": 67 + }, + { + "sites": [ + "map" + ], + "task_id": 92, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Which US states border {{state}}?", + "instantiation_dict": { + "state": "Vermont" + }, + "intent": "Which US states border Vermont?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "New York", + "New Hampshire", + "Massachusetts" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "New York, New Hampshire, Massachusetts" + }, + "intent_template_id": 67 + }, + { + "sites": [ + "map" + ], + "task_id": 93, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Which US states border {{state}}?", + "instantiation_dict": { + "state": "New Hampshire" + }, + "intent": "Which US states border New Hampshire?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Massachusetts", + "Vermont", + "Maine" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Massachusetts, Vermont, Maine" + }, + "intent_template_id": 67 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 94, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the grand total of invoice {{id}}.", + "instantiation_dict": { + "id": "000000001" + }, + "intent": "Tell me the grand total of invoice 000000001.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "36.39" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$36.39" + }, + "intent_template_id": 274 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 95, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the grand total of invoice {{id}}.", + "instantiation_dict": { + "id": "000000002" + }, + "intent": "Tell me the grand total of invoice 000000002.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "39.64" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$39.64" + }, + "intent_template_id": 274 + }, + { + "sites": [ + "shopping" + ], + "task_id": 96, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the status of my latest order and when will it arrive", + "instantiation_dict": {}, + "intent": "Tell me the status of my latest order and when will it arrive", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "The last order was canceled. It will never arrive." + }, + "reference_url": "", + "program_html": [], + "reference_answer_raw_annotation": "The last order was canceled. It will never arrive.", + "string_note": "" + }, + "intent_template_id": 193 + }, + { + "sites": [ + "map", + "wikipedia" + ], + "task_id": 97, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "instantiation_dict": {}, + "intent": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "914km" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "914 km" + }, + "intent_template_id": 120 + }, + { + "sites": [ + "map" + ], + "task_id": 98, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{places}} to {{start}}, and what is the walking distance to it?", + "instantiation_dict": { + "places": "tea cafe", + "start": "University of Pittsburgh" + }, + "intent": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?" + }, + { + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Fuku Tea, 3716, Forbes Avenue, Oakland, Central Oakland, Pittsburgh, Allegheny County, Pennsylvania, 15213, United States\n653m" + }, + "intent_template_id": 66 + }, + { + "sites": [ + "map" + ], + "task_id": 99, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{places}} to {{start}}, and what is the walking distance to it?", + "instantiation_dict": { + "places": "Five Guys", + "start": "5700 Penn Ave" + }, + "intent": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Five Guys, 117, South Bouquet Street, Oakland, North Oakland, Pittsburgh, Allegheny County, Pennsylvania, 15213, United States\n4.0km" + }, + "intent_template_id": 66 + }, + { + "sites": [ + "map" + ], + "task_id": 100, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{places}} to {{start}}, and what is the walking distance to it?", + "instantiation_dict": { + "places": "Starbucks", + "start": "Carnegie Mellon" + }, + "intent": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Starbucks, 417, South Craig Street, Bellefield, Pittsburgh, Allegheny County, Pennsylvania, 15213, United States\n557m" + }, + "intent_template_id": 66 + }, + { + "sites": [ + "map" + ], + "task_id": 101, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{places}} to {{start}}, and what is the walking distance to it?", + "instantiation_dict": { + "places": "In-N-Out", + "start": "Upitts" + }, + "intent": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no In-N-Out near University of Pittsburgh" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 66 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 102, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Display the list of issues in the {{repo}} repository that have labels related to {{label}}", + "instantiation_dict": { + "label": "help needed", + "repo": "a11yproject/a11yproject.com" + }, + "intent": "Display the list of issues in the a11yproject/a11yproject.com repository that have labels related to help needed", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/a11y-syntax-highlighting/-/issues/?label_name%5B%5D=help%20wanted", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 349 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 103, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Display the list of issues in the {{repo}} repository that have labels related to {{label}}", + "instantiation_dict": { + "label": "questions", + "repo": "kkroening/ffmpeg-python" + }, + "intent": "Display the list of issues in the kkroening/ffmpeg-python repository that have labels related to questions", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/kkroening/ffmpeg-python/-/issues/?label_name%5B%5D=question", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 349 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 104, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Display the list of issues in the {{repo}} repository that have labels related to {{label}}", + "instantiation_dict": { + "label": "flaky-test", + "repo": "keycloak/keycloak" + }, + "intent": "Display the list of issues in the keycloak/keycloak repository that have labels related to flaky-test", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/keycloak/keycloak/-/issues/?label_name%5B%5D=flaky-test", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 349 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 105, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Display the list of issues in the {{repo}} repository that have labels related to {{label}}", + "instantiation_dict": { + "label": "OpenAPI Generator CLI", + "repo": "OpenAPITools/openapi-generator" + }, + "intent": "Display the list of issues in the OpenAPITools/openapi-generator repository that have labels related to OpenAPI Generator CLI", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/OpenAPITools/openapi-generator/-/issues/?label_name%5B%5D=OpenAPI%20Generator%20CLI", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 349 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 106, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Display the list of issues in the {{repo}} repository that have labels related to {{label}}", + "instantiation_dict": { + "label": "BUG", + "repo": "umano/AndroidSlidingUpPanel" + }, + "intent": "Display the list of issues in the umano/AndroidSlidingUpPanel repository that have labels related to BUG", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/umano/AndroidSlidingUpPanel/-/issues/?label_name%5B%5D=BUG", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 349 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 107, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Presents the monthly count of successful orders {{period}} in MOUNT:COUNT format", + "instantiation_dict": { + "period": "from May to December 2022" + }, + "intent": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "May: 8 orders June: 13 orders July: 9 orders August: 8 orders Sepetember: 10 orders Octorbor: 4 orders November: 5 orders December: 10 orders " + }, + "intent_template_id": 270 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 108, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Presents the monthly count of successful orders {{period}} in MOUNT:COUNT format", + "instantiation_dict": { + "period": "01/2023-05/2023" + }, + "intent": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "January: 12 orders Febulary: 7 orders March: 5 orders Apirl: 9 orders May: 5 orders" + }, + "intent_template_id": 270 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 109, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Presents the monthly count of successful orders {{period}} in MOUNT:COUNT format", + "instantiation_dict": { + "period": "from Jan to December 2022" + }, + "intent": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "January: 11 orders Feburary: 16 orders March: 14 orders April: 7 orders May: 8 orders June: 13 orders July: 9 orders August: 8 orders Sepetember: 10 orders Octorbor: 4 orders November: 5 orders December: 10 orders " + }, + "intent_template_id": 270 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 110, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Presents the monthly count of successful orders {{period}} in MOUNT:COUNT format", + "instantiation_dict": { + "period": "from Jan to Nov 2022" + }, + "intent": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "January: 11 orders Feburary: 16 orders March: 14 orders April: 7 orders May: 8 orders June: 13 orders July: 9 orders August: 8 orders Sepetember: 10 orders Octorbor: 4 orders November: 5 orders " + }, + "intent_template_id": 270 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 111, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Presents the monthly count of successful orders {{period}} in MOUNT:COUNT format", + "instantiation_dict": { + "period": "from Feb to Nov 2022" + }, + "intent": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Feburary: 16 orders March: 14 orders April: 7 orders May: 8 orders June: 13 orders July: 9 orders August: 8 orders Sepetember: 10 orders Octorbor: 4 orders November: 5 orders " + }, + "intent_template_id": 270 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 112, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the customers who have expressed dissatisfaction with {{product}}?", + "instantiation_dict": { + "product": "Circe fleece" + }, + "intent": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Hannah Lim" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Hannah Lim" + }, + "intent_template_id": 245 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 113, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the customers who have expressed dissatisfaction with {{product}}?", + "instantiation_dict": { + "product": "Olivia zip jacket" + }, + "intent": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Emma Lopez", + "Seam Miller" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Emma Lopez, Seam Miller" + }, + "intent_template_id": 245 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 114, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the customers who have expressed dissatisfaction with {{product}}?", + "instantiation_dict": { + "product": "Antonia racer tank" + }, + "intent": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Shaunte", + "Merrie" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Shaunte, Merrie" + }, + "intent_template_id": 245 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 115, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the name of the customers who have expressed dissatisfaction with {{product}}", + "instantiation_dict": { + "product": "Chloe tank" + }, + "intent": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no negative review for Chloe tank" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "" + }, + "intent_template_id": 245 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 116, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the name of the customers who have expressed dissatisfaction with {{product}}?", + "instantiation_dict": { + "product": "tanks products" + }, + "intent": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, Teofila, Valorie" + }, + "intent_template_id": 245 + }, + { + "sites": [ + "shopping" + ], + "task_id": 117, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the date when I made my first purchase on this site?", + "instantiation_dict": {}, + "intent": "What is the date when I made my first purchase on this site?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "3/2/22" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "3/2/22" + }, + "intent_template_id": 161 + }, + { + "sites": [ + "shopping" + ], + "task_id": 118, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have jaw bruxism problem, show me something that could alleviate the problem.", + "instantiation_dict": {}, + "intent": "I have jaw bruxism problem, show me something that could alleviate the problem.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "", + "required_contents": { + "must_include": [ + "jaw bruxism", + "mouth guard" + ] + } + } + ] + }, + "intent_template_id": 151 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 119, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the reasons why customers like {{product}}", + "instantiation_dict": { + "product": "Antonia Racer Tank" + }, + "intent": "Tell me the reasons why customers like Antonia Racer Tank", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Its color and style is good" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Its color and style is good" + }, + "intent_template_id": 250 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 120, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the reasons why customers like {{product}}", + "instantiation_dict": { + "product": "Ana Running Short" + }, + "intent": "Tell me the reasons why customers like Ana Running Short", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "It is comfortable" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "It is comfortable" + }, + "intent_template_id": 250 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 121, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the reasons why customers like {{product}}", + "instantiation_dict": { + "product": "Circe hooded fleece" + }, + "intent": "Tell me the reasons why customers like Circe hooded fleece", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Warm and comfortable. True to size." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Warm and comfortable. True to size." + }, + "intent_template_id": 250 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 122, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the reasons why customers like {{product}}", + "instantiation_dict": { + "product": "Olivia zip jacket" + }, + "intent": "Tell me the reasons why customers like Olivia zip jacket", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Lightweight, comfortable and stylish. Good design and details." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lightweight, comfortable, and stylish. Good design and details." + }, + "intent_template_id": 250 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 123, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the reasons why customers like {{product}}", + "instantiation_dict": { + "product": "Circe's products" + }, + "intent": "Tell me the reasons why customers like Circe's products", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Warm and comfortable. True to size." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Warm and comfortable. True to size." + }, + "intent_template_id": 250 + }, + { + "sites": [ + "shopping" + ], + "task_id": 124, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range of {{product}} in the One Stop Market?", + "instantiation_dict": { + "product": "wireless earphone" + }, + "intent": "What is the price range of wireless earphone in the One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$0.14 - $745.00" + }, + "intent_template_id": 159 + }, + { + "sites": [ + "shopping" + ], + "task_id": 125, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range of {{product}} in the One Stop Market?", + "instantiation_dict": { + "product": "teeth grinding mouth guard" + }, + "intent": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$1.46 - $85" + }, + "intent_template_id": 159 + }, + { + "sites": [ + "shopping" + ], + "task_id": 126, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range of {{product}} in the One Stop Market?", + "instantiation_dict": { + "product": "Canon photo printer" + }, + "intent": "What is the price range of Canon photo printer in the One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$2.56 - $649.99" + }, + "intent_template_id": 159 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 127, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Which brands appear most often in the top-3 search terms?", + "instantiation_dict": {}, + "intent": "Which brands appear most often in the top-3 search terms?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Hollister", + "Joust", + "nike" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Hollister, Joust, nike" + }, + "intent_template_id": 1001 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 128, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What's the total number of items sold in the most recent {{k}} orders?", + "instantiation_dict": { + "k": "2" + }, + "intent": "What's the total number of items sold in the most recent 2 orders?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "9" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "9" + }, + "intent_template_id": 1002 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 129, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What's the total number of items sold in the most recent {{k}} orders?", + "instantiation_dict": { + "k": "4" + }, + "intent": "What's the total number of items sold in the most recent 4 orders?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "16" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "16" + }, + "intent_template_id": 1002 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 130, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What's the total number of items sold in the most recent {{k}} orders?", + "instantiation_dict": { + "k": "5" + }, + "intent": "What's the total number of items sold in the most recent 5 orders?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "18" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "18" + }, + "intent_template_id": 1002 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 131, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What's the total number of items sold in the most recent {{k}} orders?", + "instantiation_dict": { + "k": "7" + }, + "intent": "What's the total number of items sold in the most recent 7 orders?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "25" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "25" + }, + "intent_template_id": 1002 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 132, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "How many commits did {{user}} make to {{repo}} on {{date}}?", + "instantiation_dict": { + "user": "kilian", + "repo": "a11yproject", + "date": "3/5/2023" + }, + "intent": "How many commits did kilian make to a11yproject on 3/5/2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 322 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 133, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "How many commits did {{user}} make to {{repo}} on {{date}}?", + "instantiation_dict": { + "user": "Eric", + "repo": "a11yproject", + "date": "3/2" + }, + "intent": "How many commits did Eric make to a11yproject on 3/2?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2" + }, + "intent_template_id": 322 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 134, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "How many commits did {{user}} make to {{repo}} on {{date}}?", + "instantiation_dict": { + "user": "kilian", + "repo": "a11yproject", + "date": "3/1/2023" + }, + "intent": "How many commits did kilian make to a11yproject on 3/1/2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 322 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 135, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "How many commits did {{user}} make to {{repo}} on {{date}}?", + "instantiation_dict": { + "user": "Eric and Kilian", + "repo": "a11yproject", + "date": "1/3/2023" + }, + "intent": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 322 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 136, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "How many commits did {{user}} make to {{repo}} on {{date}}?", + "instantiation_dict": { + "user": "Steven Woodson", + "repo": "a11y-webring.club", + "date": "2/6/2023" + }, + "intent": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "5" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "5" + }, + "intent_template_id": 322 + }, + { + "sites": [ + "map" + ], + "task_id": 137, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the estimated driving time between {{city1}} and {{city2}}?", + "instantiation_dict": { + "city1": "the city where the Liberty Bell is located", + "city2": "the home city of Pirates" + }, + "intent": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "5h 47min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "5h 47min" + }, + "intent_template_id": 51 + }, + { + "sites": [ + "map" + ], + "task_id": 138, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the estimated driving time between {{city1}} and {{city2}}?", + "instantiation_dict": { + "city1": "the big apple", + "city2": "the city with the most authentic Philly cheesesteaks" + }, + "intent": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1h 58min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1h 58min" + }, + "intent_template_id": 51 + }, + { + "sites": [ + "map" + ], + "task_id": 139, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the estimated driving time between {{city1}} and {{city2}}?", + "instantiation_dict": { + "city1": "the hometown of Joe Biden", + "city2": "Bridgeport" + }, + "intent": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "3h 20min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "3h 20min" + }, + "intent_template_id": 51 + }, + { + "sites": [ + "map" + ], + "task_id": 140, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the estimated driving time between {{city1}} and {{city2}}?", + "instantiation_dict": { + "city1": "the city of Niagara Falls", + "city2": "the city of Yale University" + }, + "intent": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "8h 33min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "8h 33min" + }, + "intent_template_id": 51 + }, + { + "sites": [ + "shopping" + ], + "task_id": 141, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spent on {{category}} shopping during {{time}}", + "instantiation_dict": { + "category": "food-related", + "time": "March 2023" + }, + "intent": "How much I spent on food-related shopping during March 2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "47.41" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$47.41" + }, + "intent_template_id": 162 + }, + { + "sites": [ + "shopping" + ], + "task_id": 142, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spent on {{category}} shopping during {{time}}", + "instantiation_dict": { + "category": "hair care and hair style", + "time": "Jan 2023" + }, + "intent": "How much I spent on hair care and hair style shopping during Jan 2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "95.23" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$95.23" + }, + "intent_template_id": 162 + }, + { + "sites": [ + "shopping" + ], + "task_id": 143, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spent on {{category}} shopping during {{time}}", + "instantiation_dict": { + "category": "home decoration", + "time": "1/29/2023" + }, + "intent": "How much I spent on home decoration shopping during 1/29/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "265.69" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$265.69" + }, + "intent_template_id": 162 + }, + { + "sites": [ + "shopping" + ], + "task_id": 144, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spent on {{category}} shopping during {{time}}", + "instantiation_dict": { + "category": "food", + "time": "from mid Jan to the end Jan 2023" + }, + "intent": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 162 + }, + { + "sites": [ + "shopping" + ], + "task_id": 145, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spent on {{category}} shopping during {{time}}", + "instantiation_dict": { + "category": "cooking and food", + "time": "March 2022" + }, + "intent": "How much I spent on cooking and food shopping during March 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$52.35" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$52.35" + }, + "intent_template_id": 162 + }, + { + "sites": [ + "shopping" + ], + "task_id": 146, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the {{option}} configuration of the {{product}} I bought {{time}}", + "instantiation_dict": { + "option": "size", + "product": "picture frame", + "time": "Sep 2022" + }, + "intent": "What is the size configuration of the picture frame I bought Sep 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "16x24" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "16x24" + }, + "intent_template_id": 155 + }, + { + "sites": [ + "shopping" + ], + "task_id": 147, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the {{option}} configuration of the {{product}} I bought {{time}}", + "instantiation_dict": { + "option": "size", + "product": "picture frame", + "time": "2022" + }, + "intent": "What is the size configuration of the picture frame I bought 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "16x24" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "16x24" + }, + "intent_template_id": 155 + }, + { + "sites": [ + "shopping" + ], + "task_id": 148, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the {{option}} configuration of the {{product}} I bought {{time}}", + "instantiation_dict": { + "option": "color", + "product": "picture frame", + "time": "Sep 2022" + }, + "intent": "What is the color configuration of the picture frame I bought Sep 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Mist" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Mist" + }, + "intent_template_id": 155 + }, + { + "sites": [ + "shopping" + ], + "task_id": 149, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the {{option}} configuration of the {{product}} I bought {{time}}", + "instantiation_dict": { + "option": "color", + "product": "artifical plants", + "time": "Feb 2023" + }, + "intent": "What is the color configuration of the artifical plants I bought Feb 2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Green-vines" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Green-vines" + }, + "intent_template_id": 155 + }, + { + "sites": [ + "shopping" + ], + "task_id": 150, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the {{option}} configuration of the {{product}} I bought {{time}}", + "instantiation_dict": { + "option": "price", + "product": "fake tree", + "time": "Jan 2023" + }, + "intent": "What is the price configuration of the fake tree I bought Jan 2023", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$260.69" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$260.69" + }, + "intent_template_id": 155 + }, + { + "sites": [ + "map" + ], + "task_id": 151, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the minimum travel time by car from {{location1}} to {{location2}}?", + "instantiation_dict": { + "location1": "CMU", + "location2": "University of Pittsburgh" + }, + "intent": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "4min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "4min" + }, + "intent_template_id": 36 + }, + { + "sites": [ + "map" + ], + "task_id": 152, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the minimum travel time by car from {{location1}} to {{location2}}?", + "instantiation_dict": { + "location1": "Schenley park", + "location2": "Upitt" + }, + "intent": "What is the minimum travel time by car from Schenley park to Upitt?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "4min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "4min" + }, + "intent_template_id": 36 + }, + { + "sites": [ + "map" + ], + "task_id": 153, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the minimum travel time by car from {{location1}} to {{location2}}?", + "instantiation_dict": { + "location1": "REI", + "location2": "CMU" + }, + "intent": "What is the minimum travel time by car from REI to CMU?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "7min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "7min" + }, + "intent_template_id": 36 + }, + { + "sites": [ + "map" + ], + "task_id": 154, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the minimum travel time by car from {{location1}} to {{location2}}?", + "instantiation_dict": { + "location1": "CMU gates building", + "location2": "Schenley park" + }, + "intent": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "4min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "4min" + }, + "intent_template_id": 36 + }, + { + "sites": [ + "map" + ], + "task_id": 155, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the minimum travel time by car from {{location1}} to {{location2}}?", + "instantiation_dict": { + "location1": "Animal Rescue League of Pittsburgh", + "location2": "Schenley park" + }, + "intent": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "9min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "9min" + }, + "intent_template_id": 36 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 156, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Checkout merge requests assigned to me", + "instantiation_dict": {}, + "intent": "Checkout merge requests assigned to me", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/dashboard/merge_requests?assignee_username=byteblaze", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 290 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 157, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show all customers", + "instantiation_dict": {}, + "intent": "Show all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/customer/index/", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 255 + }, + { + "sites": [ + "shopping" + ], + "task_id": 158, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all {{num}} cards", + "instantiation_dict": { + "num": 11 + }, + "intent": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 11 cards", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/heiying-game-card-case-for-nintendo-switch-switch-oled-game-card-or-micro-sd-memory-cards-portable-switch-game-memory-card-storage-with-24-game-card-slots-and-24-micro-sd-card-slots-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 171 + }, + { + "sites": [ + "shopping" + ], + "task_id": 159, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all {{num}} cards", + "instantiation_dict": { + "num": 31 + }, + "intent": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 31 cards", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/game-card-holder-storage-case-for-nintendo-switch-games-or-ps-vita-game-case-or-sd-memory-cards-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 171 + }, + { + "sites": [ + "shopping" + ], + "task_id": 160, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all {{num}} cards", + "instantiation_dict": { + "num": 6 + }, + "intent": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 6 cards", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/heiying-game-card-case-for-nintendo-switch-switch-oled-game-card-or-micro-sd-memory-cards-portable-switch-game-memory-card-storage-with-24-game-card-slots-and-24-micro-sd-card-slots-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 171 + }, + { + "sites": [ + "shopping" + ], + "task_id": 161, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all {{num}} cards", + "instantiation_dict": { + "num": 23 + }, + "intent": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 23 cards", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/heiying-game-card-case-for-nintendo-switch-switch-oled-game-card-or-micro-sd-memory-cards-portable-switch-game-memory-card-storage-with-24-game-card-slots-and-24-micro-sd-card-slots-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 171 + }, + { + "sites": [ + "shopping" + ], + "task_id": 162, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all {{num}} cards", + "instantiation_dict": { + "num": 40 + }, + "intent": "I have a lot of Nintendo Switch game cards now, help me find the best storage option to fit all 40 cards", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/game-card-holder-storage-case-for-nintendo-switch-games-or-ps-vita-game-case-or-sd-memory-cards-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 171 + }, + { + "sites": [ + "shopping" + ], + "task_id": 163, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/ostent-16gb-memory-card-stick-storage-for-sony-ps-vita-psv1000-2000-pch-z081-z161-z321-z641.html", + "geolocation": null, + "intent_template": "What are the main criticisms of this product? Please extract the relevant sentences.", + "instantiation_dict": {}, + "intent": "What are the main criticisms of this product? Please extract the relevant sentences.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "I ordered the 16gb but I only got 14 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging It's used and the previous owners data has not been erased. The product is a legit sony hardware that have been owned by someone else before The media could not be loaded. I could not format the card so I wasn\u2019t able to use it for my VITA" + }, + "intent_template_id": 136 + }, + { + "sites": [ + "shopping" + ], + "task_id": 164, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/mineralogie-all-natural-lip-gloss-ruby-rose.html", + "geolocation": null, + "intent_template": "What are the main criticisms of this product? Please extract the relevant sentences.", + "instantiation_dict": {}, + "intent": "What are the main criticisms of this product? Please extract the relevant sentences.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Dry", + "Uneven color" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "DryUneven color" + }, + "intent_template_id": 136 + }, + { + "sites": [ + "shopping" + ], + "task_id": 165, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/sandgrens-swedish-handmade-wooden-clog-sandal-copenhagen.html", + "geolocation": null, + "intent_template": "What are the main criticisms of this product? Please extract the relevant sentences.", + "instantiation_dict": {}, + "intent": "What are the main criticisms of this product? Please extract the relevant sentences.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "The 39 was too small. I am afraid the 40 will be too big. I was very sad when the shoe rubbed up against my baby toe. I had to return them because I knew in time it would tear up my feet. The problem is that the strap is made of some really stiff leather and is painful to my heel. The front is also uncomfortably tight. The Dansko's were similar (not as bad) and loosened up over time." + }, + "intent_template_id": 136 + }, + { + "sites": [ + "shopping" + ], + "task_id": 166, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/sensodyne-repair-protect-whitening-toothpaste-with-fluoride-3-4-oz-pack-of-3.html", + "geolocation": null, + "intent_template": "What are the main criticisms of this product? Please extract the relevant sentences.", + "instantiation_dict": {}, + "intent": "What are the main criticisms of this product? Please extract the relevant sentences.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "there is no existing criticism for the given product. All reviews are positive." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 136 + }, + { + "sites": [ + "shopping" + ], + "task_id": 167, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/photosmart-plus-b209-clr-inkjetfb-p-s-c-usb-wrls-1.html", + "geolocation": null, + "intent_template": "What are the main criticisms of this product? Please extract the relevant sentences.", + "instantiation_dict": {}, + "intent": "What are the main criticisms of this product? Please extract the relevant sentences.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "The wireless connection works on a whim (about 40% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had, but now I understand why. This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. Scanner is as slow as my first scanner I ever owned in the mid-90's. For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + "intent_template_id": 136 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 168, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me the full names of the repositories where I made contributions and they got {{description}} stars?", + "instantiation_dict": { + "description": "more than 100" + }, + "intent": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "Among the repositories where I made contributions, there is no repository that has more than 100 stars." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "No repo found" + }, + "intent_template_id": 289 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 169, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me the full names of the repositories where I made contributions and they got {{description}} stars?", + "instantiation_dict": { + "description": "the most" + }, + "intent": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "a11yproject.com", + "design" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "a11yproject.com, Primer/design" + }, + "intent_template_id": 289 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 170, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me the full names of the repositories where I made contributions and they got {{description}} stars?", + "instantiation_dict": { + "description": "the least" + }, + "intent": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, remove-board-movement-events-from-the-github-issue-timeline" + }, + "intent_template_id": 289 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 171, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me the full names of the repositories where I made contributions and they got {{description}} stars?", + "instantiation_dict": { + "description": "less than 5" + }, + "intent": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, remove-board-movement-events-from-the-github-issue-timeline" + }, + "intent_template_id": 289 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 172, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me the full names of the repositories where I made contributions and they got {{description}} stars?", + "instantiation_dict": { + "description": "no" + }, + "intent": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, remove-board-movement-events-from-the-github-issue-timeline" + }, + "intent_template_id": 289 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 173, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest updated issue that has keyword \"{{keyword}}\" in its title to check if it is closed", + "instantiation_dict": { + "keyword": "better" + }, + "intent": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No, it is open" + }, + "reference_url": "__GITLAB__/byteblaze/empathy-prompts/-/issues/8", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "", + "url_note": "GOLD in PRED" + }, + "intent_template_id": 310 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 174, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest updated issue that has keyword \"{{keyword}}\" in its title to check if it is closed", + "instantiation_dict": { + "keyword": "feature" + }, + "intent": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No, it is open" + }, + "reference_url": "__GITLAB__/byteblaze/a11y-webring.club/-/issues/71", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "" + }, + "intent_template_id": 310 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 175, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest updated issue that has keyword \"{{keyword}}\" in its title to check if it is closed", + "instantiation_dict": { + "keyword": "dependency" + }, + "intent": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No, it is open" + }, + "reference_url": "__GITLAB__/byteblaze/empathy-prompts/-/issues/18", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "" + }, + "intent_template_id": 310 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 176, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest updated issue that has keyword \"{{keyword}}\" in its title to check if it is closed", + "instantiation_dict": { + "keyword": "theme editor" + }, + "intent": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No, it is open" + }, + "reference_url": "__GITLAB__/byteblaze/a11y-syntax-highlighting/-/issues/1", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "" + }, + "intent_template_id": 310 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 177, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest updated issue that has keyword \"{{keyword}}\" in its title to check if it is closed", + "instantiation_dict": { + "keyword": "homepage content" + }, + "intent": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes, it is closed" + }, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/719", + "program_html": [], + "reference_answer_raw_annotation": "closed", + "string_note": "" + }, + "intent_template_id": 310 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 178, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest created issue that has {{keyword}} in its title to check if it is closed", + "instantiation_dict": { + "keyword": "better" + }, + "intent": "Open my latest created issue that has better in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/566", + "program_html": [], + "reference_answer_raw_annotation": "Closed", + "string_note": "" + }, + "intent_template_id": 500 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 179, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest created issue that has {{keyword}} in its title to check if it is closed", + "instantiation_dict": { + "keyword": "feature" + }, + "intent": "Open my latest created issue that has feature in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/1517", + "program_html": [], + "reference_answer_raw_annotation": "Closed", + "string_note": "" + }, + "intent_template_id": 500 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 180, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest created issue that has {{keyword}} in its title to check if it is closed", + "instantiation_dict": { + "keyword": "dependency" + }, + "intent": "Open my latest created issue that has dependency in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No" + }, + "reference_url": "__GITLAB__/byteblaze/empathy-prompts/-/issues/18", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "" + }, + "intent_template_id": 500 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 181, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest created issue that has {{keyword}} in its title to check if it is closed", + "instantiation_dict": { + "keyword": "theme editor" + }, + "intent": "Open my latest created issue that has theme editor in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "No" + }, + "reference_url": "__GITLAB__/byteblaze/a11y-syntax-highlighting/-/issues/1", + "program_html": [], + "reference_answer_raw_annotation": "Not closed", + "string_note": "" + }, + "intent_template_id": 500 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 182, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open my latest created issue that has {{keyword}} in its title to check if it is closed", + "instantiation_dict": { + "keyword": "homepage content" + }, + "intent": "Open my latest created issue that has homepage content in its title to check if it is closed", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match", + "url_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Yes" + }, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/719", + "program_html": [], + "reference_answer_raw_annotation": "closed", + "string_note": "" + }, + "intent_template_id": 500 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 183, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Give me the {{Attribute}} of the products that have {{N}} units left", + "instantiation_dict": { + "Attribute": "SKU", + "N": "10" + }, + "intent": "Give me the SKU of the products that have 10 units left", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no product that has 10 quantities left." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "There is no product that has 10 quantities left." + }, + "intent_template_id": 368 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 184, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Give me the {{Attribute}} of the products that have {{N}} units left", + "instantiation_dict": { + "Attribute": "name", + "N": "0" + }, + "intent": "Give me the name of the products that have 0 units left", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Sinbad Fitness Tank" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Sinbad Fitness Tank" + }, + "intent_template_id": 368 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 185, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Give me the {{Attribute}} of the products that have {{N}} units left", + "instantiation_dict": { + "Attribute": "brand", + "N": "3" + }, + "intent": "Give me the brand of the products that have 3 units left", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Eos", + "Minerva" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Eos, Minerva" + }, + "intent_template_id": 368 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 186, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Give me the {{Attribute}} of the products that have {{N}} units left", + "instantiation_dict": { + "Attribute": "product names and the sizes", + "N": "2-3" + }, + "intent": "Give me the product names and the sizes of the products that have 2-3 units left", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Eos V-Neck Hoodie: S Minera Luma Tech V-Tee: XS" + }, + "intent_template_id": 368 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 187, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Give me the {{Attribute}} of the products that have {{N}} units left", + "instantiation_dict": { + "Attribute": "SKU", + "N": "1-3" + }, + "intent": "Give me the SKU of the products that have 1-3 units left", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "WH11-S-Blue, WS08-XS-Blue" + }, + "intent_template_id": 368 + }, + { + "sites": [ + "shopping" + ], + "task_id": 188, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the total cost of my latest {{status}} order?", + "instantiation_dict": { + "status": "cancelled" + }, + "intent": "Tell me the total cost of my latest cancelled order?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$365.42" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$365.42" + }, + "intent_template_id": 214 + }, + { + "sites": [ + "shopping" + ], + "task_id": 189, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the total cost of my latest {{status}} order?", + "instantiation_dict": { + "status": "pending" + }, + "intent": "Tell me the total cost of my latest pending order?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$754.99" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$754.99" + }, + "intent_template_id": 214 + }, + { + "sites": [ + "shopping" + ], + "task_id": 190, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the total cost of my latest {{status}} order?", + "instantiation_dict": { + "status": "complete" + }, + "intent": "Tell me the total cost of my latest complete order?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$65.32" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$65.32" + }, + "intent_template_id": 214 + }, + { + "sites": [ + "shopping" + ], + "task_id": 191, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the total cost of my latest {{status}} order?", + "instantiation_dict": { + "status": "processing" + }, + "intent": "Tell me the total cost of my latest processing order?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no order of \"processing\" status" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "There is no order of \"processing\" status" + }, + "intent_template_id": 214 + }, + { + "sites": [ + "shopping" + ], + "task_id": 192, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me the total cost of my latest {{status}} order?", + "instantiation_dict": { + "status": "non-cancelled" + }, + "intent": "Tell me the total cost of my latest non-cancelled order?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$754.99" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$754.99" + }, + "intent_template_id": 214 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 193, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the total payment amount of the last {{N}} {{status}} orders", + "instantiation_dict": { + "status": "completed", + "N": "2" + }, + "intent": "Get the total payment amount of the last 2 completed orders", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$182.4" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$182.4" + }, + "intent_template_id": 367 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 194, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the total payment amount of the last {{N}} {{status}} orders", + "instantiation_dict": { + "status": "completed", + "N": "5" + }, + "intent": "Get the total payment amount of the last 5 completed orders", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$555.2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$555.2" + }, + "intent_template_id": 367 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 195, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the total payment amount of the last {{N}} {{status}} orders", + "instantiation_dict": { + "status": "pending", + "N": "5" + }, + "intent": "Get the total payment amount of the last 5 pending orders", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$885.4" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$885.4" + }, + "intent_template_id": 367 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 196, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Compare the payment difference of the last {{N}} {{status_1}} orders and {{status_2}} orders", + "instantiation_dict": { + "status_1": "cancelled", + "status_2": "completed", + "N": "4" + }, + "intent": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "194.25" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "194.25" + }, + "intent_template_id": 367 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 197, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the total payment amount of the last {{N}} {{status}} orders", + "instantiation_dict": { + "status": "non-cancelled", + "N": "5" + }, + "intent": "Get the total payment amount of the last 5 non-cancelled orders", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$778.2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "annotation_note": "219.4+210+166.4+93.4+89", + "reference_answer_raw_annotation": "$778.2" + }, + "intent_template_id": 367 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 198, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "customer name", + "status": "most recent cancelled" + }, + "intent": "Get the customer name of the most recent cancelled order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Lily Potter" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lily Potter" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 199, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "order ID", + "status": "newest pending" + }, + "intent": "Get the order ID of the newest pending order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "299" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "299" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 200, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "billing name", + "status": "oldest complete" + }, + "intent": "Get the billing name of the oldest complete order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "John Lee" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "John Lee" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 201, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "customer name", + "status": "earliest fraud suspect" + }, + "intent": "Get the customer name of the earliest fraud suspect order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no order of \"fraud suspect\" status" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 202, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "date", + "status": "most recent cancelled" + }, + "intent": "Get the date of the most recent cancelled order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "May 23 2023" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "May 23, 2023" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 203, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "purchase date and order id", + "status": "most recent pending" + }, + "intent": "Get the purchase date and order id of the most recent pending order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the order id is 000000299?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "000000299, May 31, 2023, 2:55:09 AM" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 204, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Get the {{attribute}} of the {{status}} order", + "instantiation_dict": { + "attribute": "product name and discounted price (low to high)", + "status": "most recent completed" + }, + "intent": "Get the product name and discounted price (low to high) of the most recent completed order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Rapha Sports Short: $35 Thorpe Track Pant: $54.4 Mach Street Sweatshirt: $62" + }, + "intent_template_id": 366 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 205, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make on {{date}}?", + "instantiation_dict": { + "user": "kilian", + "date": "3/5/2023" + }, + "intent": "How many commits did kilian make on 3/5/2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 320 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 206, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make on {{date}}?", + "instantiation_dict": { + "user": "Eric", + "date": "3/2" + }, + "intent": "How many commits did Eric make on 3/2?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2" + }, + "intent_template_id": 320 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 207, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make on {{date}} in total?", + "instantiation_dict": { + "user": "Eric and Kilian", + "date": "1/3/2023" + }, + "intent": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 320 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 208, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Find the customer name and email with phone number {{PhoneNum}}", + "instantiation_dict": { + "PhoneNum": "+1 2058812302" + }, + "intent": "Find the customer name and email with phone number +1 2058812302", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the customer's name is John Smith?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "John Smith, john.smith.xyz@gmail.com" + }, + "intent_template_id": 364 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 209, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Find the customer name and email with phone number {{PhoneNum}}", + "instantiation_dict": { + "PhoneNum": "2137418080" + }, + "intent": "Find the customer name and email with phone number 2137418080", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Jennifer White, jennifer.white@yahoo.com" + }, + "intent_template_id": 364 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 210, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Find the customer name and email with phone number {{PhoneNum}}", + "instantiation_dict": { + "PhoneNum": "2065555555" + }, + "intent": "Find the customer name and email with phone number 2065555555", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Adam Garcia, gamingpro456@gmail.com" + }, + "intent_template_id": 364 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 211, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Find the customer name and email with phone number {{PhoneNum}}", + "instantiation_dict": { + "PhoneNum": "8015551212" + }, + "intent": "Find the customer name and email with phone number 8015551212", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Sean Miller, sean.miller@gmail.com" + }, + "intent_template_id": 364 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 212, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Find the customer name and email with phone number {{PhoneNum}}", + "instantiation_dict": { + "PhoneNum": "555-229-3326" + }, + "intent": "Find the customer name and email with phone number 555-229-3326", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Veronica Costello, roni_cost@example.com" + }, + "intent_template_id": 364 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 213, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the key aspects that the customers don't like about {{product}}", + "instantiation_dict": { + "product": "Antonia Racer Tank" + }, + "intent": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Not suitable for high-impact workouts" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Not suitable for high-impact workouts" + }, + "intent_template_id": 249 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 214, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the key aspects that the customers don't like about {{product}}", + "instantiation_dict": { + "product": "Zing Jump Rope" + }, + "intent": "What are the key aspects that the customers don't like about Zing Jump Rope", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "It is hard to find the right size. Won't last long" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "It is hard to find the right size. Won't last long" + }, + "intent_template_id": 249 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 215, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the key aspects that the customers don't like about {{product}}", + "instantiation_dict": { + "product": "Circe ice fleece" + }, + "intent": "What are the key aspects that the customers don't like about Circe ice fleece", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Material quality, fit, insufficient warmth, color" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Material quality, fit, insufficient warmth, color" + }, + "intent_template_id": 249 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 216, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the key aspects that the customers don't like about {{product}}", + "instantiation_dict": { + "product": "Electra Bra Top" + }, + "intent": "What are the key aspects that the customers don't like about Electra Bra Top", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Not true to size" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Not true to size" + }, + "intent_template_id": 249 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 217, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "What are the key aspects that the customers don't like about {{product}}", + "instantiation_dict": { + "product": "Pursuit Tone Band" + }, + "intent": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Insufficient resistance for their workouts." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Insufficient resistance for their workouts." + }, + "intent_template_id": 249 + }, + { + "sites": [ + "map" + ], + "task_id": 218, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the walking distance from nearby hotels to {{location}} that take at most {{n}} minutes?", + "instantiation_dict": { + "location": "CMU, Pittsburgh", + "n": "5" + }, + "intent": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no hotel near CMU that is within 5 minutes walking distance" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 41 + }, + { + "sites": [ + "map" + ], + "task_id": 219, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the walking distance from nearby hotels to {{location}} that take at most {{n}} minutes?", + "instantiation_dict": { + "location": "Pittsburgh airport", + "n": "3" + }, + "intent": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 41 + }, + { + "sites": [ + "map" + ], + "task_id": 220, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the walking distance from nearby hotels to {{location}} that take at most {{n}} minutes?", + "instantiation_dict": { + "location": "Gardner Steel Conference Center,", + "n": 5 + }, + "intent": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Wyndham Pittsburgh University Cente: 375 m\nThe Oaklander Hotel: 338 m" + }, + "intent_template_id": 41 + }, + { + "sites": [ + "map" + ], + "task_id": 221, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am at CMU Pittsburgh, how long it takes to the nearest {{location}} with different transportation methods?", + "instantiation_dict": { + "location": "USPS postal office" + }, + "intent": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Walk: 1 minute to walk and\nDrive: less than 1 minute\nBike: less than 1 minute" + }, + "intent_template_id": 35 + }, + { + "sites": [ + "map" + ], + "task_id": 222, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am at CMU Pittsburgh, how long it takes to drive to the nearest {{location}}", + "instantiation_dict": { + "location": "cold stone ice cream" + }, + "intent": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "3min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "3min" + }, + "intent_template_id": 35 + }, + { + "sites": [ + "map" + ], + "task_id": 223, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am at CMU Pittsburgh, how long it takes to drive to the nearest {{location}}", + "instantiation_dict": { + "location": "Mcdonald's" + }, + "intent": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "4min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "4min" + }, + "intent_template_id": 35 + }, + { + "sites": [ + "map" + ], + "task_id": 224, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am at CMU Pittsburgh, how long it takes to drive to the nearest {{location}}", + "instantiation_dict": { + "location": "wendys" + }, + "intent": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "3min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "3min" + }, + "intent_template_id": 35 + }, + { + "sites": [ + "shopping" + ], + "task_id": 225, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What do customers say about {{product_type}} from {{manufature}}", + "instantiation_dict": { + "product_type": "brush", + "manufature": "sephora" + }, + "intent": "What do customers say about brush from sephora", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The sephora brushes don't have reviews" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 135 + }, + { + "sites": [ + "shopping" + ], + "task_id": 226, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range for products from {{brand}}?", + "instantiation_dict": { + "brand": "Amazon basic" + }, + "intent": "What is the price range for products from Amazon basic?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price is $5.49?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price is $375.19?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$5.49 - $375.19" + }, + "intent_template_id": 370 + }, + { + "sites": [ + "shopping" + ], + "task_id": 227, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range for products from {{brand}}?", + "instantiation_dict": { + "brand": "EYZUTAK" + }, + "intent": "What is the price range for products from EYZUTAK?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$9.99" + }, + "intent_template_id": 370 + }, + { + "sites": [ + "shopping" + ], + "task_id": 228, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range for products from {{brand}}?", + "instantiation_dict": { + "brand": "sephora" + }, + "intent": "What is the price range for products from sephora?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price is $18.18?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price is $94.99?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$18.18 - $94.99" + }, + "intent_template_id": 370 + }, + { + "sites": [ + "shopping" + ], + "task_id": 229, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range for products from {{brand}}?", + "instantiation_dict": { + "brand": "ugreen" + }, + "intent": "What is the price range for products from ugreen?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price is $6.99?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price is $38.99?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$6.99 - $38.99" + }, + "intent_template_id": 370 + }, + { + "sites": [ + "shopping" + ], + "task_id": 230, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the price range for products from {{brand}}?", + "instantiation_dict": { + "brand": "Perricone MD" + }, + "intent": "What is the price range for products from Perricone MD?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the lowest price is $35?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the highest price is $149?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$35 - $149" + }, + "intent_template_id": 370 + }, + { + "sites": [ + "shopping" + ], + "task_id": 231, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Get the order number of my most recent {{status}} order ", + "instantiation_dict": { + "status": "cancelled" + }, + "intent": "Get the order number of my most recent cancelled order ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "170" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "000000170" + }, + "intent_template_id": 213 + }, + { + "sites": [ + "shopping" + ], + "task_id": 232, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Get the order number of my most recent {{status}} order ", + "instantiation_dict": { + "status": "pending" + }, + "intent": "Get the order number of my most recent pending order ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "189" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "000000189" + }, + "intent_template_id": 213 + }, + { + "sites": [ + "shopping" + ], + "task_id": 233, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Get the order number of my most recent {{status}} order ", + "instantiation_dict": { + "status": "complete" + }, + "intent": "Get the order number of my most recent complete order ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "180" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "000000180" + }, + "intent_template_id": 213 + }, + { + "sites": [ + "shopping" + ], + "task_id": 234, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Get the order number of my most recent {{status}} order ", + "instantiation_dict": { + "status": "on hold" + }, + "intent": "Get the order number of my most recent on hold order ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "there is no on hold order" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 213 + }, + { + "sites": [ + "shopping" + ], + "task_id": 235, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Get the order number of my most recent {{status}} order ", + "instantiation_dict": { + "status": "under delivery" + }, + "intent": "Get the order number of my most recent under delivery order ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no under delivery order" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 213 + }, + { + "sites": [ + "map" + ], + "task_id": 236, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{location}} from {{location2}} {{condition}}", + "instantiation_dict": { + "location": "pharmacy", + "location2": "Carnegie Mellon", + "condition": "I can walk within 20mins" + }, + "intent": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Schiller's Pharmacy, 811, South Aiken Avenue, Shadyside, Pittsburgh, Allegheny County, 15232, United States" + }, + "intent_template_id": 39 + }, + { + "sites": [ + "map" + ], + "task_id": 237, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Where is the nearest {{location}} from {{location2}} {{condition}}", + "instantiation_dict": { + "location": "gas station", + "location2": "CMU", + "condition": "" + }, + "intent": "Where is the nearest gas station from CMU ", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the gas station is Sunoco?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Sunoco, North Craig Street, North Oakland, Pittsburgh, Allegheny County, 15213, United States" + }, + "intent_template_id": 39 + }, + { + "sites": [ + "shopping" + ], + "task_id": 238, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I am doing a market survey for one stop market, show me the product page of the most expensive product from {{product_category}} category", + "instantiation_dict": { + "product_category": "PS4 accessories" + }, + "intent": "I am doing a market survey for one stop market, show me the product page of the most expensive product from PS4 accessories category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/astro-gaming-a50-wireless-headset-base-station-gen-4-compatible-with-ps5-ps4-pc-mac-black-silver.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 138 + }, + { + "sites": [ + "shopping" + ], + "task_id": 239, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I am doing a market survey for one stop market, show me the product page of the most expensive product from {{product_category}} category", + "instantiation_dict": { + "product_category": "nutrition bars and drinks" + }, + "intent": "I am doing a market survey for one stop market, show me the product page of the most expensive product from nutrition bars and drinks category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/kellogg-s-special-k-protein-meal-bars-chocolate-caramel-12-7oz-6-count.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 138 + }, + { + "sites": [ + "shopping" + ], + "task_id": 240, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I am doing a market survey for one stop market, show me the product page of the most expensive product from {{product_category}} category", + "instantiation_dict": { + "product_category": "competitive swimwear" + }, + "intent": "I am doing a market survey for one stop market, show me the product page of the most expensive product from competitive swimwear category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/women-cross-flower-beachwear-tankini-bandeau-bandage-bikini-set-push-up-swimwear-bathing-suit-two-pieces-swimsuits.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 138 + }, + { + "sites": [ + "shopping" + ], + "task_id": 241, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I am doing a market survey for one stop market, show me the product page of the most expensive product from {{product_category}} category", + "instantiation_dict": { + "product_category": "skin care tool" + }, + "intent": "I am doing a market survey for one stop market, show me the product page of the most expensive product from skin care tool category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/professional-medi-spa-scar-stretch-mark-reduction-system.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 138 + }, + { + "sites": [ + "shopping" + ], + "task_id": 242, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I am doing a market survey for one stop market, show me the product page of the most expensive product from {{product_category}} category", + "instantiation_dict": { + "product_category": "Household Supplies" + }, + "intent": "I am doing a market survey for one stop market, show me the product page of the most expensive product from Household Supplies category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/lynx-battery-12v-200ah-lithium-iron-phosphate-lifepo4-prismatic-deep-cell-battery-set-of-4-3-2v-cells-with-3-bus-bars-and-8-lug-nuts-for-rv-solar-marine-off-grid-applications.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 138 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 243, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the {{information}} of the customer who is the most unhappy with {{product}}", + "instantiation_dict": { + "information": "email address", + "product": "Circe fleece" + }, + "intent": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "hannah.lim@gmail.com" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "hannah.lim@gmail.com" + }, + "intent_template_id": 244 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 244, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the {{information}} of the customer who is the most unhappy with {{product}}", + "instantiation_dict": { + "information": "email address", + "product": "Olivia zip jacket" + }, + "intent": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "emma.lopez@gmail.com" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "emma.lopez@gmail.com" + }, + "intent_template_id": 244 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 245, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the {{information}} of the customer who is the most unhappy with {{product}}", + "instantiation_dict": { + "information": "name", + "product": "Antonia racer tank" + }, + "intent": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Shaunte" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Shaunte" + }, + "intent_template_id": 244 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 246, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the {{information}} of the customer who is the most unhappy with {{product}}", + "instantiation_dict": { + "information": "name", + "product": "Chloe tank" + }, + "intent": "Show me the name of the customer who is the most unhappy with Chloe tank", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Teofila" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Teofila" + }, + "intent_template_id": 244 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 247, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Show me the {{information}} of the customer who is the most unhappy with {{product}}", + "instantiation_dict": { + "information": "email address", + "product": "the style of Zoe products" + }, + "intent": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no negative review for Zoe products, all reviews are positive." + }, + "reference_url": "Valorie doesn't have a email in the system", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 244 + }, + { + "sites": [ + "map" + ], + "task_id": 248, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the coordinates of {{location}} in DD format", + "instantiation_dict": { + "location": "Carnegie Mellon Caf\u00e9" + }, + "intent": "Tell me the coordinates of Carnegie Mellon Caf\u00e9 in DD format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include": [ + "40.442", + "-79.939" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "40.4424191, -79.9397388" + }, + "intent_template_id": 46 + }, + { + "sites": [ + "map" + ], + "task_id": 249, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the coordinates of {{location}} in DD format", + "instantiation_dict": { + "location": "Western Pennsylvania Hospital Heliport" + }, + "intent": "Tell me the coordinates of Western Pennsylvania Hospital Heliport in DD format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include": [ + "40.460", + "-79.946" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "40.46076, -79.94666" + }, + "intent_template_id": 46 + }, + { + "sites": [ + "map" + ], + "task_id": 250, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the coordinates of {{location}} in DD format", + "instantiation_dict": { + "location": "Apple Store near Pitt" + }, + "intent": "Tell me the coordinates of Apple Store near Pitt in DD format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include": [ + "40.451", + "-79.933" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "40.4511693, -79.9334241" + }, + "intent_template_id": 46 + }, + { + "sites": [ + "map" + ], + "task_id": 251, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the coordinates of {{location}} in DD format", + "instantiation_dict": { + "location": "bus stop on the Carnegie art museum side of the street near CMU" + }, + "intent": "Tell me the coordinates of bus stop on the Carnegie art museum side of the street near CMU in DD format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include": [ + "40.444", + "-79.948" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "40.4443, -79.94889" + }, + "intent_template_id": 46 + }, + { + "sites": [ + "map" + ], + "task_id": 252, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Tell me the coordinates of {{location}} in DD format", + "instantiation_dict": { + "location": "Tokyo Japanese Food Store in Pittsburgh" + }, + "intent": "Tell me the coordinates of Tokyo Japanese Food Store in Pittsburgh in DD format", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include": [ + "40.457", + "-79.929" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "40.45761, -79.92934" + }, + "intent_template_id": 46 + }, + { + "sites": [ + "map" + ], + "task_id": 253, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the {{information}} of {{location}}", + "instantiation_dict": { + "location": "Carnegie Mellon Caf\u00e9", + "information": "phone number" + }, + "intent": "What is the phone number of Carnegie Mellon Caf\u00e9", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The phone number does not exist in the page" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 501 + }, + { + "sites": [ + "map" + ], + "task_id": 254, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the {{information}} of {{location}}", + "instantiation_dict": { + "location": "Western Pennsylvania Hospital", + "information": "phone number" + }, + "intent": "What is the phone number of Western Pennsylvania Hospital", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "4125785000" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "4125785000" + }, + "intent_template_id": 501 + }, + { + "sites": [ + "map" + ], + "task_id": 255, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Who is the {{information}} of {{location}}", + "instantiation_dict": { + "location": "PIT airport", + "information": "operator" + }, + "intent": "Who is the operator of PIT airport", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Allegheny County Airport Authority" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Allegheny County Airport Authority" + }, + "intent_template_id": 501 + }, + { + "sites": [ + "map" + ], + "task_id": 256, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the {{information}} of {{location}}", + "instantiation_dict": { + "location": "Carnegie art museum in pittsburgh", + "information": "website" + }, + "intent": "What is the website of Carnegie art museum in pittsburgh", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "http://web.cmoa.org/" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "http://web.cmoa.org/" + }, + "intent_template_id": 501 + }, + { + "sites": [ + "map" + ], + "task_id": 257, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What is the {{information}} of {{location}}", + "instantiation_dict": { + "location": "Tokyo Japanese Food Store in Pittsburgh", + "information": "hours of operation" + }, + "intent": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "We-Su 10:00-17:00" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "We-Su 10:00-17:00" + }, + "intent_template_id": 501 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 258, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "See all public projects", + "instantiation_dict": {}, + "intent": "See all public projects", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/explore", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 325 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 259, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Get me my RSS feed token", + "instantiation_dict": {}, + "intent": "Get me my RSS feed token", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "TMN_bBn9Z48qVbUFZV45" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "TMN_bBn9Z48qVbUFZV45" + }, + "intent_template_id": 312 + }, + { + "sites": [ + "shopping" + ], + "task_id": 260, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I want to browse the products in the {{category}} category", + "instantiation_dict": { + "category": "Video Game" + }, + "intent": "I want to browse the products in the Video Game category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/video-games.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 211 + }, + { + "sites": [ + "shopping" + ], + "task_id": 261, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I want to browse the products in the {{category}} category", + "instantiation_dict": { + "category": "Headphones" + }, + "intent": "I want to browse the products in the Headphones category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/electronics/headphones.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 211 + }, + { + "sites": [ + "shopping" + ], + "task_id": 262, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I want to browse the products in the {{category}} category", + "instantiation_dict": { + "category": "Men shoes" + }, + "intent": "I want to browse the products in the Men shoes category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/clothing-shoes-jewelry/men/shoes.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 211 + }, + { + "sites": [ + "shopping" + ], + "task_id": 263, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I want to browse the products in the {{category}} category", + "instantiation_dict": { + "category": "Woman clothing" + }, + "intent": "I want to browse the products in the Woman clothing category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/clothing-shoes-jewelry/women/clothing.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 211 + }, + { + "sites": [ + "shopping" + ], + "task_id": 264, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I want to browse the products in the {{category}} category", + "instantiation_dict": { + "category": "Cabinets, Racks & Shelves" + }, + "intent": "I want to browse the products in the Cabinets, Racks & Shelves category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/office-products/office-furniture-lighting/cabinets-racks-shelves.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 211 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 265, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What's the closest national park to {{city}}? How far is it to drive there?", + "instantiation_dict": { + "city": "Boston" + }, + "intent": "What's the closest national park to Boston? How far is it to drive there?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the national park is Acadia National Park?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the distance is 457km by driving?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Acadia National Park\n457km" + }, + "intent_template_id": 85 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 266, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What's the closest national park to {{city}}?", + "instantiation_dict": { + "city": "the largest city in Maine" + }, + "intent": "What's the closest national park to the largest city in Maine?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Acadia National Park" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Acadia National Park" + }, + "intent_template_id": 85 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 267, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What's the closest national park to {{city}}? How long it takes to drive there?", + "instantiation_dict": { + "city": "the hometown of Stephen King" + }, + "intent": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the national park is Acadia National Park?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the driving time is 1h 23min?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Acadia National Park\n1h 23min" + }, + "intent_template_id": 85 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 268, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "What's the closest national park to {{city}}? How long does it take to bike there?", + "instantiation_dict": { + "city": "Vinalhaven, ME" + }, + "intent": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the national park is Acadia National Park?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the biking time is 10h 33min?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Acadia National Park\n10h 33min" + }, + "intent_template_id": 85 + }, + { + "sites": [ + "shopping" + ], + "task_id": 269, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me products under ${{price}} in \"{{product_category}}\" category", + "instantiation_dict": { + "price": "25", + "product_category": "women shoes" + }, + "intent": "Show me products under $25 in \"women shoes\" category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/clothing-shoes-jewelry/women/shoes.html?price=0-25", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 139 + }, + { + "sites": [ + "shopping" + ], + "task_id": 270, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me products under ${{price}} in \"{{product_category}}\" category", + "instantiation_dict": { + "price": "30", + "product_category": "men shoes" + }, + "intent": "Show me products under $30 in \"men shoes\" category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/clothing-shoes-jewelry/men/shoes.html?price=0-30", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 139 + }, + { + "sites": [ + "shopping" + ], + "task_id": 271, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me products under ${{price}} in \"{{product_category}}\" category", + "instantiation_dict": { + "price": "46.99", + "product_category": "makeup remover" + }, + "intent": "Show me products under $46.99 in \"makeup remover\" category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/beauty-personal-care/makeup/makeup-remover.html?price=0-46.99", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 139 + }, + { + "sites": [ + "shopping" + ], + "task_id": 272, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me products under ${{price}} in \"{{product_category}}\" category", + "instantiation_dict": { + "price": "78", + "product_category": "children dental care" + }, + "intent": "Show me products under $78 in \"children dental care\" category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/beauty-personal-care/oral-care/children-s-dental-care.html?price=0-78", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 139 + }, + { + "sites": [ + "shopping" + ], + "task_id": 273, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me products under ${{price}} in \"{{product_category}}\" category", + "instantiation_dict": { + "price": "199", + "product_category": "furtiture with accent" + }, + "intent": "Show me products under $199 in \"furtiture with accent\" category", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/home-kitchen/furniture/accent-furniture.html?price=0-199", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 139 + }, + { + "sites": [ + "shopping" + ], + "task_id": 274, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Search for \"{{keyword}}\"", + "instantiation_dict": { + "keyword": "usb wifi" + }, + "intent": "Search for \"usb wifi\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=usb+wifi", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 212 + }, + { + "sites": [ + "shopping" + ], + "task_id": 275, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Search for \"{{keyword}}\"", + "instantiation_dict": { + "keyword": "xbox" + }, + "intent": "Search for \"xbox\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=xbox", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 212 + }, + { + "sites": [ + "shopping" + ], + "task_id": 276, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Search for \"{{keyword}}\"", + "instantiation_dict": { + "keyword": "switch accessories" + }, + "intent": "Search for \"switch accessories\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=switch+accessories", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 212 + }, + { + "sites": [ + "shopping" + ], + "task_id": 277, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Search for \"{{keyword}}\"", + "instantiation_dict": { + "keyword": "batteries for iphone 13" + }, + "intent": "Search for \"batteries for iphone 13\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=iphone+13", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 212 + }, + { + "sites": [ + "shopping" + ], + "task_id": 278, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Search for \"{{keyword}}\"", + "instantiation_dict": { + "keyword": "green tea bag for weight loss" + }, + "intent": "Search for \"green tea bag for weight loss\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=green+tea+bag+for+weight+loss", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 212 + }, + { + "sites": [ + "shopping" + ], + "task_id": 279, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "instantiation_dict": {}, + "intent": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "must_include":[ + "SONY WH1000XM3 Bluetooth Wireless Noise Canceling Headphones Silver WH-1000XM3/S (Renewed)", + "Sony WH-CH710N/H Wireless Bluetooth Noise Cancelling Headphones", + "Sony WH-1000XM3B Wireless Bluetooth Noise-Canceling Over-Ear Headphones (Black) Basic Headphone Bundle Kit with Stylus", + "Sony Wireless Headphones WH-CH510: Wireless Bluetooth On-Ear Headset with Mic for Phone-Call, Black", + "Sony WHCH710N Wireless Bluetooth Noise Canceling Over-The-Ear Headphones (Black) with Kratos 18W PD Two-Port Power Adapter and Kratos 6-Feet Nylon Braided USB-C Cable Bundle (3 Items)", + "Sony WI-SP500 Wireless in-Ear Sports Headphones, White (WISP500/W)", + "Sony WI-SP510 Extra BASS Wireless in-Ear Headset/Headphones with mic for Phone Call Sports IPX5 Bluetooth, Black (WISP510/B)", + "Sony MDRAS600BT Active Sports Bluetooth Headset (Black)", + "Sony WH-1000XM4 Wireless Noise Canceling Over-Ear Headphones (Black) with Sony WLA-NS7 Wireless TV Adapter Bundle (2 Items)", + "Sony WI-C300 Wireless In-Ear Headphones, Red (WIC300/R)", + "Sony XB950N1 Extra Bass Wireless Noise Canceling Headphones, Black", + "SONY - H900N Hi-Res Noise Cancelling Wireless Headphone Grayish Black Renewed" + ], + "context_qa": [ + { + "question": "Does this passage mention the lowest price is $18.99?", + "answer": "Yes" + }, + { + "question": "Does this passage mention the highest price is $406?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "These models are avaiable: SONY WH1000XM3 Bluetooth Wireless Noise Canceling Headphones Silver WH-1000XM3/S (Renewed) Sony WH-CH710N/H Wireless Bluetooth Noise Cancelling Headphones Sony WH-1000XM3B Wireless Bluetooth Noise-Canceling Over-Ear Headphones (Black) Basic Headphone Bundle Kit with Stylus Sony Wireless Headphones WH-CH510: Wireless Bluetooth On-Ear Headset with Mic for Phone-Call, Black Sony WHCH710N Wireless Bluetooth Noise Canceling Over-The-Ear Headphones (Black) with Kratos 18W PD Two-Port Power Adapter and Kratos 6-Feet Nylon Braided USB-C Cable Bundle (3 Items) Sony WI-SP500 Wireless in-Ear Sports Headphones, White (WISP500/W) Sony WI-SP510 Extra BASS Wireless in-Ear Headset/Headphones with mic for Phone Call Sports IPX5 Bluetooth, Black (WISP510/B) Sony MDRAS600BT Active Sports Bluetooth Headset (Black) Sony WH-1000XM4 Wireless Noise Canceling Over-Ear Headphones (Black) with Sony WLA-NS7 Wireless TV Adapter Bundle (2 Items) Sony WI-C300 Wireless In-Ear Headphones, Red (WIC300/R) Sony XB950N1 Extra Bass Wireless Noise Canceling Headphones, Black SONY - H900N Hi-Res Noise Cancelling Wireless Headphone Grayish Black Renewed The price ranges from $18.99 to $406 " + }, + "intent_template_id": 204 + }, + { + "sites": [ + "shopping" + ], + "task_id": 280, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "instantiation_dict": {}, + "intent": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage mention the lowest price is $8.99?", + "answer": "Yes" + }, + { + "question": "Does this passage mention the highest price is $59.99?", + "answer": "Yes" + } + ], + "must_include":[ + "Anker USB C Charger 30W, 711 Charger, Compact Fast Charger (Not Foldable) for MacBook Air/iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy S21, Note 20, iPad Pro, Pixel, and More", + "Anker USB C Charger 40W, 521 Charger (Nano Pro), PIQ 3.0 Durable Compact Fast Charger (Not Foldable) for iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy, Pixel 4/3, iPad/iPad Mini (Cable Not Included)", + "Anker PowerCore Speed 20000, 20000mAh Qualcomm Quick Charge 3.0 & PowerIQ Portable Charger, with Quick Charge Recharging, Power Bank for Samsung, iPhone, iPad and More, Black (A1278)", + "5Ft Micro-USB Charger Cord Cable Fit for Anker-PowerCore 5000 10000 20100 13000 26800 Mini 3350 Fusion II 15000 Redux 20000 Slim 10000 Astro E1 AC Replacement Power Adapter Supply", + "Anker 10W Max Wireless Charger, 313 Wireless Charger (Pad), Qi-Certified Wireless Charging 7.5W for iPhone 12/12 Pro/12 mini/12 Pro Max, 10W for Galaxy S10 S9 S8, S9 Plus, Note 9 (No AC Adapter)", + "Anker Wireless Charger, 313 Wireless Charger (Stand), Qi-Certified for iPhone 12, 12 Pro Max, SE, 11, 11 Pro, 11 Pro Max, XR, XS Max, 10W Fast-Charging Galaxy S20, S10 (No AC Adapter)", + "USB Charger, Anker Elite Dual Port 24W Wall Charger, PowerPort 2 with PowerIQ and Foldable Plug, for iPhone 11/Xs/XS Max/XR/X/8/7/6/Plus, iPad Pro/Air 2/Mini 3/Mini 4, Samsung S4/S5, and More", + "iPhone 12 Charger [GaN Tech], Anker 30W Compact USB-C Wall Charger with Power Delivery, PowerPort Atom for iPhone 12 / Mini/Pro/Pro Max / 11 / X/XS/XR, iPad Pro, MacBook 12'', Pixel, Galaxy", + "USB C Charger, Anker 30W 2 Port Fast Charger with 18W USB C Power Adapter, Foldable PowerPort PD 2 Charger for iPad Pro, iPhone 11/11 Pro / 11 Pro Max/XS/Max/XR/X, Pixel, Galaxy, and More", + "Anker 40W 5-Port USB Wall Charger, PowerPort 5 for iPhone XS / XS Max / XR / X / 8 / 7 / 6 / Plus, iPad Pro / Air 2 / mini, Galaxy S9 / S8 / Edge / Plus, Note 8 / 7, LG, Nexus, HTC and More, Black (AK-A2124111)", + "Anker Quick Charge 3.0 39W Dual USB Wall Charger, PowerPort Speed 2 for Galaxy S10/S9/S8/Edge/Plus, Note 8/7 and PowerIQ for iPhone Xs/XS Max/XR/X/8/Plus, iPad Pro/Air 2/Mini, LG, Nexus, HTC and More", + "USB C Charger, Anker 20W PIQ 3.0 Fast Charger with Foldable Plug, PowerPort III Charger for iPhone 13/13 Mini/13 Pro/13 Pro Max/12/11, iPad/iPad Mini, MagSafe, and More (Cable Not Included)" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "These models are availiable: Anker USB C Charger 30W, 711 Charger, Compact Fast Charger (Not Foldable) for MacBook Air/iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy S21, Note 20, iPad Pro, Pixel, and More Anker USB C Charger 40W, 521 Charger (Nano Pro), PIQ 3.0 Durable Compact Fast Charger (Not Foldable) for iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy, Pixel 4/3, iPad/iPad Mini (Cable Not Included) Anker PowerCore Speed 20000, 20000mAh Qualcomm Quick Charge 3.0 & PowerIQ Portable Charger, with Quick Charge Recharging, Power Bank for Samsung, iPhone, iPad and More, Black (A1278) 5Ft Micro-USB Charger Cord Cable Fit for Anker-PowerCore 5000 10000 20100 13000 26800 Mini 3350 Fusion II 15000 Redux 20000 Slim 10000 Astro E1 AC Replacement Power Adapter Supply Anker 10W Max Wireless Charger, 313 Wireless Charger (Pad), Qi-Certified Wireless Charging 7.5W for iPhone 12/12 Pro/12 mini/12 Pro Max, 10W for Galaxy S10 S9 S8, S9 Plus, Note 9 (No AC Adapter) Anker Wireless Charger, 313 Wireless Charger (Stand), Qi-Certified for iPhone 12, 12 Pro Max, SE, 11, 11 Pro, 11 Pro Max, XR, XS Max, 10W Fast-Charging Galaxy S20, S10 (No AC Adapter) USB Charger, Anker Elite Dual Port 24W Wall Charger, PowerPort 2 with PowerIQ and Foldable Plug, for iPhone 11/Xs/XS Max/XR/X/8/7/6/Plus, iPad Pro/Air 2/Mini 3/Mini 4, Samsung S4/S5, and More iPhone 12 Charger [GaN Tech], Anker 30W Compact USB-C Wall Charger with Power Delivery, PowerPort Atom for iPhone 12 / Mini/Pro/Pro Max / 11 / X/XS/XR, iPad Pro, MacBook 12'', Pixel, Galaxy USB C Charger, Anker 30W 2 Port Fast Charger with 18W USB C Power Adapter, Foldable PowerPort PD 2 Charger for iPad Pro, iPhone 11/11 Pro / 11 Pro Max/XS/Max/XR/X, Pixel, Galaxy, and More Anker 40W 5-Port USB Wall Charger, PowerPort 5 for iPhone XS / XS Max / XR / X / 8 / 7 / 6 / Plus, iPad Pro / Air 2 / mini, Galaxy S9 / S8 / Edge / Plus, Note 8 / 7, LG, Nexus, HTC and More, Black (AK-A2124111) Anker Quick Charge 3.0 39W Dual USB Wall Charger, PowerPort Speed 2 for Galaxy S10/S9/S8/Edge/Plus, Note 8/7 and PowerIQ for iPhone Xs/XS Max/XR/X/8/Plus, iPad Pro/Air 2/Mini, LG, Nexus, HTC and More USB C Charger, Anker 20W PIQ 3.0 Fast Charger with Foldable Plug, PowerPort III Charger for iPhone 13/13 Mini/13 Pro/13 Pro Max/12/11, iPad/iPad Mini, MagSafe, and More (Cable Not Included) Magnetic Wireless Charger, Anker Wireless Charger with 5ft Built-in USB-C Cable, PowerWave Magnetic Pad, 7.5W Charging for iPhone 13 / 13 Pro / 13 Pro Max / 13 mini / 12 / 12 Pro (No AC Adapter) USB C Super Fast Charger, Anker 25W PD Wall Charger Fast Charging for Samsung Galaxy S21/S21+/S21 Ultra/S20/Z Flip/Note20/20 Ultra/Note10/10+/S9/S8/S10e, iPad Pro 12.9, and More (Cable not Included) The price ranges from $8.99 to $59.99" + }, + "intent_template_id": 204 + }, + { + "sites": [ + "shopping" + ], + "task_id": 281, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "instantiation_dict": {}, + "intent": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage mention the lowest price is $3.745?", + "answer": "Yes" + }, + { + "question": "Does this passage mention the highest price is $6.495?", + "answer": "Yes" + } + ], + "must_include":[ + "Oral-B Kids Extra Soft Replacement Brush Heads featuring STAR WARS, 2 count", + "Kids By Oral-b Stages Power Star Wars Replacement Heads 4 Pack" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "These models are availiable: Oral-B Kids Extra Soft Replacement Brush Heads featuring STAR WARS, 2 count Kids By Oral-b Stages Power Star Wars Replacement Heads 4 Pack The price ranges from $3.745 to $6.495 " + }, + "intent_template_id": 204 + }, + { + "sites": [ + "shopping" + ], + "task_id": 282, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "instantiation_dict": {}, + "intent": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage mention the lowest price is $27.6?", + "answer": "Yes" + }, + { + "question": "Does this passage mention the highest price is $90.65?", + "answer": "Yes" + } + ], + "must_include":[ + "Nike Men's Air Max Camden Slide Sandal", + "Nike Men's Benassi JDI Fanny Pack Slides", + "Nike Victori One Mens Comfort Slide Cn9675-003 (Midnight Navy/Midnight Navy/White, Numeric_10)", + "Nike Offcourt Slide Mens Bq4639-002 Size 12", + "Nike Jordan Men's Break Slide Red AR6374-602", + "Nike Victori One Slide Mens Style : Dd9559-300", + "Nike Men's Benassi Solarsoft Slide Athletic Sandal (Black/White, numeric_14)", + "Nike Men's Benassi Solarsoft Slide Athletic Sandal (Midnight Navy/Blue, numeric_8)", + "Nike womens Benassi Just Do It" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "These models are availiable: Nike Men's Air Max Camden Slide Sandal Nike Men's Benassi JDI Fanny Pack Slides Nike Victori One Mens Comfort Slide Cn9675-003 (Midnight Navy/Midnight Navy/White, Numeric_10) Nike Offcourt Slide Mens Bq4639-002 Size 12 Nike Jordan Men's Break Slide Red AR6374-602 Nike Victori One Slide Mens Style : Dd9559-300 Nike Men's Benassi Solarsoft Slide Athletic Sandal (Black/White, numeric_14) Nike Men's Benassi Solarsoft Slide Athletic Sandal (Midnight Navy/Blue, numeric_8) Nike womens Benassi Just Do It. The price ranges from $27.6 to $90.65" + }, + "intent_template_id": 204 + }, + { + "sites": [ + "shopping" + ], + "task_id": 283, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Look up the most recent models of XBox controllers released between 2020-2021?", + "instantiation_dict": {}, + "intent": "Look up the most recent models of XBox controllers released between 2020-2021?", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/microsoft-xbox-controller-carbon-black-for-series-x-series-s-xbox-one-windows-10-android-ios-bundled-with-dual-port-charging-dock-xbox-controller-skin-voucher-premgear-cloth.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 210 + }, + { + "sites": [ + "shopping" + ], + "task_id": 284, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the least expensive {{product}} with a minimum storage capacity of {{min_storage}}.", + "instantiation_dict": { + "product": "shoe storage", + "min_storage": "12 pairs" + }, + "intent": "Show the least expensive shoe storage with a minimum storage capacity of 12 pairs.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/onlyeasy-over-the-door-shoe-storage-organizer-hanging-shoe-rack-holder-with-24-large-fabric-pockets-22-1-x-61-4-herringbone-grey-mxrodsb1p.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 207 + }, + { + "sites": [ + "shopping" + ], + "task_id": 285, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the least expensive {{product}} with a minimum storage capacity of {{min_storage}}.", + "instantiation_dict": { + "product": "switch card holder", + "min_storage": "15 cards" + }, + "intent": "Show the least expensive switch card holder with a minimum storage capacity of 15 cards.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/game-card-holder-storage-case-for-nintendo-switch-games-or-ps-vita-game-case-or-sd-memory-cards-black.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 207 + }, + { + "sites": [ + "shopping" + ], + "task_id": 286, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the least expensive {{product}} with a minimum storage capacity of {{min_storage}}.", + "instantiation_dict": { + "product": "ssd hard drive", + "min_storage": "1TB" + }, + "intent": "Show the least expensive ssd hard drive with a minimum storage capacity of 1TB.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/external-hard-drive-2tb-ultra-thin-external-hard-drive-2000gb-ultra-high-speed-portable-3-1-type-c-storage-drive-compatible-with-pc-laptop-and-mac-2tb-a1.html", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 207 + }, + { + "sites": [ + "map" + ], + "task_id": 287, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "How much time does it take from Pittsburgh to Philadelphia by car?", + "instantiation_dict": {}, + "intent": "How much time does it take from Pittsburgh to Philadelphia by car?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "5h 47min" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "5h 47min" + }, + "intent_template_id": 47 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 288, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the customer who has the most cancellations in the history", + "instantiation_dict": { + "attribute": "name" + }, + "intent": "Tell me the name of the customer who has the most cancellations in the history", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Samantha Jones" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Samantha Jones" + }, + "intent_template_id": 234 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 289, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the customer who has the most cancellations in the history", + "instantiation_dict": { + "attribute": "email address, name, phone number" + }, + "intent": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the name is Samantha Jones?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state the phone number is 3055551212?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "email: coolcat321@hotmail.com name: Samantha Jones phone number: 3055551212" + }, + "intent_template_id": 234 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 290, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the customer who has the most cancellations in the history", + "instantiation_dict": { + "attribute": "product SKUs in the most recent cancelled orders" + }, + "intent": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "WSH09-29-White,WSH09-28-Green,MSH11-34-Blue,WP09-29-Purple" + }, + "intent_template_id": 234 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 291, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the customer who has the most cancellations in the history", + "instantiation_dict": { + "attribute": "total spend on products in the most recent cancelled orders" + }, + "intent": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "148" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$148" + }, + "intent_template_id": 234 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 292, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the customer who has the most cancellations in the history", + "instantiation_dict": { + "attribute": "total number of cancellations" + }, + "intent": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "9" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "9" + }, + "intent_template_id": 234 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 293, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Show me the command to clone {{repo}} with SSH.", + "instantiation_dict": { + "repo": "Super_Awesome_Robot" + }, + "intent": "Show me the command to clone Super_Awesome_Robot with SSH.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git" + }, + "intent_template_id": 329 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 294, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Show me the command to clone {{repo}} with SSH.", + "instantiation_dict": { + "repo": "ChatGPT" + }, + "intent": "Show me the command to clone ChatGPT with SSH.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git" + }, + "intent_template_id": 329 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 295, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Show me the command to clone {{repo}} with SSH.", + "instantiation_dict": { + "repo": "metaseq" + }, + "intent": "Show me the command to clone metaseq with SSH.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git" + }, + "intent_template_id": 329 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 296, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Show me the command to clone {{repo}} with SSH.", + "instantiation_dict": { + "repo": "the best GAN python implementation" + }, + "intent": "Show me the command to clone the best GAN python implementation with SSH.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git" + }, + "intent_template_id": 329 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 297, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Show me the command to clone {{repo}} with SSH.", + "instantiation_dict": { + "repo": "the most stared Covid location tracker" + }, + "intent": "Show me the command to clone the most stared Covid location tracker with SSH.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git" + }, + "intent_template_id": 329 + }, + { + "sites": [ + "shopping" + ], + "task_id": 298, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the most recent {{status}} order", + "instantiation_dict": { + "status": "completed" + }, + "intent": "Show the most recent completed order", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/sales/order/view/order_id/180/", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 180 + }, + { + "sites": [ + "shopping" + ], + "task_id": 299, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the most recent {{status}} order", + "instantiation_dict": { + "status": "cancelled" + }, + "intent": "Show the most recent cancelled order", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/sales/order/view/order_id/170/", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 180 + }, + { + "sites": [ + "shopping" + ], + "task_id": 300, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the most recent {{status}} order", + "instantiation_dict": { + "status": "pending" + }, + "intent": "Show the most recent pending order", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/sales/order/view/order_id/189/", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 180 + }, + { + "sites": [ + "shopping" + ], + "task_id": 301, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the most recent {{status}} order", + "instantiation_dict": { + "status": "processing" + }, + "intent": "Show the most recent processing order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "there is no order in processing" + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 180 + }, + { + "sites": [ + "shopping" + ], + "task_id": 302, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show the most recent {{status}} order", + "instantiation_dict": { + "status": "out of delivery" + }, + "intent": "Show the most recent out of delivery order", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "there is no order out of delivery" + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 180 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 303, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make {{period}}?", + "instantiation_dict": { + "user": "Kilian", + "period": "durning 2023" + }, + "intent": "How many commits did Kilian make durning 2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1" + }, + "intent_template_id": 321 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 304, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make {{period}}?", + "instantiation_dict": { + "user": "Eric", + "period": "between Feb 2023 and May 2023" + }, + "intent": "How many commits did Eric make between Feb 2023 and May 2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "14" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "14" + }, + "intent_template_id": 321 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 305, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make {{period}}?", + "instantiation_dict": { + "user": "Philip", + "period": "in 2023/1" + }, + "intent": "How many commits did Philip make in 2023/1?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 321 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 306, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make {{period}}?", + "instantiation_dict": { + "user": "Anthony", + "period": "between 08/2022-09/2022" + }, + "intent": "How many commits did Anthony make between 08/2022-09/2022?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 321 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 307, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "How many commits did {{user}} make {{period}}?", + "instantiation_dict": { + "user": "Nic", + "period": "in April 2021" + }, + "intent": "How many commits did Nic make in April 2021?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "16" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "16" + }, + "intent_template_id": 321 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 308, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me who has made the most contributions, in terms of number of commits, to the {{repo}} project", + "instantiation_dict": { + "repo": "primer/design" + }, + "intent": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Shawn Allen" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Shawn Allen" + }, + "intent_template_id": 323 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 309, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me who has made the most contributions, in terms of number of commits, to the {{repo}} project", + "instantiation_dict": { + "repo": "thoughtbot/administrate" + }, + "intent": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Grayson Wright" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Grayson Wright" + }, + "intent_template_id": 323 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 310, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me who has made the most contributions, in terms of number of commits, to the {{repo}} project", + "instantiation_dict": { + "repo": "AndroidSlidingUpPanel" + }, + "intent": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "tokudu" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "tokudu" + }, + "intent_template_id": 323 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 311, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me who has made the most contributions, in terms of number of commits, to the {{repo}} project", + "instantiation_dict": { + "repo": "Pytorch GAN" + }, + "intent": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Erik Linder-Nor\u00e9n" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Erik Linder-Nor\u00e9n" + }, + "intent_template_id": 323 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 312, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Tell me who has made the most contributions, in terms of number of commits, to the {{repo}} project", + "instantiation_dict": { + "repo": "csvkit" + }, + "intent": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Christopher Groskopf" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Christopher Groskopf" + }, + "intent_template_id": 323 + }, + { + "sites": [ + "shopping" + ], + "task_id": 313, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Which number to call for the customer service?", + "instantiation_dict": {}, + "intent": "Which number to call for the customer service?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The website does not list the customer service phone number" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 134 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 314, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "instantiation_dict": { + "repo": "prime/design", + "attribute": "name" + }, + "intent": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Shawn Allen, Inayaili Le\u00f3n, Aurora Pleguezuelo" + }, + "intent_template_id": 324 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 315, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "instantiation_dict": { + "repo": "Pytorch GAN", + "attribute": "email address" + }, + "intent": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage include email eriklindernoren@live.se?", + "answer": "Yes" + }, + { + "question": "Does the passage include email eriklindernoren@gmail.com?", + "answer": "Yes" + }, + { + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "eriklindernoren@live.se, eriklindernoren@gmail.com, pinnacle.chen@qq.com" + }, + "intent_template_id": 324 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 316, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "instantiation_dict": { + "repo": "facebook's guide on building react apps", + "attribute": "name" + }, + "intent": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Ian Sutherland, Joe Hadda, Dan Abramov" + }, + "intent_template_id": 324 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 317, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "instantiation_dict": { + "repo": "metaseq", + "attribute": "name and number of commits" + }, + "intent": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose name is Peter Albert?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Susan Zhang: 70, Stephen Roller: 51, Peter Albert: 12" + }, + "intent_template_id": 324 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 318, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "instantiation_dict": { + "repo": "2019-nCov", + "attribute": "last names" + }, + "intent": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does the passage include the contributor whose last name is Lo?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose last name is Chen?", + "answer": "Yes" + }, + { + "question": "Does the passage include the contributor whose last name is Chu?", + "answer": "Yes" + }, + { + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lo, Chen, Chu" + }, + "intent_template_id": 324 + }, + { + "sites": [ + "shopping" + ], + "task_id": 319, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much refund I should expect from my order cancelled in {{time}}, including shipping fee", + "instantiation_dict": { + "time": "April 2022" + }, + "intent": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 160 + }, + { + "sites": [ + "shopping" + ], + "task_id": 320, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much refund I should expect from my order cancelled in {{time}}, including shipping fee", + "instantiation_dict": { + "time": "Feb 2023" + }, + "intent": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$406.53" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$406.53" + }, + "intent_template_id": 160 + }, + { + "sites": [ + "shopping" + ], + "task_id": 321, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much refund I should expect from my order cancelled in {{time}}, including shipping fee", + "instantiation_dict": { + "time": "2022" + }, + "intent": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$3053.97" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$3053.97" + }, + "intent_template_id": 160 + }, + { + "sites": [ + "shopping" + ], + "task_id": 322, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much refund I should expect from my order cancelled in {{time}} if I cannot get the shipping fee refunded?", + "instantiation_dict": { + "time": "May 2023" + }, + "intent": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$350.42" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$350.42" + }, + "intent_template_id": 160 + }, + { + "sites": [ + "shopping" + ], + "task_id": 323, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much refund I should expect from my order cancelled in {{time}}? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "instantiation_dict": { + "time": "2022/03" + }, + "intent": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$264.49" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$264.49" + }, + "intent_template_id": 160 + }, + { + "sites": [ + "shopping" + ], + "task_id": 324, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the \"{{product}}\" listings by {{sorting_order}}.", + "instantiation_dict": { + "product": "chairs", + "sorting_order": "ascending price" + }, + "intent": "Show me the \"chairs\" listings by ascending price.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/index/?product_list_order=price&q=chairs&product_list_dir=asc", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 208 + }, + { + "sites": [ + "shopping" + ], + "task_id": 325, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the \"{{product}}\" listings by {{sorting_order}}.", + "instantiation_dict": { + "product": "mouth night guard", + "sorting_order": "descending price" + }, + "intent": "Show me the \"mouth night guard\" listings by descending price.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/index/?q=mouth%20night%20guard%20&product_list_order=price", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 208 + }, + { + "sites": [ + "shopping" + ], + "task_id": 326, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the \"{{product}}\" listings by {{sorting_order}}.", + "instantiation_dict": { + "product": "Canon photo printer", + "sorting_order": "search relevance, from most to least" + }, + "intent": "Show me the \"Canon photo printer\" listings by search relevance, from most to least.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/?q=Canon+photo+printer", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 208 + }, + { + "sites": [ + "shopping" + ], + "task_id": 327, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the \"{{product}}\" listings by {{sorting_order}}.", + "instantiation_dict": { + "product": "iphone 12 phone case", + "sorting_order": "name alphabetically" + }, + "intent": "Show me the \"iphone 12 phone case\" listings by name alphabetically.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/index/?q=%20iphone%2012%20phone%20case&product_list_order=name", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 208 + }, + { + "sites": [ + "shopping" + ], + "task_id": 328, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the \"{{product}}\" listings by {{sorting_order}}.", + "instantiation_dict": { + "product": "iphone 12 phone case", + "sorting_order": "price" + }, + "intent": "Show me the \"iphone 12 phone case\" listings by price.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/catalogsearch/result/index/?product_list_order=price&q=%20iphone%2012%20phone%20case", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 208 + }, + { + "sites": [ + "shopping" + ], + "task_id": 329, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spend {{time}} on shopping at One Stop Market?", + "instantiation_dict": { + "time": "on 4/19/2023" + }, + "intent": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 147 + }, + { + "sites": [ + "shopping" + ], + "task_id": 330, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spend {{time}} on shopping at One Stop Market?", + "instantiation_dict": { + "time": "in March 2023" + }, + "intent": "How much I spend in March 2023 on shopping at One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$81.31" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$81.31" + }, + "intent_template_id": 147 + }, + { + "sites": [ + "shopping" + ], + "task_id": 331, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spend {{time}} on shopping at One Stop Market?", + "instantiation_dict": { + "time": "in July 2022" + }, + "intent": "How much I spend in July 2022 on shopping at One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$40.16" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$40.16" + }, + "intent_template_id": 147 + }, + { + "sites": [ + "shopping" + ], + "task_id": 332, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much I spend {{time}} on shopping at One Stop Market?", + "instantiation_dict": { + "time": "each month from Jan to the end of March 2023" + }, + "intent": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Jan: 572.8\nFeb: 762.18\nMar: 83.31" + }, + "intent_template_id": 147 + }, + { + "sites": [ + "shopping" + ], + "task_id": 333, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "How much did I spend on shopping at One Stop Market {{time}}? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "instantiation_dict": { + "time": "on November 2022" + }, + "intent": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "$359.546" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "$359.546" + }, + "intent_template_id": 147 + }, + { + "sites": [ + "shopping" + ], + "task_id": 334, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me when I last ordered my {{description}}?", + "instantiation_dict": { + "description": "muffin cornbread mix" + }, + "intent": "Tell me when I last ordered my muffin cornbread mix?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "March 11th 2023" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "March 11th 2023" + }, + "intent_template_id": 169 + }, + { + "sites": [ + "shopping" + ], + "task_id": 335, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me when I last ordered my {{description}}?", + "instantiation_dict": { + "description": "body butter" + }, + "intent": "Tell me when I last ordered my body butter?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "January 16th 2023" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "January 16th 2023" + }, + "intent_template_id": 169 + }, + { + "sites": [ + "shopping" + ], + "task_id": 336, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me when I last ordered my {{description}}?", + "instantiation_dict": { + "description": "conditioner" + }, + "intent": "Tell me when I last ordered my conditioner?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "January 16th 2023" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "January 16th 2023" + }, + "intent_template_id": 169 + }, + { + "sites": [ + "shopping" + ], + "task_id": 337, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me when I last ordered my {{description}}?", + "instantiation_dict": { + "description": "bread olive" + }, + "intent": "Tell me when I last ordered my bread olive?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "December 12th 2022" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "December 12th 2022" + }, + "intent_template_id": 169 + }, + { + "sites": [ + "shopping" + ], + "task_id": 338, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Tell me when I last ordered my {{description}}?", + "instantiation_dict": { + "description": "toothpaste" + }, + "intent": "Tell me when I last ordered my toothpaste?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "December 4th 2022" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "December 4th 2022" + }, + "intent_template_id": 169 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 339, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "List all opened issues {{description}}", + "instantiation_dict": { + "description": "that report bugs" + }, + "intent": "List all opened issues that report bugs", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues/?label_name%5B%5D=bug", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 299 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 340, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "List all opened issues {{description}}", + "instantiation_dict": { + "description": "that report bugs" + }, + "intent": "List all opened issues that report bugs", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/issues/?label_name%5B%5D=type%3A%20bug%20%F0%9F%90%9E", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 299 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 341, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/root/metaseq", + "geolocation": null, + "intent_template": "List all opened issues {{description}}", + "instantiation_dict": { + "description": "requesting new features" + }, + "intent": "List all opened issues requesting new features", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/root/metaseq/-/issues/?label_name%5B%5D=enhancement", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 299 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 342, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/root/metaseq", + "geolocation": null, + "intent_template": "List all opened issues {{description}}", + "instantiation_dict": { + "description": "that ask about OPT model related questions" + }, + "intent": "List all opened issues that ask about OPT model related questions", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/root/metaseq/-/issues/?search=OPT&label_name%5B%5D=question", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 299 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 343, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/root/metaseq", + "geolocation": null, + "intent_template": "List all opened issues {{description}}", + "instantiation_dict": { + "description": "that don't have any labels" + }, + "intent": "List all opened issues that don't have any labels", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/root/metaseq/-/issues/?label_name%5B%5D=None", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 299 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 344, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "How many reviews our shop received {{time}}?", + "instantiation_dict": { + "time": "so far" + }, + "intent": "How many reviews our shop received so far?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "351" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "351" + }, + "intent_template_id": 248 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 345, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "How many reviews our shop received {{time}}?", + "instantiation_dict": { + "time": "in Apr 2023" + }, + "intent": "How many reviews our shop received in Apr 2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "351" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "351" + }, + "intent_template_id": 248 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 346, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "How many reviews our shop received {{time}}?", + "instantiation_dict": { + "time": "during 2022" + }, + "intent": "How many reviews our shop received during 2022?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 248 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 347, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "How many reviews our shop received {{time}}?", + "instantiation_dict": { + "time": "from the beginning of the shop" + }, + "intent": "How many reviews our shop received from the beginning of the shop?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "351" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "351" + }, + "intent_template_id": 248 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 348, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "How many reviews our shop received {{time}}?", + "instantiation_dict": { + "time": "in May 2023" + }, + "intent": "How many reviews our shop received in May 2023?", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 248 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 349, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Who else have access to my repo {{repo}}, show me their usernames", + "instantiation_dict": { + "repo": "gimmiethat.space" + }, + "intent": "Who else have access to my repo gimmiethat.space, show me their usernames", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "yjlou" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "yjlou" + }, + "intent_template_id": 298 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 350, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Who else have access to my repo {{repo}}, show me their usernames", + "instantiation_dict": { + "repo": "prism-theme" + }, + "intent": "Who else have access to my repo prism-theme, show me their usernames", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "abisubramanya27" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Abishek S, abisubramanya27" + }, + "intent_template_id": 298 + }, + { + "sites": [ + "shopping" + ], + "task_id": 351, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List products from {{product_category}} category by {{order}} price", + "instantiation_dict": { + "product_category": "PS4 accessories", + "order": "ascending" + }, + "intent": "List products from PS4 accessories category by ascending price", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/video-games/playstation-4/accessories.html?product_list_order=price", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 137 + }, + { + "sites": [ + "shopping" + ], + "task_id": 352, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List products from {{product_category}} category by {{order}} price", + "instantiation_dict": { + "product_category": "nutrition bars and drinks", + "order": "ascending" + }, + "intent": "List products from nutrition bars and drinks category by ascending price", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/health-household/diet-sports-nutrition/nutrition-bars-drinks.html?product_list_order=price", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 137 + }, + { + "sites": [ + "shopping" + ], + "task_id": 353, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List products from {{product_category}} category by {{order}} price", + "instantiation_dict": { + "product_category": "competitive swimwear", + "order": "ascending" + }, + "intent": "List products from competitive swimwear category by ascending price", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/clothing-shoes-jewelry/sport-specific-clothing/competitive-swimwear.html?product_list_order=price", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 137 + }, + { + "sites": [ + "shopping" + ], + "task_id": 354, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List products from {{product_category}} category by {{order}} price", + "instantiation_dict": { + "product_category": "living room furtniture", + "order": "descending" + }, + "intent": "List products from living room furtniture category by descending price", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/home-kitchen/furniture/living-room-furniture.html?product_list_order=price&product_list_dir=desc", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 137 + }, + { + "sites": [ + "shopping" + ], + "task_id": 355, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List products from {{product_category}} category by {{order}} price", + "instantiation_dict": { + "product_category": "kids' bedding", + "order": "descending" + }, + "intent": "List products from kids' bedding category by descending price", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/home-kitchen/bedding/kids-bedding.html?product_list_dir=desc", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 137 + }, + { + "sites": [ + "map" + ], + "task_id": 356, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show the route from SCS CMU in Pittsburgh to the location where the Declaration of Independence and Constitution were signed", + "instantiation_dict": {}, + "intent": "Show the route from SCS CMU in Pittsburgh to the location where the Declaration of Independence and Constitution were signed", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Gates and Hillman Centers", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Independence Hall", + "Philadelphia" + ] + } + } + ] + }, + "intent_template_id": 49 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 357, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Checkout merge requests requiring my review", + "instantiation_dict": {}, + "intent": "Checkout merge requests requiring my review", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/dashboard/merge_requests?reviewer_username=byteblaze", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 291 + }, + { + "sites": [ + "shopping" + ], + "task_id": 358, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the {{info}} for order number {{order_number}}.", + "instantiation_dict": { + "info": "shipping method", + "order_number": 187 + }, + "intent": "Show me the shipping method for order number 187.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "Flat Rate - Fixed" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Flat Rate - Fixed" + }, + "intent_template_id": 206 + }, + { + "sites": [ + "shopping" + ], + "task_id": 359, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the {{info}} for order number {{order_number}}.", + "instantiation_dict": { + "info": "order date", + "order_number": "148" + }, + "intent": "Show me the order date for order number 148.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1/29/2023" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1/29/2023" + }, + "intent_template_id": 206 + }, + { + "sites": [ + "shopping" + ], + "task_id": 360, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the {{info}} for order number {{order_number}}.", + "instantiation_dict": { + "info": "product names", + "order_number": "148" + }, + "intent": "Show me the product names for order number 148.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress), Russound 5B45W 4\" Indoor Outdoor Speakers White" + }, + "intent_template_id": 206 + }, + { + "sites": [ + "shopping" + ], + "task_id": 361, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the {{info}} for order number {{order_number}}.", + "instantiation_dict": { + "info": "order statuses", + "order_number": "170 and 189" + }, + "intent": "Show me the order statuses for order number 170 and 189.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "170: cancelled", + "189: pending" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "170: cancelled, 189: pending" + }, + "intent_template_id": 206 + }, + { + "sites": [ + "shopping" + ], + "task_id": 362, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Show me the {{info}} for order number {{order_number}}.", + "instantiation_dict": { + "info": "billing address", + "order_number": "00178" + }, + "intent": "Show me the billing address for order number 00178.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "context_qa": [ + { + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Emma Lopez, 101 S San Mateo Dr, San Mateo, California, 94010, United States" + }, + "intent_template_id": 206 + }, + { + "sites": [ + "map" + ], + "task_id": 363, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Measure distance between {{location/address_1}} and {{location/address_2}} by walking", + "instantiation_dict": { + "location/address_1": "Carnegie Mellon University", + "location/address_2": "Carnegie Music Hall" + }, + "intent": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "748m" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "748m" + }, + "intent_template_id": 58 + }, + { + "sites": [ + "map" + ], + "task_id": 364, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Measure distance between {{location/address_1}} and {{location/address_2}} by walking", + "instantiation_dict": { + "location/address_1": "Carnegie Mellon University", + "location/address_2": "UPMC Shadyside" + }, + "intent": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1.7km" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1.7km" + }, + "intent_template_id": 58 + }, + { + "sites": [ + "map" + ], + "task_id": 365, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Measure distance between {{location/address_1}} and {{location/address_2}} by walking", + "instantiation_dict": { + "location/address_1": "Carnegie Music Hall", + "location/address_2": "UPMC Shadyside" + }, + "intent": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "2.2km" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "2.2km" + }, + "intent_template_id": 58 + }, + { + "sites": [ + "map" + ], + "task_id": 366, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Measure distance between {{location/address_1}} and {{location/address_2}} by walking", + "instantiation_dict": { + "location/address_1": "CVS (closet one)", + "location/address_2": "UPMC Shadyside" + }, + "intent": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1.2km" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1.2km" + }, + "intent_template_id": 58 + }, + { + "sites": [ + "map" + ], + "task_id": 367, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Measure distance between {{location/address_1}} and {{location/address_2}} by walking", + "instantiation_dict": { + "location/address_1": "Carnegie Mellon University", + "location/address_2": "CVS (closet one)" + }, + "intent": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "1.4km" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "1.4km" + }, + "intent_template_id": 58 + }, + { + "sites": [ + "shopping" + ], + "task_id": 368, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "find discounted items.", + "instantiation_dict": {}, + "intent": "find discounted items.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no function to show only discount items" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "There is no function to show only discount items." + }, + "intent_template_id": 188 + }, + { + "sites": [ + "map" + ], + "task_id": 369, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Pull up the description page of {{location}} on Map", + "instantiation_dict": { + "location": "Carnegie Music Hall" + }, + "intent": "Pull up the description page of Carnegie Music Hall on Map", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Carnegie Music Hall" + ] + } + } + ] + }, + "intent_template_id": 52 + }, + { + "sites": [ + "map" + ], + "task_id": 370, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Pull up the description page of {{location}} on Map", + "instantiation_dict": { + "location": "Carnegie Mellon University" + }, + "intent": "Pull up the description page of Carnegie Mellon University on Map", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Carnegie Mellon University" + ] + } + } + ] + }, + "intent_template_id": 52 + }, + { + "sites": [ + "map" + ], + "task_id": 371, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Pull up the description page of {{location}} on Map", + "instantiation_dict": { + "location": "Piada restaurant near Pitt" + }, + "intent": "Pull up the description page of Piada restaurant near Pitt on Map", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Piada Italian Street Food", + "Forbes Avenue" + ] + } + } + ] + }, + "intent_template_id": 52 + }, + { + "sites": [ + "map" + ], + "task_id": 372, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Pull up the description page of {{location}} on Map", + "instantiation_dict": { + "location": "the Costco in Pittsburhg near a river" + }, + "intent": "Pull up the description page of the Costco in Pittsburhg near a river on Map", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Costco", + "Waterfront Drive West" + ] + } + } + ] + }, + "intent_template_id": 52 + }, + { + "sites": [ + "map" + ], + "task_id": 373, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Pull up the description page of {{location}} on Map", + "instantiation_dict": { + "location": "Whole Foods near Carnegie Mellon" + }, + "intent": "Pull up the description page of Whole Foods near Carnegie Mellon on Map", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": null, + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Whole Foods", + "East Liberty" + ] + } + } + ] + }, + "intent_template_id": 52 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 374, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Preview the {{name}} theme for my shop", + "instantiation_dict": { + "name": "Magento Blank" + }, + "intent": "Preview the Magento Blank theme for my shop", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/admin/system_design_theme/edit/id/1", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 266 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 375, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Preview the {{name}} theme for my shop", + "instantiation_dict": { + "name": "Magento Luma" + }, + "intent": "Preview the Magento Luma theme for my shop", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/admin/system_design_theme/edit/id/3/key/", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 266 + }, + { + "sites": [ + "shopping" + ], + "task_id": 376, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Summarize customer reviews for {{product}}.", + "instantiation_dict": { + "product": "Amazon Echo Dot 3rd generation" + }, + "intent": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no review for this product" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 182 + }, + { + "sites": [ + "map" + ], + "task_id": 377, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the {{space}} around {{location}}", + "instantiation_dict": { + "location": "CMU ArtPark Lab", + "space": "resturants" + }, + "intent": "Find the resturants around CMU ArtPark Lab", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__MAP__/search?query=restaurants%20near%20CMU%20ArtPark%20Lab", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 59 + }, + { + "sites": [ + "map" + ], + "task_id": 378, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the {{space}} around {{location}}", + "instantiation_dict": { + "location": "CMU main campus", + "space": "parking" + }, + "intent": "Find the parking around CMU main campus", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__MAP__/search?query=parking%20near%20carnegie%20mellon%20university", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 59 + }, + { + "sites": [ + "map" + ], + "task_id": 379, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the {{space}} around {{location}}", + "instantiation_dict": { + "location": "CMU main campus", + "space": "hotel" + }, + "intent": "Find the hotel around CMU main campus", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__MAP__/search?query=hotels%20near%20carnegie%20mellon%20university", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 59 + }, + { + "sites": [ + "map" + ], + "task_id": 380, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the {{space}} around {{location}}", + "instantiation_dict": { + "location": "Carnegie Music Hall", + "space": "bar" + }, + "intent": "Find the bar around Carnegie Music Hall", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__MAP__/search?query=bars%20near%20Carnegie%20Music%20Hall", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 59 + }, + { + "sites": [ + "map" + ], + "task_id": 381, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the {{space}} around {{location}}", + "instantiation_dict": { + "location": "Carnegie Music Hall", + "space": "hotel" + }, + "intent": "Find the hotel around Carnegie Music Hall", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match" + ], + "reference_answers": null, + "reference_url": "__MAP__/search?query=hotels%20near%20Carnegie%20Music%20Hall", + "program_html": [], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 59 + }, + { + "sites": [ + "map" + ], + "task_id": 382, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "instantiation_dict": {}, + "intent": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no USCIS nearby" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 781 + }, + { + "sites": [ + "map" + ], + "task_id": 383, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "instantiation_dict": {}, + "intent": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Hyatt Regency Pittsburgh International Airport Giant Eagle, ALDI" + }, + "intent_template_id": 782 + }, + { + "sites": [ + "shopping" + ], + "task_id": 384, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List the customer names who complain about the quality of EYZUTAK phone cases", + "instantiation_dict": {}, + "intent": "List the customer names who complain about the quality of EYZUTAK phone cases", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lisa Lee, Evelyn Kurver, Amanda, N Randall" + }, + "intent_template_id": 666 + }, + { + "sites": [ + "shopping" + ], + "task_id": 385, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "instantiation_dict": {}, + "intent": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Lisa Lee, MH, Misba009, Amanda, N Randall, Amazon Customer, Cally, Bethany Robertson" + }, + "intent_template_id": 666 + }, + { + "sites": [ + "shopping" + ], + "task_id": 386, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "What is the rating of {{product}}", + "instantiation_dict": { + "product": "Ugreen lightning to 3.5mm cable" + }, + "intent": "What is the rating of Ugreen lightning to 3.5mm cable", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Around 3.1 stars" + }, + "intent_template_id": 1355 + }, + { + "sites": [ + "shopping" + ], + "task_id": 387, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Who gave {{stars}} for phone cases from EYZUTAK", + "instantiation_dict": { + "stars": "4 or 5 stars" + }, + "intent": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "MH, Misba009, Amanda, Amazon Customer, Cally, Bethany Robertson, Bethany Robertson" + }, + "intent_template_id": 1356 + }, + { + "sites": [ + "shopping" + ], + "task_id": 388, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Who gave {{stars}} for phone cases from EYZUTAK", + "instantiation_dict": { + "stars": "1 or 2 stars" + }, + "intent": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_must_include": [ + "Evelyn Kurver", + "N Randall" + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Evelyn Kurver, N Randall" + }, + "intent_template_id": 1356 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 389, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Post \"{{content}}\" for the merge request related to {{mr}} in {{repo}} project", + "instantiation_dict": { + "mr": "octovisuals page", + "repo": "primer/design", + "content": "Thanks, working on reviews" + }, + "intent": "Post \"Thanks, working on reviews\" for the merge request related to octovisuals page in primer/design project", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/primer/design/-/merge_requests/450", + "locator": "", + "required_contents": { + "must_include": [ + "Thanks, working on reviews" + ] + } + } + ] + }, + "intent_template_id": 348 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 390, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Post \"{{content}}\" for the merge request related to {{mr}} in {{repo}} project", + "instantiation_dict": { + "mr": "semantic HTML post", + "repo": "a11yproject/a11yproject.com", + "content": "lgtm" + }, + "intent": "Post \"lgtm\" for the merge request related to semantic HTML post in a11yproject/a11yproject.com project", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests/1531", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "lgtm" + } + } + ] + }, + "intent_template_id": 348 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 391, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Post \"{{content}}\" for the merge request related to {{mr}} in {{repo}} project", + "instantiation_dict": { + "mr": "focus edge cases", + "repo": "a11yproject/a11yproject.com", + "content": "close because non reproducible" + }, + "intent": "Post \"close because non reproducible\" for the merge request related to focus edge cases in a11yproject/a11yproject.com project", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests/1265", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "close because non reproducible" + } + } + ] + }, + "intent_template_id": 348 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 392, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Post \"{{content}}\" for the merge request related to {{mr}} in {{repo}} project", + "instantiation_dict": { + "mr": "color ulitity", + "repo": "a11yproject.com", + "content": "Good idea" + }, + "intent": "Post \"Good idea\" for the merge request related to color ulitity in a11yproject.com project", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests/1071", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "Good idea" + } + } + ] + }, + "intent_template_id": 348 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 393, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Post \"{{content}}\" for the merge request related to {{mr}} in {{repo}} project", + "instantiation_dict": { + "mr": "fixing the broken links", + "repo": "byteblaze/empathy-prompts", + "content": "lgtm" + }, + "intent": "Post \"lgtm\" for the merge request related to fixing the broken links in byteblaze/empathy-prompts project", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/empathy-prompts/-/merge_requests/19", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "lgtm" + } + } + ] + }, + "intent_template_id": 348 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 394, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "2019-nCov" + }, + "intent": "Fork 2019-nCov.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/2019-nCov", + "locator": "", + "required_contents": { + "must_include": [ + "2019-nCov" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 395, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "the Pytorch GAN repo with most stars" + }, + "intent": "Fork the Pytorch GAN repo with most stars.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/PyTorch-GAN", + "locator": "", + "required_contents": { + "must_include": [ + "Pytorch-GAN" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 396, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "ChatGPT" + }, + "intent": "Fork ChatGPT.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/ChatGPT", + "locator": "", + "required_contents": { + "must_include": [ + "ChatGPT" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 397, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "MetaSeq" + }, + "intent": "Fork MetaSeq.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/metaseq", + "locator": "", + "required_contents": { + "must_include": [ + "metaseq" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 398, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "all source repos from Akilesh Kannan" + }, + "intent": "Fork all source repos from Akilesh Kannan.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/SimCache", + "locator": "", + "required_contents": { + "must_include": [ + "SimCache" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/dots", + "locator": "", + "required_contents": { + "must_include": [ + "dots" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/CacheEval", + "locator": "", + "required_contents": { + "must_include": [ + "CacheEval" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/nvidia-patch", + "locator": "", + "required_contents": { + "must_include": [ + "404" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/viewgrades-scraper", + "locator": "", + "required_contents": { + "must_include": [ + "404" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "reddit" + ], + "task_id": 399, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Change my reddit bio to \"{{content}}\"", + "instantiation_dict": { + "content": "I am a robot" + }, + "intent": "Change my reddit bio to \"I am a robot\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/user/MarvelsGrantMan136", + "locator": "document.querySelector(\".user-bio__biography\").outerText", + "required_contents": { + "exact_match": "I am a robot" + } + } + ] + }, + "intent_template_id": 6 + }, + { + "sites": [ + "reddit" + ], + "task_id": 400, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Change my reddit bio to \"{{content}}\"", + "instantiation_dict": { + "content": "Pro Python Developer with 20 years of Experience" + }, + "intent": "Change my reddit bio to \"Pro Python Developer with 20 years of Experience\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/user/MarvelsGrantMan136", + "locator": "document.querySelector(\".user-bio__biography\").outerText", + "required_contents": { + "exact_match": "Pro Python Developer with 20 years of Experience" + } + } + ] + }, + "intent_template_id": 6 + }, + { + "sites": [ + "reddit" + ], + "task_id": 401, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Change my reddit bio to \"{{content}}\"", + "instantiation_dict": { + "content": "Seeking SDE positions" + }, + "intent": "Change my reddit bio to \"Seeking SDE positions\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/user/MarvelsGrantMan136", + "locator": "document.querySelector(\".user-bio__biography\").outerText", + "required_contents": { + "exact_match": "Seeking SDE positions" + } + } + ] + }, + "intent_template_id": 6 + }, + { + "sites": [ + "reddit" + ], + "task_id": 402, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Change my reddit bio to \"{{content}}\"", + "instantiation_dict": { + "content": "Freelance Web Developer" + }, + "intent": "Change my reddit bio to \"Freelance Web Developer\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/user/MarvelsGrantMan136", + "locator": "document.querySelector(\".user-bio__biography\").outerText", + "required_contents": { + "exact_match": "Freelance Web Developer" + } + } + ] + }, + "intent_template_id": 6 + }, + { + "sites": [ + "reddit" + ], + "task_id": 403, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Change my reddit bio to \"{{content}}\"", + "instantiation_dict": { + "content": "Awesome Prompt Artist" + }, + "intent": "Change my reddit bio to \"Awesome Prompt Artist\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/user/MarvelsGrantMan136", + "locator": "document.querySelector(\".user-bio__biography\").outerText", + "required_contents": { + "exact_match": "Awesome Prompt Artist" + } + } + ] + }, + "intent_template_id": 6 + }, + { + "sites": [ + "reddit" + ], + "task_id": 404, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Upvote the newest post in {{subreddit}} subreddit", + "instantiation_dict": { + "subreddit": "books" + }, + "intent": "Upvote the newest post in books subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/books/124260/adults-reading-to-each-other-out-loud", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 22 + }, + { + "sites": [ + "reddit" + ], + "task_id": 405, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Upvote the newest post in {{subreddit}} subreddit", + "instantiation_dict": { + "subreddit": "DIY" + }, + "intent": "Upvote the newest post in DIY subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/DIY/119019/how-can-i-bring-an-hdmi-cable-from-my-pc-downstairs-to-my-tv", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 22 + }, + { + "sites": [ + "reddit" + ], + "task_id": 406, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Upvote the newest post in {{subreddit}} subreddit", + "instantiation_dict": { + "subreddit": "future technology" + }, + "intent": "Upvote the newest post in future technology subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/Futurology/119517/openai-ceo-it-s-not-funny-that-i-m-afraid-of-the-ai-we-re", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 22 + }, + { + "sites": [ + "reddit" + ], + "task_id": 407, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Upvote the newest post in {{subreddit}} subreddit", + "instantiation_dict": { + "subreddit": "deeplearning" + }, + "intent": "Upvote the newest post in deeplearning subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/deeplearning/124993/meta-s-llama-weights-leaked-on-torrent-and-the-best-thing", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 22 + }, + { + "sites": [ + "reddit" + ], + "task_id": 408, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Upvote the newest post in {{subreddit}} subreddit", + "instantiation_dict": { + "subreddit": "explain like im 5" + }, + "intent": "Upvote the newest post in explain like im 5 subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/explainlikeimfive/39244/eli5-how-does-pinching-a-ribbon-and-sliding-your-finger", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 22 + }, + { + "sites": [ + "reddit" + ], + "task_id": 409, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/books/59421/friendly-reminder-bookshop-org-exists", + "geolocation": null, + "intent_template": "Reply to {{position_description}} in this post with \"{{content_description}}\"", + "instantiation_dict": { + "position_description": "the manager of the website", + "content_description": "thanks! I am a big fan of your website." + }, + "intent": "Reply to the manager of the website in this post with \"thanks! I am a big fan of your website.\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/books/59421/-/comment/1235250", + "locator": "", + "required_contents": { + "must_include": [ + "thanks! I am a big fan of your website." + ] + } + } + ] + }, + "intent_template_id": 23 + }, + { + "sites": [ + "reddit" + ], + "task_id": 410, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/singularity/69404/this-is-how-chatgpt-sees-itself", + "geolocation": null, + "intent_template": "Reply to {{position_description}} in this post with \"{{content_description}}\"", + "instantiation_dict": { + "position_description": "the first reply", + "content_description": "don't panic" + }, + "intent": "Reply to the first reply in this post with \"don't panic\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/singularity/69404/-/comment/1042264", + "locator": "", + "required_contents": { + "must_include": [ + "don't panic" + ] + } + } + ] + }, + "intent_template_id": 23 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 411, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make the LICENSE of {{repo}} to MIT license.", + "instantiation_dict": { + "repo": "byteblaze/cloud-to-butt" + }, + "intent": "Make the LICENSE of byteblaze/cloud-to-butt to MIT license.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/cloud-to-butt/-/blob/master/LICENSE.txt", + "locator": "", + "required_contents": { + "must_include": [ + "MIT license" + ] + } + } + ] + }, + "intent_template_id": 355 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 412, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make the LICENSE of {{repo}} to Apache License", + "instantiation_dict": { + "repo": "byteblaze/accessible-html-content-patterns" + }, + "intent": "Make the LICENSE of byteblaze/accessible-html-content-patterns to Apache License", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/accessible-html-content-patterns/-/blob/main/LICENSE", + "locator": "", + "required_contents": { + "must_include": [ + "Apache License", + "http://www.apache.org/licenses/LICENSE-2.0" + ] + } + } + ] + }, + "intent_template_id": 355 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 413, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make the LICENSE of {{repo}} to one that mandates all copies and derivative works to be under the same license", + "instantiation_dict": { + "repo": "byteblaze/a11y-syntax-highlighting" + }, + "intent": "Make the LICENSE of byteblaze/a11y-syntax-highlighting to one that mandates all copies and derivative works to be under the same license", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/a11y-syntax-highlighting/-/blob/main/LICENSE", + "locator": "", + "required_contents": { + "must_include": [ + "GENERAL PUBLIC LICENSE" + ] + } + } + ] + }, + "intent_template_id": 355 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 414, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make the LICENSE of {{repo}} to MIT license.", + "instantiation_dict": { + "repo": "byteblaze/dotfiles" + }, + "intent": "Make the LICENSE of byteblaze/dotfiles to MIT license.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/blob/main/LICENSE", + "locator": "", + "required_contents": { + "must_include": [ + "MIT license", + "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software." + ] + } + } + ] + }, + "intent_template_id": 355 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 415, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Go to the merge request on {{topic}} I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "instantiation_dict": { + "topic": "verification functions" + }, + "intent": "Go to the merge request on verification functions I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/a11y-webring.club/-/merge_requests/40", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "@davepgreene" + } + } + ] + }, + "intent_template_id": 360 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 416, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Go to the merge request on {{topic}} I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "instantiation_dict": { + "topic": "wcag" + }, + "intent": "Go to the merge request on wcag I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests/1270", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "Thank you" + } + } + ] + }, + "intent_template_id": 360 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 417, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Go to the merge request on {{topic}} I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "instantiation_dict": { + "topic": "404 link" + }, + "intent": "Go to the merge request on 404 link I have to review, find if the author of the merge request responded at the end, and reply \"Thank you\" if he did. Otherwise remind him with a simple @.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests/1485", + "locator": "document.querySelector('[id=\"notes-list\"').lastElementChild.querySelector('.timeline-discussion-body').outerText", + "required_contents": { + "exact_match": "@Roshanjossey" + } + } + ] + }, + "intent_template_id": 360 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 418, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set my gitlab status as {{status}}.", + "instantiation_dict": { + "status": "Busy" + }, + "intent": "Set my gitlab status as Busy.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.cover-status').lastChild.textContent", + "required_contents": { + "exact_match": "Busy" + } + } + ] + }, + "intent_template_id": 361 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 419, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set my gitlab status as {{status}}.", + "instantiation_dict": { + "status": "Enjoying life" + }, + "intent": "Set my gitlab status as Enjoying life.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.cover-status').lastChild.textContent", + "required_contents": { + "exact_match": "Enjoying life" + } + } + ] + }, + "intent_template_id": 361 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 420, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set my gitlab status as {{status}}.", + "instantiation_dict": { + "status": "Playing Badminton" + }, + "intent": "Set my gitlab status as Playing Badminton.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.cover-status').lastChild.textContent", + "required_contents": { + "exact_match": "Playing Badminton" + } + } + ] + }, + "intent_template_id": 361 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 421, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set my gitlab status as {{status}}.", + "instantiation_dict": { + "status": "Resting due to leg injury" + }, + "intent": "Set my gitlab status as Resting due to leg injury.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.cover-status').lastChild.textContent", + "required_contents": { + "exact_match": "Resting due to leg injury" + } + } + ] + }, + "intent_template_id": 361 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 422, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set my gitlab status as {{status}}.", + "instantiation_dict": { + "status": "Out of Office" + }, + "intent": "Set my gitlab status as Out of Office.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.cover-status').lastChild.textContent", + "required_contents": { + "exact_match": "Out of Office" + } + } + ] + }, + "intent_template_id": 361 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 423, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Mark all {{brand}} shirts on sale", + "instantiation_dict": { + "brand": "Hollister" + }, + "intent": "Mark all Hollister shirts on sale", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/126/", + "locator": "document.querySelector('input[name=\"product[sale]\"]').value", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 237 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 424, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the place where Mr. Rogers was filmed" + }, + "intent": "Find the page of the place where Mr. Rogers was filmed on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Pittsburgh" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 425, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the longest bridge between anchorages in the Western hemisphere" + }, + "intent": "Find the page of the longest bridge between anchorages in the Western hemisphere on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Mackinac Bridge" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 426, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the place in Pennsylvania where a plane crashed during the September 11th attacks" + }, + "intent": "Find the page of the place in Pennsylvania where a plane crashed during the September 11th attacks on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Somerset County" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 427, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the university that has most Turning Award winners" + }, + "intent": "Find the page of the university that has most Turning Award winners on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Massachusetts Institute of Technology" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 428, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the undergrad college of the person who developed the Nash equilibrium" + }, + "intent": "Find the page of the undergrad college of the person who developed the Nash equilibrium on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Carnegie Mellon University" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 429, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the colleges where The Chair was filmed in Pittsburgh" + }, + "intent": "Find the page of the colleges where The Chair was filmed in Pittsburgh on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Chatham University" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 430, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the page of {{description}} on the map.", + "instantiation_dict": { + "description": "the college(s) where The Chair was filmed in Pennsylvania other than the ones in Pittsburgh" + }, + "intent": "Find the page of the college(s) where The Chair was filmed in Pennsylvania other than the ones in Pittsburgh on the map.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sidebar_content\"').outerText", + "required_contents": { + "must_include": [ + "Washington & Jefferson College" + ] + } + } + ] + }, + "intent_template_id": 371 + }, + { + "sites": [ + "shopping" + ], + "task_id": 431, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/tall-pink-taper-candles-4-piece-orange-colored-tapered-candles-gradient-candles-10-6-inches-tall-tie-dye-candle-set-large-dripless-long-burning-candlesticks-two-color-taper-candles-candlesticks.html |AND| __SHOPPING__/spaas-white-taper-candles-4-pack-10-inch-tall-candles-scent-free-premium-wax-candle-sticks-8-hour-long-burning-white-candlesticks-for-home-decoration-wedding-holiday-and-parties.html |AND| __SHOPPING__/white-starfish-wall-candle-sconces-set-of-2-beach-decor-ocean-themed-wall-mount-candleholders-nautical-style-beach-bathroom-decor-coastal-farmhouse-seashell-candle-holders.html", + "geolocation": null, + "intent_template": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "instantiation_dict": {}, + "intent": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/checkout/cart", + "locator": "", + "required_contents": { + "must_include": [ + "SPAAS White Taper Candles - 4 Pack |OR| 10 Inch Tall Candles, Scent-Free Premium Wax Candle Sticks |OR| 8 Hour Long Burning White Candlesticks for Home Decoration, Wedding, Holiday and Parties" + ] + } + } + ] + }, + "intent_template_id": 145 + }, + { + "sites": [ + "shopping" + ], + "task_id": 432, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/ciclon-energy-drink-regular-24-cans-8-3oz.html |AND| __SHOPPING__/v8-energy-healthy-energy-drink-steady-energy-from-black-and-green-tea-pomegranate-blueberry-8-ounce-can-pack-of-24.html", + "geolocation": null, + "intent_template": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "instantiation_dict": {}, + "intent": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/checkout/cart", + "locator": "", + "required_contents": { + "must_include": [ + "V8 +Energy, Healthy Energy Drink, Steady Energy from Black and Green Tea, Pomegranate Blueberry, 8 Ounce Can ,Pack of 24" + ] + } + } + ] + }, + "intent_template_id": 145 + }, + { + "sites": [ + "shopping" + ], + "task_id": 433, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/tazrigo-5pcs-white-dental-resin-brush-pens-dental-shaping-silicone-tooth-tool.html |AND| __SHOPPING__/stylus-pens-for-touch-screens-2-pcs-universal-stylus-2-in-1-2022-updated-touch-screen-pens-for-all-touch-screens-cell-phones-tablets-laptops-with-6-replacement-tips-4-discstips-2-fiber-tips.html", + "geolocation": null, + "intent_template": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "instantiation_dict": {}, + "intent": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/checkout/cart", + "locator": "", + "required_contents": { + "must_include": [ + "Tazrigo 5pcs White Dental Resin Brush Pens Dental Shaping Silicone Tooth Tool" + ] + } + } + ] + }, + "intent_template_id": 145 + }, + { + "sites": [ + "shopping" + ], + "task_id": 434, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/3-pairs-ruffle-socks-lace-ankle-socks-for-girls-frilly-socks-women-decorative.html |AND| __SHOPPING__/viviki-women-glitter-socks-ultrathin-transparent-tulle-lace-socks-no-show-ankle-crew-socks-3-pack.html", + "geolocation": null, + "intent_template": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "instantiation_dict": {}, + "intent": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/checkout/cart", + "locator": "", + "required_contents": { + "must_include": [ + "VIVIKI Women Glitter Socks Ultrathin Transparent Tulle Lace Socks - No Show Ankle Crew Socks 3 Pack" + ] + } + } + ] + }, + "intent_template_id": 145 + }, + { + "sites": [ + "shopping" + ], + "task_id": 435, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/35-ft-hdmi-cable-gearit-pro-series-hdmi-cable-35-feet-high-speed-ethernet-4k-resolution-3d-video-and-arc-audio-return-channel-hdmi-cable-white.html |AND| __SHOPPING__/dp-to-hdmi-cable-6ft-2-pack-fosmon-gold-plated-displayport-to-hdmi-cable-1080p-full-hd-for-pcs-to-hdtv-monitor-projector-with-hdmi-port.html", + "geolocation": null, + "intent_template": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "instantiation_dict": {}, + "intent": "Add the product with the lowest per unit price from my open tabs to the shopping cart", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/checkout/cart", + "locator": "", + "required_contents": { + "must_include": [ + "DP to HDMI Cable 6FT (2 Pack), Fosmon Gold Plated Displayport to HDMI Cable 1080p Full HD for PCs to HDTV, Monitor, Projector with HDMI Port" + ] + } + } + ] + }, + "intent_template_id": 145 + }, + { + "sites": [ + "shopping" + ], + "task_id": 436, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I previously ordered some {{product}} {{time}} and later cancelled. Can you reorder it for me?", + "instantiation_dict": { + "product": "a mattress foundation", + "time": "around Feb or March 2023" + }, + "intent": "I previously ordered some a mattress foundation around Feb or March 2023 and later cancelled. Can you reorder it for me?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B07DFJ5XKH" + ] + } + } + ] + }, + "intent_template_id": 156 + }, + { + "sites": [ + "shopping" + ], + "task_id": 437, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I previously ordered some {{product}} {{time}} and later cancelled. Can you reorder it for me?", + "instantiation_dict": { + "product": "a table lamp", + "time": "in May 2023" + }, + "intent": "I previously ordered some a table lamp in May 2023 and later cancelled. Can you reorder it for me?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B072XS3F6W" + ] + } + } + ] + }, + "intent_template_id": 156 + }, + { + "sites": [ + "shopping" + ], + "task_id": 438, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I previously ordered some {{product}} {{time}} and later cancelled. Can you reorder it for me?", + "instantiation_dict": { + "product": "a TV stand", + "time": "sometime around sep 2022" + }, + "intent": "I previously ordered some a TV stand sometime around sep 2022 and later cancelled. Can you reorder it for me?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B08PVHRRB7" + ] + } + } + ] + }, + "intent_template_id": 156 + }, + { + "sites": [ + "shopping" + ], + "task_id": 439, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I previously ordered some {{product}} {{time}} and later cancelled. Can you reorder it for me?", + "instantiation_dict": { + "product": "a cat t-shirt", + "time": "during 2022" + }, + "intent": "I previously ordered some a cat t-shirt during 2022 and later cancelled. Can you reorder it for me?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B0844BWS76" + ] + } + } + ] + }, + "intent_template_id": 156 + }, + { + "sites": [ + "shopping" + ], + "task_id": 440, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I previously ordered some {{product}} {{time}} and later cancelled. Can you reorder it for me?", + "instantiation_dict": { + "product": "a make up removal kit", + "time": "during summer 2022" + }, + "intent": "I previously ordered some a make up removal kit during summer 2022 and later cancelled. Can you reorder it for me?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B0738JQG6Q" + ] + } + } + ] + }, + "intent_template_id": 156 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 441, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/gimmiethat.space", + "geolocation": null, + "intent_template": "Update the project site's title to \"{{title}}\"", + "instantiation_dict": { + "title": "GIVE ME SPACE" + }, + "intent": "Update the project site's title to \"GIVE ME SPACE\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/index.html", + "locator": "", + "required_contents": { + "must_include": [ + "GIVE ME SPACE" + ] + } + } + ] + }, + "intent_template_id": 308 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 442, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/gimmiethat.space", + "geolocation": null, + "intent_template": "Update the project site's title to \"{{title}}\"", + "instantiation_dict": { + "title": "Welcome to my site" + }, + "intent": "Update the project site's title to \"Welcome to my site\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/index.html", + "locator": "", + "required_contents": { + "must_include": [ + "Welcome to my site" + ] + } + } + ] + }, + "intent_template_id": 308 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 443, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/gimmiethat.space", + "geolocation": null, + "intent_template": "Update the project site's title to \"{{title}}\"", + "instantiation_dict": { + "title": "Not an interesting site" + }, + "intent": "Update the project site's title to \"Not an interesting site\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/index.html", + "locator": "", + "required_contents": { + "must_include": [ + "Not an interesting site" + ] + } + } + ] + }, + "intent_template_id": 308 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 444, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/gimmiethat.space", + "geolocation": null, + "intent_template": "Update the project site's title to \"{{title}}\"", + "instantiation_dict": { + "title": "Title Wanted" + }, + "intent": "Update the project site's title to \"Title Wanted\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/index.html", + "locator": "", + "required_contents": { + "must_include": [ + "Title Wanted" + ] + } + } + ] + }, + "intent_template_id": 308 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 445, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/gimmiethat.space", + "geolocation": null, + "intent_template": "Update the project site's title to \"{{title}}\"", + "instantiation_dict": { + "title": "Hello" + }, + "intent": "Update the project site's title to \"Hello\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/index.html", + "locator": "", + "required_contents": { + "must_include": [ + "Hello" + ] + } + } + ] + }, + "intent_template_id": 308 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 446, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Assign the issue regarding {{issue}} in {{repo}} to {{account}}.", + "instantiation_dict": { + "repo": "a11yproject", + "issue": 404, + "account": "Roshanjossey" + }, + "intent": "Assign the issue regarding 404 in a11yproject to Roshanjossey.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=Roshanjossey", + "locator": "", + "required_contents": { + "must_include": [ + "404s, bad host, timeouts, bad urls for URLs linked from website" + ] + } + } + ] + }, + "intent_template_id": 999 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 447, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Assign the issue regarding {{issue}} in {{repo}} to {{account}}.", + "instantiation_dict": { + "repo": "a11y-webring.club", + "issue": "linking to an accessibility statement", + "account": "Rohan" + }, + "intent": "Assign the issue regarding linking to an accessibility statement in a11y-webring.club to Rohan.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=Seirdy", + "locator": "", + "required_contents": { + "must_include": [ + "linking to an accessibility statement" + ] + } + } + ] + }, + "intent_template_id": 999 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 448, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "set the homepage URL on my GitLab profile to {{url}}", + "instantiation_dict": { + "url": "https://egg.tart.com" + }, + "intent": "set the homepage URL on my GitLab profile to https://egg.tart.com", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.profile-header [itemprop=\"url\"]').outerText", + "required_contents": { + "exact_match": "egg.tart.com" + } + } + ] + }, + "intent_template_id": 331 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 449, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "set the homepage URL on my GitLab profile to {{url}}", + "instantiation_dict": { + "url": "https://helloworld.xyz" + }, + "intent": "set the homepage URL on my GitLab profile to https://helloworld.xyz", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.profile-header [itemprop=\"url\"]').outerText", + "required_contents": { + "exact_match": "helloworld.xyz" + } + } + ] + }, + "intent_template_id": 331 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 450, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "set the homepage URL on my GitLab profile to {{url}}", + "instantiation_dict": { + "url": "a11yproject.contributor.me" + }, + "intent": "set the homepage URL on my GitLab profile to a11yproject.contributor.me", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.profile-header [itemprop=\"url\"]').outerText", + "required_contents": { + "exact_match": "a11yproject.contributor.me" + } + } + ] + }, + "intent_template_id": 331 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 451, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "set the homepage URL on my GitLab profile to {{url}}", + "instantiation_dict": { + "url": "www.byteblaze.com" + }, + "intent": "set the homepage URL on my GitLab profile to www.byteblaze.com", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.profile-header [itemprop=\"url\"]').outerText", + "required_contents": { + "exact_match": "www.byteblaze.com" + } + } + ] + }, + "intent_template_id": 331 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 452, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "set the homepage URL on my GitLab profile to {{url}}", + "instantiation_dict": { + "url": "byteblaze.github.io" + }, + "intent": "set the homepage URL on my GitLab profile to byteblaze.github.io", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze", + "locator": "document.querySelector('.profile-header [itemprop=\"url\"]').outerText", + "required_contents": { + "exact_match": "byteblaze.github.io" + } + } + ] + }, + "intent_template_id": 331 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 453, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Disable {{product}} from the site, they are facing some quality issues.", + "instantiation_dict": { + "product": "Teton pullover hoodie" + }, + "intent": "Disable Teton pullover hoodie from the site, they are facing some quality issues.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/78/", + "locator": "document.querySelector('[name=\"product[status]\"').value", + "required_contents": { + "exact_match": "2" + } + } + ] + }, + "intent_template_id": 242 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 454, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Disable {{product}} from the site, they are facing some quality issues.", + "instantiation_dict": { + "product": "Ryker Tee Crew Neck" + }, + "intent": "Disable Ryker Tee Crew Neck from the site, they are facing some quality issues.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/478/", + "locator": "document.querySelector('[name=\"product[status]\"').value", + "required_contents": { + "exact_match": "2" + } + } + ] + }, + "intent_template_id": 242 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 455, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Disable {{product}} from the site, they are facing some quality issues.", + "instantiation_dict": { + "product": "lHelios Endurance Tank" + }, + "intent": "Disable lHelios Endurance Tank from the site, they are facing some quality issues.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/676/", + "locator": "document.querySelector('[name=\"product[status]\"').value", + "required_contents": { + "exact_match": "2" + } + } + ] + }, + "intent_template_id": 242 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 456, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Disable {{product}} from the site, they are facing some quality issues.", + "instantiation_dict": { + "product": "Cora Pant" + }, + "intent": "Disable Cora Pant from the site, they are facing some quality issues.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1840/", + "locator": "document.querySelector('[name=\"product[status]\"').value", + "required_contents": { + "exact_match": "2" + } + } + ] + }, + "intent_template_id": 242 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 457, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Disable {{product}} from the site, they are facing some quality issues.", + "instantiation_dict": { + "product": "Karmen yoga pants" + }, + "intent": "Disable Karmen yoga pants from the site, they are facing some quality issues.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1819/", + "locator": "document.querySelector('[name=\"product[status]\"').value", + "required_contents": { + "exact_match": "2" + } + } + ] + }, + "intent_template_id": 242 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 458, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1481/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "$5", + "action": "Reduce" + }, + "intent": "Reduce the price of this product by $5", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1481/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "27.00" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 459, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/237/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "10%", + "action": "Reduce" + }, + "intent": "Reduce the price of this product by 10%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/237/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "62.10" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 460, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/418/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "15%", + "action": "Reduce" + }, + "intent": "Reduce the price of this product by 15%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/418/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "38.25" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 461, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/721/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "$11.5", + "action": "Increase" + }, + "intent": "Increase the price of this product by $11.5", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/721/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "29.50" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 462, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/710/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "10%", + "action": "Increase" + }, + "intent": "Increase the price of this product by 10%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/710/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "19.80" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 463, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/996/", + "geolocation": null, + "intent_template": "{{action}} the price of this product by {{amount}}", + "instantiation_dict": { + "amount": "15%", + "action": "Increase" + }, + "intent": "Increase the price of this product by 15%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/996/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "36.80" + } + } + ] + }, + "intent_template_id": 247 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 464, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update the product description of {{product}} to highlight the real user positive reviews by quoting the comments", + "instantiation_dict": { + "product": "Antonia Racer Tank" + }, + "intent": "Update the product description of Antonia Racer Tank to highlight the real user positive reviews by quoting the comments", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/../antonia-racer-tank.html", + "locator": "document.querySelector('.data.item.content').outerText + (document.querySelector('.product.attribute.overview [itemprop=\"description\"]')?.outerText || '')", + "required_contents": { + "must_include": [ + "This is in regular rotation at the gym", + "Its colorful and looks kinda cute under my exercise tanks", + "it's very stylish for yoga or something else low impact" + ] + } + } + ] + }, + "intent_template_id": 251 + }, + { + "sites": [ + "shopping" + ], + "task_id": 465, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add {{product}} to my wish list", + "instantiation_dict": { + "product": "Tide PODS Spring Meadow Scent HE Turbo Laundry Detergent Pacs, 81 Count" + }, + "intent": "Add Tide PODS Spring Meadow Scent HE Turbo Laundry Detergent Pacs, 81 Count to my wish list", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Tide PODS Spring Meadow Scent HE Turbo Laundry Detergent Pacs, 81 Count" + ] + } + } + ] + }, + "intent_template_id": 186 + }, + { + "sites": [ + "shopping" + ], + "task_id": 466, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add {{product}} to my wish list", + "instantiation_dict": { + "product": "2 Hawaiian Bamboo Orchid Roots #zc50 - by Discount Hawaiian Gifts" + }, + "intent": "Add 2 Hawaiian Bamboo Orchid Roots #zc50 - by Discount Hawaiian Gifts to my wish list", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "2 Hawaiian Bamboo Orchid Roots #zc50 - by Discount Hawaiian Gifts" + ] + } + } + ] + }, + "intent_template_id": 186 + }, + { + "sites": [ + "shopping" + ], + "task_id": 467, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add {{product}} to my wish list", + "instantiation_dict": { + "product": "HONGJ Hawaiian Beach Outfits Set for Mens, Summer Tropical Tree Printed Relaxed-fit Hawaii Shirts Shorts 2 Piece Suits" + }, + "intent": "Add HONGJ Hawaiian Beach Outfits Set for Mens, Summer Tropical Tree Printed Relaxed-fit Hawaii Shirts Shorts 2 Piece Suits to my wish list", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "HONGJ Hawaiian Beach Outfits Set for Mens, Summer Tropical Tree Printed Relaxed-fit Hawaii Shirts Shorts 2 Piece Suits" + ] + } + } + ] + }, + "intent_template_id": 186 + }, + { + "sites": [ + "shopping" + ], + "task_id": 468, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add {{product}} to my wish list", + "instantiation_dict": { + "product": "DkRgVNY Lace Spcling Lingerie Womens Sexy Hollow Out Underwear Bodysuit One Piece Snap Crotch Clubwear Teddy Bodysuit" + }, + "intent": "Add DkRgVNY Lace Spcling Lingerie Womens Sexy Hollow Out Underwear Bodysuit One Piece Snap Crotch Clubwear Teddy Bodysuit to my wish list", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "DkRgVNY Lace Spcling Lingerie Womens Sexy Hollow Out Underwear Bodysuit One Piece Snap Crotch Clubwear Teddy Bodysuit" + ] + } + } + ] + }, + "intent_template_id": 186 + }, + { + "sites": [ + "shopping" + ], + "task_id": 469, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add {{product}} to my wish list", + "instantiation_dict": { + "product": "Light Blue Simple Summer New Low Heels Slippers for Women Fashion Chunky Heels Pointed Toe Wine Glasses Sandals Comfortable Walking Shoes Ladies All-Match Sexy Party Shoes" + }, + "intent": "Add Light Blue Simple Summer New Low Heels Slippers for Women Fashion Chunky Heels Pointed Toe Wine Glasses Sandals Comfortable Walking Shoes Ladies All-Match Sexy Party Shoes to my wish list", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Light Blue Simple Summer New Low Heels Slippers for Women Fashion Chunky Heels Pointed Toe Wine Glasses Sandals Comfortable Walking Shoes Ladies All-Match Sexy Party Shoes" + ] + } + } + ] + }, + "intent_template_id": 186 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 470, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Cancel order {{id}}", + "instantiation_dict": { + "id": "302" + }, + "intent": "Cancel order 302", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/302/", + "locator": "document.querySelector(\"#order_status\").outerText", + "required_contents": { + "exact_match": "Canceled" + } + } + ] + }, + "intent_template_id": 257 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 471, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Cancel order {{id}}", + "instantiation_dict": { + "id": "307" + }, + "intent": "Cancel order 307", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/307/", + "locator": "document.querySelector(\"#order_status\").outerText", + "required_contents": { + "exact_match": "Canceled" + } + } + ] + }, + "intent_template_id": 257 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 472, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Cancel order {{id}}", + "instantiation_dict": { + "id": "299" + }, + "intent": "Cancel order 299", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/299/", + "locator": "document.querySelector(\"#order_status\").outerText", + "required_contents": { + "exact_match": "Canceled" + } + } + ] + }, + "intent_template_id": 257 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 473, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Cancel order {{id}}", + "instantiation_dict": { + "id": "301" + }, + "intent": "Cancel order 301", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/301/", + "locator": "document.querySelector(\"#order_status\").outerText", + "required_contents": { + "exact_match": "Canceled" + } + } + ] + }, + "intent_template_id": 257 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 474, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Cancel order {{id}}", + "instantiation_dict": { + "id": "305" + }, + "intent": "Cancel order 305", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/305/", + "locator": "document.querySelector(\"#order_status\").outerText", + "required_contents": { + "exact_match": "Canceled" + } + } + ] + }, + "intent_template_id": 257 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 475, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set up a new, empty repository with the name {{project_name}}?", + "instantiation_dict": { + "project_name": "chatgpt_plugin" + }, + "intent": "Set up a new, empty repository with the name chatgpt_plugin?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/chatgpt_plugin", + "locator": "", + "required_contents": { + "must_include": [ + "chatgpt_plugin" + ] + } + } + ] + }, + "intent_template_id": 292 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 476, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set up a new, empty repository with the name {{project_name}}?", + "instantiation_dict": { + "project_name": "awesome_llm_reading" + }, + "intent": "Set up a new, empty repository with the name awesome_llm_reading?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/awesome_llm_reading", + "locator": "", + "required_contents": { + "must_include": [ + "awesome_llm_reading" + ] + } + } + ] + }, + "intent_template_id": 292 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 477, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set up a new, empty repository with the name {{project_name}}?", + "instantiation_dict": { + "project_name": "awesome_program_aided_reasoning" + }, + "intent": "Set up a new, empty repository with the name awesome_program_aided_reasoning?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/awesome_program_aided_reasoning", + "locator": "", + "required_contents": { + "must_include": [ + "awesome_program_aided_reasoning" + ] + } + } + ] + }, + "intent_template_id": 292 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 478, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set up a new, empty repository with the name {{project_name}}?", + "instantiation_dict": { + "project_name": "webagent" + }, + "intent": "Set up a new, empty repository with the name webagent?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/webagent", + "locator": "", + "required_contents": { + "must_include": [ + "webagent" + ] + } + } + ] + }, + "intent_template_id": 292 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 479, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Set up a new, empty repository with the name {{project_name}}?", + "instantiation_dict": { + "project_name": "awesome_webagent" + }, + "intent": "Set up a new, empty repository with the name awesome_webagent?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/awesome_webagent", + "locator": "", + "required_contents": { + "must_include": [ + "awesome_webagent" + ] + } + } + ] + }, + "intent_template_id": 292 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 480, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Invite {{collaborator_account_list}} as collaborator to {{repo}}", + "instantiation_dict": { + "collaborator_account_list": "yjlou", + "repo": "solarized-prism-theme" + }, + "intent": "Invite yjlou as collaborator to solarized-prism-theme", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/solarized-prism-theme/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "yjlou" + ] + } + } + ] + }, + "intent_template_id": 293 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 481, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "{{name}} wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "instantiation_dict": { + "name": "Abishek" + }, + "intent": "Abishek wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'abisubramanya27')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 294 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 482, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "{{name}} wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "instantiation_dict": { + "name": "yjlou" + }, + "intent": "yjlou wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'yjlou')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 294 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 483, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "{{name}} wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "instantiation_dict": { + "name": "Koushik" + }, + "intent": "Koushik wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'koush')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 294 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 484, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "{{name}} wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "instantiation_dict": { + "name": "Jakub Klinkovsk\u00fd" + }, + "intent": "Jakub Klinkovsk\u00fd wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'lahwaacz')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 294 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 485, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "{{name}} wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "instantiation_dict": { + "name": "Vinta" + }, + "intent": "Vinta wants to check my dotfile configurations. Please invite him to the repo as a guest.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/dotfiles/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'vinta')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 294 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 486, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Change the page title of \"{{old-heading}}\" page on my site to \"{{heading}}\".", + "instantiation_dict": { + "old-heading": "404 Not Found", + "heading": "Bruh bro you clicked the wrong page" + }, + "intent": "Change the page title of \"404 Not Found\" page on my site to \"Bruh bro you clicked the wrong page\".", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/cms/page/edit/page_id/1/", + "locator": "document.querySelector('input[name=\"title\"').value", + "required_contents": { + "exact_match": "Bruh bro you clicked the wrong page" + } + } + ] + }, + "intent_template_id": 275 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 487, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Change the page title of \"{{old-heading}}\" page on my site to \"{{heading}}\".", + "instantiation_dict": { + "old-heading": "Enable Cookies", + "heading": "Cookie monster coming to your place" + }, + "intent": "Change the page title of \"Enable Cookies\" page on my site to \"Cookie monster coming to your place\".", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/cms/page/edit/page_id/3/", + "locator": "document.querySelector('input[name=\"title\"').value", + "required_contents": { + "exact_match": "Cookie monster coming to your place" + } + } + ] + }, + "intent_template_id": 275 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 488, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Change the page title of \"{{old-heading}}\" page on my site to \"{{heading}}\".", + "instantiation_dict": { + "old-heading": "Home Page", + "heading": "This is the home page!! Leave here!!" + }, + "intent": "Change the page title of \"Home Page\" page on my site to \"This is the home page!! Leave here!!\".", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/cms/page/edit/page_id/2/", + "locator": "document.querySelector('input[name=\"title\"').value", + "required_contents": { + "exact_match": "This is the home page!! Leave here!!" + } + } + ] + }, + "intent_template_id": 275 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 489, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Change the page title of \"{{old-heading}}\" page on my site to \"{{heading}}\".", + "instantiation_dict": { + "old-heading": "Privacy Policy", + "heading": "No privacy policy is needed is this dystopian world" + }, + "intent": "Change the page title of \"Privacy Policy\" page on my site to \"No privacy policy is needed is this dystopian world\".", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/cms/page/edit/page_id/4/", + "locator": "document.querySelector('input[name=\"title\"').value", + "required_contents": { + "exact_match": "No privacy policy is needed is this dystopian world" + } + } + ] + }, + "intent_template_id": 275 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 490, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Change the page title of \"{{old-heading}}\" page on my site to \"{{heading}}\".", + "instantiation_dict": { + "old-heading": "About us", + "heading": "Secret" + }, + "intent": "Change the page title of \"About us\" page on my site to \"Secret\".", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/cms/page/edit/page_id/5/", + "locator": "document.querySelector('input[name=\"title\"').value", + "required_contents": { + "exact_match": "Secret" + } + } + ] + }, + "intent_template_id": 275 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 491, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Notify {{name}} in their most recent pending order with message \"{{message}}\"", + "instantiation_dict": { + "name": "Sarah Miller", + "message": "the order is ready to be shipped soon!" + }, + "intent": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent." + }, + "reference_url": "", + "program_html": [], + "string_note": "" + }, + "intent_template_id": 280 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 492, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Notify {{name}} in their most recent pending order with message \"{{message}}\"", + "instantiation_dict": { + "name": "Jane Doe", + "message": "sorry we are out of stock, please reorder" + }, + "intent": "Notify Jane Doe in their most recent pending order with message \"sorry we are out of stock, please reorder\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/302/", + "locator": "document.querySelector(\"#order_history_block\").querySelector(\".note-list\").firstElementChild.querySelector(\".note-list-comment\").outerText", + "required_contents": { + "exact_match": "sorry we are out of stock, please reorder" + } + } + ] + }, + "intent_template_id": 280 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 493, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Notify {{name}} in their most recent pending order with message \"{{message}}\"", + "instantiation_dict": { + "name": "Grace Nguyen", + "message": "sorry we are bankrupt, please contact our customer service for refund" + }, + "intent": "Notify Grace Nguyen in their most recent pending order with message \"sorry we are bankrupt, please contact our customer service for refund\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/307/", + "locator": "document.querySelector(\"#order_history_block\").querySelector(\".note-list\").firstElementChild.querySelector(\".note-list-comment\").outerText", + "required_contents": { + "exact_match": "sorry we are bankrupt, please contact our customer service for refund" + } + } + ] + }, + "intent_template_id": 280 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 494, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Notify {{name}} in their most recent pending order with message \"{{message}}\"", + "instantiation_dict": { + "name": "Alex Thomas", + "message": "Yo, your order will be shipped soon!" + }, + "intent": "Notify Alex Thomas in their most recent pending order with message \"Yo, your order will be shipped soon!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/304/", + "locator": "document.querySelector(\"#order_history_block\").querySelector(\".note-list\").firstElementChild.querySelector(\".note-list-comment\").outerText", + "required_contents": { + "exact_match": "Yo, your order will be shipped soon!" + } + } + ] + }, + "intent_template_id": 280 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 495, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Notify {{name}} in their most recent pending order with message \"{{message}}\"", + "instantiation_dict": { + "name": "Lily Potter", + "message": "Thanks, your order is ready to be shipped!" + }, + "intent": "Notify Lily Potter in their most recent pending order with message \"Thanks, your order is ready to be shipped!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/303/", + "locator": "document.querySelector(\"#order_history_block\").querySelector(\".note-list\").firstElementChild.querySelector(\".note-list-comment\").outerText", + "required_contents": { + "exact_match": "Thanks, your order is ready to be shipped!" + } + } + ] + }, + "intent_template_id": 280 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 496, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update order #{{order}} with the {{service}} tracking number {{tracking}}", + "instantiation_dict": { + "tracking": "8974568499", + "order": "299", + "service": "Federal Express" + }, + "intent": "Update order #299 with the Federal Express tracking number 8974568499", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/commentsHistory/order_id/299/active_tab/order_shipments/", + "locator": "", + "required_contents": { + "must_include": [ + "Tracking number 8974568499 for Federal Express assigned" + ] + } + } + ] + }, + "intent_template_id": 284 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 497, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update order #{{order}} with the {{service}} tracking number {{tracking}}", + "instantiation_dict": { + "tracking": "24353446464", + "order": "307", + "service": "DHL" + }, + "intent": "Update order #307 with the DHL tracking number 24353446464", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/commentsHistory/order_id/307/active_tab/order_shipments/", + "locator": "", + "required_contents": { + "must_include": [ + "Tracking number 24353446464 for DHL assigned" + ] + } + } + ] + }, + "intent_template_id": 284 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 498, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update order #{{order}} with the {{service}} tracking number {{tracking}}", + "instantiation_dict": { + "tracking": "55591023930", + "order": "306", + "service": "UPS" + }, + "intent": "Update order #306 with the UPS tracking number 55591023930", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/commentsHistory/order_id/306/active_tab/order_shipments/", + "locator": "", + "required_contents": { + "must_include": [ + "Tracking number 55591023930 for United Parcel Service assigned" + ] + } + } + ] + }, + "intent_template_id": 284 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 499, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update order #{{order}} with the {{service}} tracking number {{tracking}}", + "instantiation_dict": { + "tracking": "13849373987", + "order": "304", + "service": "USPS" + }, + "intent": "Update order #304 with the USPS tracking number 13849373987", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/commentsHistory/order_id/304/active_tab/order_shipments/", + "locator": "", + "required_contents": { + "must_include": [ + "Tracking number 13849373987 for United States Postal Service assigned" + ] + } + } + ] + }, + "intent_template_id": 284 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 500, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update order #{{order}} with the {{service}} tracking number {{tracking}}", + "instantiation_dict": { + "tracking": "239028439840", + "order": "301", + "service": "DHL" + }, + "intent": "Update order #301 with the DHL tracking number 239028439840", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/commentsHistory/order_id/301/active_tab/order_shipments/", + "locator": "", + "required_contents": { + "must_include": [ + "Tracking number 239028439840 for DHL assigned" + ] + } + } + ] + }, + "intent_template_id": 284 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 501, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Make all {{product}} as out of stock", + "instantiation_dict": { + "product": "Taurus Elements Shell" + }, + "intent": "Make all Taurus Elements Shell as out of stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/350/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "0" + } + } + ] + }, + "intent_template_id": 287 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 502, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Make all {{product}} as out of stock", + "instantiation_dict": { + "product": "Gobi HeatTec Tee" + }, + "intent": "Make all Gobi HeatTec Tee as out of stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/446/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "0" + } + } + ] + }, + "intent_template_id": 287 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 503, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Make all {{product}} as out of stock", + "instantiation_dict": { + "product": "rocco gym tank" + }, + "intent": "Make all rocco gym tank as out of stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/682/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "0" + } + } + ] + }, + "intent_template_id": 287 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 504, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Make all {{product}} as out of stock", + "instantiation_dict": { + "product": "Selene yoga hoodie" + }, + "intent": "Make all Selene yoga hoodie as out of stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1108/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "0" + } + } + ] + }, + "intent_template_id": 287 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 505, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Make all {{product}} as out of stock", + "instantiation_dict": { + "product": "Aeno capri" + }, + "intent": "Make all Aeno capri as out of stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1861/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "0" + } + } + ] + }, + "intent_template_id": 287 + }, + { + "sites": [ + "shopping" + ], + "task_id": 506, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Buy the highest rated product from the {{product_category}} category within a budget {{dollar_value}}.", + "instantiation_dict": { + "product_category": "meat substitute", + "dollar_value": "between 100 and 200" + }, + "intent": "Buy the highest rated product from the meat substitute category within a budget between 100 and 200.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B01CTR3DLE" + ] + } + } + ] + }, + "intent_template_id": 172 + }, + { + "sites": [ + "shopping" + ], + "task_id": 507, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Buy the highest rated product from the {{product_category}} category within a budget {{dollar_value}}.", + "instantiation_dict": { + "product_category": "Ceiling light", + "dollar_value": "above 1000" + }, + "intent": "Buy the highest rated product from the Ceiling light category within a budget above 1000.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B07BVL3P1V" + ] + } + } + ] + }, + "intent_template_id": 172 + }, + { + "sites": [ + "shopping" + ], + "task_id": 508, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Buy the highest rated product from the {{product_category}} category within a budget {{dollar_value}}.", + "instantiation_dict": { + "product_category": "NS switch pouch", + "dollar_value": "under 60" + }, + "intent": "Buy the highest rated product from the NS switch pouch category within a budget under 60.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B07116LGP6" + ] + } + } + ] + }, + "intent_template_id": 172 + }, + { + "sites": [ + "shopping" + ], + "task_id": 509, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Buy the best rating product from \"{{category}}\" category with at least 5 reviews and the product is least expensive", + "instantiation_dict": { + "category": "Men's shoe" + }, + "intent": "Buy the best rating product from \"Men's shoe\" category with at least 5 reviews and the product is least expensive", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B01J4MM3KO" + ] + } + } + ] + }, + "intent_template_id": 216 + }, + { + "sites": [ + "shopping" + ], + "task_id": 510, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Buy the best rating product from \"{{category}}\" category with at least 5 reviews and the product is least expensive", + "instantiation_dict": { + "category": "Home Audio Speaker" + }, + "intent": "Buy the best rating product from \"Home Audio Speaker\" category with at least 5 reviews and the product is least expensive", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "func:shopping_get_latest_order_url()", + "locator": "document.querySelector(\".order-details-items.ordered\").outerText", + "required_contents": { + "must_include": [ + "B002R5ABIW" + ] + } + } + ] + }, + "intent_template_id": 216 + }, + { + "sites": [ + "shopping" + ], + "task_id": 511, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add a {{product}} to my wish list.", + "instantiation_dict": { + "product": "laundry detergent" + }, + "intent": "Add a laundry detergent to my wish list.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "laundry", + "detergent" + ] + } + } + ] + }, + "intent_template_id": 189 + }, + { + "sites": [ + "shopping" + ], + "task_id": 512, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add a {{product}} to my wish list.", + "instantiation_dict": { + "product": "toothpaste" + }, + "intent": "Add a toothpaste to my wish list.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "toothpaste" + ] + } + } + ] + }, + "intent_template_id": 189 + }, + { + "sites": [ + "shopping" + ], + "task_id": 513, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add a {{product}} to my wish list.", + "instantiation_dict": { + "product": "chair" + }, + "intent": "Add a chair to my wish list.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "chair" + ] + } + } + ] + }, + "intent_template_id": 189 + }, + { + "sites": [ + "shopping" + ], + "task_id": 514, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add a {{product}} to my wish list.", + "instantiation_dict": { + "product": "white desk" + }, + "intent": "Add a white desk to my wish list.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "white", + "desk" + ] + } + } + ] + }, + "intent_template_id": 189 + }, + { + "sites": [ + "shopping" + ], + "task_id": 515, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Add a {{product}} to my wish list.", + "instantiation_dict": { + "product": "white computer desk" + }, + "intent": "Add a white computer desk to my wish list.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "white", + "computer", + "desk" + ] + } + } + ] + }, + "intent_template_id": 189 + }, + { + "sites": [ + "shopping" + ], + "task_id": 516, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/elmwood-inn-fine-teas-orange-vanilla-caffeine-free-fruit-infusion-16-ounce-pouch.html", + "geolocation": null, + "intent_template": "Add this product to my wishlist", + "instantiation_dict": {}, + "intent": "Add this product to my wishlist", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Elmwood Inn Fine Teas, Orange Vanilla Caffeine-free Fruit Infusion, 16-Ounce Pouch" + ] + } + } + ] + }, + "intent_template_id": 196 + }, + { + "sites": [ + "shopping" + ], + "task_id": 517, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/skinit-decal-gaming-skin-compatible-with-xbox-one-s-console-and-controller-bundle-officially-licensed-nfl-baltimore-ravens-design.html", + "geolocation": null, + "intent_template": "Add this product to my wishlist", + "instantiation_dict": {}, + "intent": "Add this product to my wishlist", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Skinit Decal Gaming Skin Compatible with Xbox One S Console and Controller Bundle - Officially Licensed NFL Baltimore Ravens Design" + ] + } + } + ] + }, + "intent_template_id": 196 + }, + { + "sites": [ + "shopping" + ], + "task_id": 518, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/sceptre-e195bd-srr-19-inch-720p-led-tv-true-black-2017.html", + "geolocation": null, + "intent_template": "Add this product to my wishlist", + "instantiation_dict": {}, + "intent": "Add this product to my wishlist", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Sceptre E195BD-SRR 19-Inch 720P LED TV, True Black (2017)" + ] + } + } + ] + }, + "intent_template_id": 196 + }, + { + "sites": [ + "shopping" + ], + "task_id": 519, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/iphone-13-pro-max-case-neon-turtle-iphone-13-pro-max-cases-tempered-glass-back-soft-silicone-tpu-shock-protective-case-for-apple-iphone-13-pro-max.html", + "geolocation": null, + "intent_template": "Add this product to my wishlist", + "instantiation_dict": {}, + "intent": "Add this product to my wishlist", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "iPhone 13 Pro Max Case, Neon Turtle iPhone 13 Pro Max Cases, Tempered Glass Back+Soft Silicone TPU Shock Protective Case for Apple iPhone 13 Pro Max" + ] + } + } + ] + }, + "intent_template_id": 196 + }, + { + "sites": [ + "shopping" + ], + "task_id": 520, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__/magnetic-metal-stainless-steel-d-pads-kits-directional-pad-replacement-parts-for-xbox-one-elite-controller-elite-series-2-xbox-one-xbox-one-s-x-controller.html", + "geolocation": null, + "intent_template": "Add this product to my wishlist", + "instantiation_dict": {}, + "intent": "Add this product to my wishlist", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/wishlist/", + "locator": "document.querySelector('.products-grid.wishlist').outerText", + "required_contents": { + "must_include": [ + "Magnetic Metal Stainless Steel D-pads Kits Directional Pad Replacement Parts for Xbox One Elite Controller, Elite Series 2, Xbox One, Xbox One S/X Controller" + ] + } + } + ] + }, + "intent_template_id": 196 + }, + { + "sites": [ + "shopping" + ], + "task_id": 521, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Subscribe to the newsletter of OneStopMarket", + "instantiation_dict": {}, + "intent": "Subscribe to the newsletter of OneStopMarket", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/newsletter/manage/", + "locator": "document.querySelector('[title=\"General Subscription\"').checked.toString()", + "required_contents": { + "exact_match": "true" + } + } + ] + }, + "intent_template_id": 199 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 522, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Fork {{repo}}.", + "instantiation_dict": { + "repo": "all repos from facebook" + }, + "intent": "Fork all repos from facebook.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/projects", + "locator": "document.querySelector('[data-qa-selector=\"projects_list\"').outerText", + "required_contents": { + "must_include": [ + "create-react-app", + "buck" + ] + } + } + ] + }, + "intent_template_id": 352 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 523, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Star the top {{number}} most stared repos in Gitlab", + "instantiation_dict": { + "number": "five" + }, + "intent": "Star the top five most stared repos in Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/starred", + "locator": "", + "required_contents": { + "must_include": [ + "AndroidSlidingUpPanel", + "create-react-app", + "ffmpeg-python", + "PHP_XLSXWriter", + "AndroidAsync" + ] + } + } + ] + }, + "intent_template_id": 354 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 524, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Star the top {{number}} most stared repos in Gitlab", + "instantiation_dict": { + "number": "eight" + }, + "intent": "Star the top eight most stared repos in Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/starred", + "locator": "", + "required_contents": { + "must_include": [ + "AndroidSlidingUpPanel", + "create-react-app", + "ffmpeg-python", + "PHP_XLSXWriter", + "AndroidAsync", + "Pytorch-GAN", + "administrate", + "keycloak" + ] + } + } + ] + }, + "intent_template_id": 354 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 525, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Star the top {{number}} most stared repos in Gitlab", + "instantiation_dict": { + "number": "four" + }, + "intent": "Star the top four most stared repos in Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/starred", + "locator": "", + "required_contents": { + "must_include": [ + "AndroidSlidingUpPanel", + "create-react-app", + "ffmpeg-python", + "PHP_XLSXWriter" + ] + } + } + ] + }, + "intent_template_id": 354 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 526, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Star the top {{number}} most stared repos in Gitlab", + "instantiation_dict": { + "number": "three" + }, + "intent": "Star the top three most stared repos in Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/starred", + "locator": "", + "required_contents": { + "must_include": [ + "AndroidSlidingUpPanel", + "create-react-app", + "ffmpeg-python" + ] + } + } + ] + }, + "intent_template_id": 354 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 527, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Star the top {{number}} most stared repos in Gitlab", + "instantiation_dict": { + "number": "one" + }, + "intent": "Star the top one most stared repos in Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/starred", + "locator": "", + "required_contents": { + "must_include": [ + "AndroidSlidingUpPanel" + ] + } + } + ] + }, + "intent_template_id": 354 + }, + { + "sites": [ + "shopping" + ], + "task_id": 528, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft a refund message via their \"contact us\" form for the {{product}} I bought {{time}}. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "instantiation_dict": { + "product": "phone screen protector", + "time": "March 2023" + }, + "intent": "Draft a refund message via their \"contact us\" form for the phone screen protector I bought March 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "answer": "yes" + } + ] + } + } + ] + }, + "intent_template_id": 154 + }, + { + "sites": [ + "shopping" + ], + "task_id": 529, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft a refund message via their \"contact us\" form for the {{product}} I bought {{time}}. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "instantiation_dict": { + "product": "bluetooth speaker", + "time": "Feb 2023" + }, + "intent": "Draft a refund message via their \"contact us\" form for the bluetooth speaker I bought Feb 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "answer": "yes" + } + ] + } + } + ] + }, + "intent_template_id": 154 + }, + { + "sites": [ + "shopping" + ], + "task_id": 530, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft a refund message via their \"contact us\" form for the {{product}} I bought {{time}}. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "instantiation_dict": { + "product": "kitchen organizer", + "time": "around Feb 2023" + }, + "intent": "Draft a refund message via their \"contact us\" form for the kitchen organizer I bought around Feb 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "answer": "yes" + } + ] + } + } + ] + }, + "intent_template_id": 154 + }, + { + "sites": [ + "shopping" + ], + "task_id": 531, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft a refund message via their \"contact us\" form for the {{product}} I bought {{time}}. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "instantiation_dict": { + "product": "phone case", + "time": "March 2023" + }, + "intent": "Draft a refund message via their \"contact us\" form for the phone case I bought March 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "answer": "yes" + } + ] + } + } + ] + }, + "intent_template_id": 154 + }, + { + "sites": [ + "shopping" + ], + "task_id": 532, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft a refund message via their \"contact us\" form for the {{product}} I bought {{time}}. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "instantiation_dict": { + "product": "PS3 remote controller", + "time": "early 2023" + }, + "intent": "Draft a refund message via their \"contact us\" form for the PS3 remote controller I bought early 2023. It broke after three days of use. The shop requires the order id, the reason and the amount to refund in the message. Don't submit yet", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "answer": "yes" + } + ] + } + } + ] + }, + "intent_template_id": 154 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 533, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Follow {{account_list}} on Gitlab", + "instantiation_dict": { + "account_list": [ + "convexegg", + "yjlou" + ] + }, + "intent": "Follow ['convexegg', 'yjlou'] on Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/following", + "locator": "document.querySelector('.user-profile').outerText", + "required_contents": { + "must_include": [ + "@convexegg", + "@yjlou" + ] + } + } + ] + }, + "intent_template_id": 330 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 534, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Follow {{account_list}} on Gitlab", + "instantiation_dict": { + "account_list": [ + "Jakub Klinkovsk\u00fd", + "Koushik", + "Vinta Chen" + ] + }, + "intent": "Follow ['Jakub Klinkovsk\u00fd', 'Koushik', 'Vinta Chen'] on Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/following", + "locator": "document.querySelector('.user-profile').outerText", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@koush", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 330 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 535, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Follow {{account_list}} on Gitlab", + "instantiation_dict": { + "account_list": [ + "Jakub K", + "ghost", + "Beno\u00eet Blanchon" + ] + }, + "intent": "Follow ['Jakub K', 'ghost', 'Beno\u00eet Blanchon'] on Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/following", + "locator": "document.querySelector('.user-profile').outerText", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@ghost", + "@bblanchon" + ] + } + } + ] + }, + "intent_template_id": 330 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 536, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Follow {{account_list}} on Gitlab", + "instantiation_dict": { + "account_list": [ + "ghost", + "R1kk3r", + "Abishek" + ] + }, + "intent": "Follow ['ghost', 'R1kk3r', 'Abishek'] on Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/following", + "locator": "document.querySelector('.user-profile').outerText", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@R1kk3r", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 330 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 537, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Follow {{account_list}} on Gitlab", + "instantiation_dict": { + "account_list": [ + "Jakub Klinkovsk", + "convexegg", + "Vinta Chen", + "yjlou", + "Abishek S" + ] + }, + "intent": "Follow ['Jakub Klinkovsk', 'convexegg', 'Vinta Chen', 'yjlou', 'Abishek S'] on Gitlab", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/users/byteblaze/following", + "locator": "document.querySelector('.user-profile').outerText", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@convexegg", + "@vinta", + "@yjlou", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 330 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 538, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Modify the address of order #{{order_id}} to {{address}}", + "instantiation_dict": { + "order_id": "299", + "address": "456 Oak Avenue, Apartment 5B, New York, NY, 10001" + }, + "intent": "Modify the address of order #299 to 456 Oak Avenue, Apartment 5B, New York, NY, 10001", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/299", + "locator": "", + "required_contents": { + "must_include": [ + "456 Oak Avenue", + "Apartment 5B", + "New York", + "10001" + ] + } + } + ] + }, + "intent_template_id": 240 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 539, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Modify the address of order #{{order_id}} to {{address}}", + "instantiation_dict": { + "order_id": "65", + "address": "789 Pine Lane, San Francisco, CA, 94102" + }, + "intent": "Modify the address of order #65 to 789 Pine Lane, San Francisco, CA, 94102", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/65", + "locator": "", + "required_contents": { + "must_include": [ + "789 Pine Lane", + "San Francisco", + "California", + "94102" + ] + } + } + ] + }, + "intent_template_id": 240 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 540, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Modify the address of order #{{order_id}} to {{address}}", + "instantiation_dict": { + "order_id": "301", + "address": "321 Birch Boulevard, Suite 200, Dallas, TX, 75201" + }, + "intent": "Modify the address of order #301 to 321 Birch Boulevard, Suite 200, Dallas, TX, 75201", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/301", + "locator": "", + "required_contents": { + "must_include": [ + "321 Birch Boulevard", + "Suite 200", + "Dallas", + "Texas", + "75201" + ] + } + } + ] + }, + "intent_template_id": 240 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 541, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Modify the address of order #{{order_id}} to {{address}}", + "instantiation_dict": { + "order_id": "125", + "address": "654 Elm Drive, Apartment 12, Miami, FL, 33101" + }, + "intent": "Modify the address of order #125 to 654 Elm Drive, Apartment 12, Miami, FL, 33101", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/125", + "locator": "", + "required_contents": { + "must_include": [ + "654 Elm Drive", + "Apartment 12", + "Miami", + "Florida", + "33101" + ] + } + } + ] + }, + "intent_template_id": 240 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 542, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Modify the address of order #{{order_id}} to {{address}}", + "instantiation_dict": { + "order_id": "300", + "address": "987 Cedar Court, Los Angeles, CA, 90012" + }, + "intent": "Modify the address of order #300 to 987 Cedar Court, Los Angeles, CA, 90012", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/sales/order/view/order_id/300", + "locator": "", + "required_contents": { + "must_include": [ + "987 Cedar Court", + "Los Angeles", + "California", + "90012" + ] + } + } + ] + }, + "intent_template_id": 240 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 543, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update the product description of {{product}} to highlight the real user positive reviews by quoting the comments", + "instantiation_dict": { + "product": "Bella Tank" + }, + "intent": "Update the product description of Bella Tank to highlight the real user positive reviews by quoting the comments", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/../bella-tank.html", + "locator": "document.querySelector('.data.item.content').outerText + (document.querySelector('.product.attribute.overview [itemprop=\"description\"]')?.outerText || '')", + "required_contents": { + "must_include": [ + "Good choice for working out and stylin' enough to wear when I'm hanging with friends on hot days", + "Also washes really well", + "Always a sweet n sporty look for the gym", + "Keeps me cool and the seams don't rub up against me like some of my other tanks" + ] + } + } + ] + }, + "intent_template_id": 251 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 544, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update the description of {{product}} to highlight the real user positive reviews by quoting the comments", + "instantiation_dict": { + "product": "Selena Yoga Hoodie" + }, + "intent": "Update the description of Selena Yoga Hoodie to highlight the real user positive reviews by quoting the comments", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/../selene-yoga-hoodie.html", + "locator": "document.querySelector('.data.item.content').outerText + (document.querySelector('.product.attribute.overview [itemprop=\"description\"]')?.outerText || '')", + "required_contents": { + "must_include": [ + "I was super cold and it did the job.", + "The sleeves are definitely thicker than you realize, which is a good thing", + "really quite substantial", + "planning on buying another one of these in another color", + "the best hoodie ive ever owned" + ] + } + } + ] + }, + "intent_template_id": 251 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 545, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update the description of {{product}} to highlight the real user positive reviews by quoting the comments", + "instantiation_dict": { + "product": "Radiant Tee" + }, + "intent": "Update the description of Radiant Tee to highlight the real user positive reviews by quoting the comments", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/../radiant-tee.html", + "locator": "document.querySelector('.data.item.content').outerText + (document.querySelector('.product.attribute.overview [itemprop=\"description\"]')?.outerText || '')", + "required_contents": { + "must_include": [ + "What I rally love here is that it does the job of keeping me cool and dry", + "I'm a big guy and sweat A LOT", + "Even after a day of gulf, I'm still dry and comfortable", + "What a versatile shirt", + "Not only does it feel very soft compared to my old worn out polos, but it also does the job promised", + "I like going out after my game for drinks so I look good then too and don't need to change into something fresh" + ] + } + } + ] + }, + "intent_template_id": 251 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 546, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Update the description of {{product}} to highlight the real user positive reviews by quoting the comments", + "instantiation_dict": { + "product": "Lucia Cross-Fit Bra" + }, + "intent": "Update the description of Lucia Cross-Fit Bra to highlight the real user positive reviews by quoting the comments", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/../affirm-water-bottle.html", + "locator": "document.querySelector('.data.item.content').outerText + (document.querySelector('.product.attribute.overview [itemprop=\"description\"]')?.outerText || '')", + "required_contents": { + "must_include": [ + "Wide mouth opening makes it easy to clean" + ] + } + } + ] + }, + "intent_template_id": 251 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 547, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a new {{option}} option {{value}} to the {{base_setting}} of {{product}}", + "instantiation_dict": { + "option": "color", + "value": "brown", + "base_setting": "size S", + "product": "Phoebe Zipper Sweatshirt" + }, + "intent": "Add a new color option brown to the size S of Phoebe Zipper Sweatshirt", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1130/", + "locator": "document.querySelector('[data-index=\"configurable\"').outerText", + "required_contents": { + "must_include": [ + "Phoebe Zipper Sweatshirt-S-Brown" + ] + } + } + ] + }, + "intent_template_id": 252 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 548, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a new {{option}} {{value}} to {{base_setting}} of {{product}}", + "instantiation_dict": { + "option": "color", + "value": "blue", + "base_setting": "size S and M", + "product": "Frankie Sweatshirt" + }, + "intent": "Add a new color blue to size S and M of Frankie Sweatshirt", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/110/", + "locator": "document.querySelector('[data-index=\"configurable\"').outerText", + "required_contents": { + "must_include": [ + "Sweatshirt-M-Blue", + "Sweatshirt-S-Blue" + ] + } + } + ] + }, + "intent_template_id": 252 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 549, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a new {{option}} {{value}} to {{base_setting}} {{product}}", + "instantiation_dict": { + "option": "size", + "value": "XXXL", + "base_setting": "green", + "product": "Minerva LumaTech V-Tee" + }, + "intent": "Add a new size XXXL to green Minerva LumaTech V-Tee", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1492/", + "locator": "document.querySelector('[data-index=\"configurable\"').outerText", + "required_contents": { + "must_include": [ + "V-Tee-XXXL-Green" + ] + } + } + ] + }, + "intent_template_id": 252 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 550, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a new {{option}} {{value}} to {{base_setting}} {{product}}", + "instantiation_dict": { + "option": "size", + "value": "XXS", + "base_setting": "blue and purple", + "product": "Nona Fitness Tank" + }, + "intent": "Add a new size XXS to blue and purple Nona Fitness Tank", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1732/", + "locator": "document.querySelector('[data-index=\"configurable\"').outerText", + "required_contents": { + "must_include": [ + "Tank-XXS-Blue", + "Tank-XXS-Purple" + ] + } + } + ] + }, + "intent_template_id": 252 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 551, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add new {{option}} {{value}} to {{base_setting}} of {{product}}", + "instantiation_dict": { + "option": "size", + "value": "30 and 31", + "base_setting": "all color variants", + "product": "Diana Tights" + }, + "intent": "Add new size 30 and 31 to all color variants of Diana Tights", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1854/", + "locator": "document.querySelector('[data-index=\"configurable\"').outerText", + "required_contents": { + "must_include": [ + "Tights-30-Blue", + "Tights-30-Black", + "Tights-30-Orange", + "Tights-31-Blue", + "Tights-31-Black", + "Tights-31-Orange" + ] + } + } + ] + }, + "intent_template_id": 252 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 552, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a folder named {{directory}} in {{gitlab_repo}} repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the {{subreddit}}?", + "instantiation_dict": { + "directory": "real_space", + "subreddit": "space", + "gitlab_repo": "gimmiethat.space" + }, + "intent": "Create a folder named real_space in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the space?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/real_space/urls.txt", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/space/134164/scientists-erupt-at-nasa-gutting-funding-for-crucial-venus", + "__REDDIT__/f/space/134163/virgin-orbit-fails-to-secure-funding-will-cease-operations", + "__REDDIT__/f/space/134162/nasa-to-name-artemis-2-crew-next-week-the-first-moon", + "__REDDIT__/f/space/134161/bent-light-in-deep-space-reveals-one-of-the-biggest-black", + "__REDDIT__/f/space/134160/seti-s-new-machine-learning-algorithm-works-like-google-s" + ] + } + } + ] + }, + "intent_template_id": 84 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 553, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a folder named {{directory}} in {{gitlab_repo}} repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the {{subreddit}}?", + "instantiation_dict": { + "directory": "news", + "gitlab_repo": "gimmiethat.space", + "subreddit": "news related subreddits" + }, + "intent": "Create a folder named news in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the news related subreddits?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/news/urls.txt", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/news/129905/ohio-man-charged-for-using-molotov-cocktails-to-attack", + "__REDDIT__/f/news/129904/in-a-loss-for-fox-news-judge-allows-dominion-s-defamation", + "__REDDIT__/f/news/129903/theater-group-sues-to-block-tennessee-s-new-anti-drag-law", + "__REDDIT__/f/news/129902/andrew-tate-released-from-jail-in-romania-and-placed-under", + "__REDDIT__/f/news/129901/rare-high-risk-storm-alert-issued-for-parts-of-midwest-and" + ] + } + } + ] + }, + "intent_template_id": 84 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 554, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a folder named {{directory}} in {{gitlab_repo}} repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the {{subreddit}}?", + "instantiation_dict": { + "directory": "moive_space", + "gitlab_repo": "gimmiethat.space", + "subreddit": "movies" + }, + "intent": "Create a folder named moive_space in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the movies?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/moive_space/urls.txt", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/movies/128825/scenes-in-film-that-feel-off-or-wrong-in-some-way-and-make", + "__REDDIT__/f/movies/128824/disney-s-live-action-lilo-amp-stitch-movie-finds-its-lilo-in", + "__REDDIT__/f/movies/128823/fantastic-four-movie-gets-new-writer-with-avatar-the-way-of", + "__REDDIT__/f/movies/128822/can-someone-explain-what-made-steven-seagal-so-appealing-for", + "__REDDIT__/f/movies/128821/ban-on-fetish-sex-depictions-in-film-should-end-australia" + ] + } + } + ] + }, + "intent_template_id": 84 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 555, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a folder named {{directory}} in {{gitlab_repo}} repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the {{subreddit}}?", + "instantiation_dict": { + "directory": "funny_pic", + "gitlab_repo": "gimmiethat.space", + "subreddit": "memes" + }, + "intent": "Create a folder named funny_pic in gimmiethat.space repo. Within it, create a file named urls.txt that contains the URLs of the 5 most recent posts from the memes?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/raw/main/funny_pic/urls.txt", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/memes/127991/it-do-be-like-that-tho", + "__REDDIT__/f/memes/127990/thank-you-memers-this-wouldn-t-be-possible-without-you", + "__REDDIT__/f/memes/127989/if-you-have-no-other-choice", + "__REDDIT__/f/memes/127988/yes-yes-yes", + "__REDDIT__/f/memes/127987/shagadelic-baby" + ] + } + } + ] + }, + "intent_template_id": 84 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 556, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "nolan_honest_fans", + "topics": "movies directed by Christopher Nolan" + }, + "intent": "Create a repo named nolan_honest_fans with movies directed by Christopher Nolan in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/nolan_honest_fans/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "Following", + "Memento", + "Insomnia", + "Batman Begins", + "The Prestige", + "The Dark Knight", + "Inception", + "The Dark Knight Rises", + "Interstellar", + "Dunkirk", + "Tenet", + "Oppenheimer" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 557, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "nolan_old_fans", + "topics": "movies directed by Christopher Nolan before 2010" + }, + "intent": "Create a repo named nolan_old_fans with movies directed by Christopher Nolan before 2010 in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/nolan_old_fans/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "Following", + "Memento", + "Insomnia", + "Batman Begins", + "The Prestige", + "The Dark Knight" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 558, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "nolan_young_fans", + "topics": "movies directed by Christopher Nolan after 2010" + }, + "intent": "Create a repo named nolan_young_fans with movies directed by Christopher Nolan after 2010 in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/nolan_young_fans/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "Inception", + "The Dark Knight Rises", + "Interstellar", + "Dunkirk", + "Tenet", + "Oppenheimer" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 559, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "nolan_followers", + "topics": "career timeline of Christopher Nolan" + }, + "intent": "Create a repo named nolan_followers with career timeline of Christopher Nolan in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/nolan_followers/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "1993\u20132003: Early career and breakthrough", + "2003\u20132013: Widespread recognition", + "2014\u20132019: Established Hollywood auteur", + "2020\u2013present" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 560, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "nolan_academy_awards", + "topics": "movies that won Academy Awards by Christopher Nolan" + }, + "intent": "Create a repo named nolan_academy_awards with movies that won Academy Awards by Christopher Nolan in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/nolan_academy_awards/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "The Dark Knight", + "Inception", + "Interstellar", + "Dunkirk", + "Tenet" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "wikipedia" + ], + "task_id": 561, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a repo named {{name}} with {{topics}} in a README file", + "instantiation_dict": { + "name": "bafta_awards_nolan", + "topics": "movies that are nominated BAFTA Awards by Christopher Nolan" + }, + "intent": "Create a repo named bafta_awards_nolan with movies that are nominated BAFTA Awards by Christopher Nolan in a README file", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/bafta_awards_nolan/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "Batman Begins", + "The Dark Knight", + "Inception", + "The Dark Knight Rises", + "Interstellar", + "Dunkirk", + "Tenet" + ] + } + } + ] + }, + "intent_template_id": 87 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 562, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a repository named {{name}} that includes a README file with the links to the most active {{num}} DIY ideas on DIY subreddit?", + "instantiation_dict": { + "name": "Awesome_DIY_ideas", + "num": 6 + }, + "intent": "create a repository named Awesome_DIY_ideas that includes a README file with the links to the most active 6 DIY ideas on DIY subreddit?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/Awesome_DIY_ideas/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/DIY/118903/separate-glued-plastic-parts", + "__REDDIT__/f/DIY/118923/how-would-you-fix-this-dryer-vent-mess", + "__REDDIT__/f/DIY/118935/basement-bulkhead-soffit-wall-framing", + "__REDDIT__/f/DIY/118904/ge-water-heater-pilot-light-won-t-stay-lit", + "__REDDIT__/f/DIY/118960/attempting-to-move-a-wall-outlet-in-my-basement-a-few-inches", + "__REDDIT__/f/DIY/118931/afci-outlet-question" + ] + } + } + ] + }, + "intent_template_id": 88 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 563, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a repository named {{name}} that includes a README file with the links to the most active {{num}} DIY ideas on DIY subreddit?", + "instantiation_dict": { + "name": "fun_thing_to_do", + "num": 5 + }, + "intent": "create a repository named fun_thing_to_do that includes a README file with the links to the most active 5 DIY ideas on DIY subreddit?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/fun_thing_to_do/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/DIY/118903/separate-glued-plastic-parts", + "__REDDIT__/f/DIY/118923/how-would-you-fix-this-dryer-vent-mess", + "__REDDIT__/f/DIY/118935/basement-bulkhead-soffit-wall-framing", + "__REDDIT__/f/DIY/118904/ge-water-heater-pilot-light-won-t-stay-lit", + "__REDDIT__/f/DIY/118960/attempting-to-move-a-wall-outlet-in-my-basement-a-few-inches" + ] + } + } + ] + }, + "intent_template_id": 88 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 564, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a repository named {{name}} that includes a README file with the links to the most active {{num}} DIY ideas on DIY subreddit?", + "instantiation_dict": { + "name": "live_a_life", + "num": 3 + }, + "intent": "create a repository named live_a_life that includes a README file with the links to the most active 3 DIY ideas on DIY subreddit?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/live_a_life/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/DIY/118903/separate-glued-plastic-parts", + "__REDDIT__/f/DIY/118923/how-would-you-fix-this-dryer-vent-mess", + "__REDDIT__/f/DIY/118935/basement-bulkhead-soffit-wall-framing" + ] + } + } + ] + }, + "intent_template_id": 88 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 565, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a repository named {{name}} that includes a README file with the links to the most active {{num}} DIY ideas on DIY subreddit?", + "instantiation_dict": { + "name": "TODO", + "num": 10 + }, + "intent": "create a repository named TODO that includes a README file with the links to the most active 10 DIY ideas on DIY subreddit?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/TODO/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/DIY/118903/separate-glued-plastic-parts", + "__REDDIT__/f/DIY/118923/how-would-you-fix-this-dryer-vent-mess", + "__REDDIT__/f/DIY/118935/basement-bulkhead-soffit-wall-framing", + "__REDDIT__/f/DIY/118904/ge-water-heater-pilot-light-won-t-stay-lit", + "__REDDIT__/f/DIY/118960/attempting-to-move-a-wall-outlet-in-my-basement-a-few-inches", + "__REDDIT__/f/DIY/118931/afci-outlet-question", + "__REDDIT__/f/DIY/118824/teflon-tape-to-attach-washing-machine-drain-hose-to-pipe", + "__REDDIT__/f/DIY/118866/paver-base-for-shed", + "__REDDIT__/f/DIY/118820/ways-to-locate-our-buried-electrical-service", + "__REDDIT__/f/DIY/118836/how-to-eliminate-transitions-for-disability-mobility-reasons" + ] + } + } + ] + }, + "intent_template_id": 88 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 566, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a repository named {{name}} that includes a README file with the links to the most active {{num}} DIY ideas on DIY subreddit?", + "instantiation_dict": { + "name": "Do it myself", + "num": 8 + }, + "intent": "create a repository named Do it myself that includes a README file with the links to the most active 8 DIY ideas on DIY subreddit?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/Do-it-myself/-/raw/main/README.md", + "locator": "", + "required_contents": { + "must_include": [ + "__REDDIT__/f/DIY/118903/separate-glued-plastic-parts", + "__REDDIT__/f/DIY/118923/how-would-you-fix-this-dryer-vent-mess", + "__REDDIT__/f/DIY/118935/basement-bulkhead-soffit-wall-framing", + "__REDDIT__/f/DIY/118904/ge-water-heater-pilot-light-won-t-stay-lit", + "__REDDIT__/f/DIY/118960/attempting-to-move-a-wall-outlet-in-my-basement-a-few-inches", + "__REDDIT__/f/DIY/118931/afci-outlet-question", + "__REDDIT__/f/DIY/118824/teflon-tape-to-attach-washing-machine-drain-hose-to-pipe", + "__REDDIT__/f/DIY/118866/paver-base-for-shed" + ] + } + } + ] + }, + "intent_template_id": 88 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 567, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Invite {{collaborator_account_list}} as collaborator to {{repo}} repo", + "instantiation_dict": { + "collaborator_account_list": "Jakub Klinkovsk\u00fd and Beno\u00eet Blanchon", + "repo": "gimmiethat.space" + }, + "intent": "Invite Jakub Klinkovsk\u00fd and Beno\u00eet Blanchon as collaborator to gimmiethat.space repo", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@bblanchon" + ] + } + } + ] + }, + "intent_template_id": 293 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 568, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Invite {{collaborator_account_list}} as collaborator to {{repo}} repo", + "instantiation_dict": { + "collaborator_account_list": "Abishek and Vinta", + "repo": "a11yproject.com" + }, + "intent": "Invite Abishek and Vinta as collaborator to a11yproject.com repo", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/a11yproject/a11yproject.com/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@abisubramanya27", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 293 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 569, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Invite {{collaborator_account_list}} as collaborator to {{repo}} repo", + "instantiation_dict": { + "collaborator_account_list": "Beno\u00eet and Abishek", + "repo": "my HTML5 markup extention" + }, + "intent": "Invite Beno\u00eet and Abishek as collaborator to my HTML5 markup extention repo", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/accessible-html-content-patterns/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@bblanchon", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 293 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 570, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Invite {{collaborator_account_list}} as collaborator to {{repo}} repo", + "instantiation_dict": { + "collaborator_account_list": "Jakub K, Alex Dills, Alex Hutnik and Beno\u00eet Blanchon", + "repo": "my time tracking tool project" + }, + "intent": "Invite Jakub K, Alex Dills, Alex Hutnik and Beno\u00eet Blanchon as collaborator to my time tracking tool project repo", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/timeit/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@lahwaacz", + "@V13Axel", + "@alexhutnik", + "@bblanchon" + ] + } + } + ] + }, + "intent_template_id": 293 + }, + { + "sites": [ + "shopping" + ], + "task_id": 571, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I recently moved, my address is {{address}}, update my information on OneStopShopping accordingly", + "instantiation_dict": { + "address": "231 Willow Way, Suite 100, Chicago, IL, 60601" + }, + "intent": "I recently moved, my address is 231 Willow Way, Suite 100, Chicago, IL, 60601, update my information on OneStopShopping accordingly", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-billing > .box-content\").outerText", + "required_contents": { + "must_include": [ + "231 Willow Way", + "Suite 100", + "Chicago, Illinois, 60601" + ] + } + }, + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-shipping > .box-content\").outerText", + "required_contents": { + "must_include": [ + "231 Willow Way", + "Suite 100", + "Chicago, Illinois, 60601" + ] + } + } + ] + }, + "intent_template_id": 165 + }, + { + "sites": [ + "shopping" + ], + "task_id": 572, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I recently moved, my address is {{address}}, update my information on OneStopShopping accordingly", + "instantiation_dict": { + "address": "654 Aspen Road, House #3, Boston, MA, 02110" + }, + "intent": "I recently moved, my address is 654 Aspen Road, House #3, Boston, MA, 02110, update my information on OneStopShopping accordingly", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-billing > .box-content\").outerText", + "required_contents": { + "must_include": [ + "654 Aspen Road", + "House #3", + "Boston, Massachusetts, 02110" + ] + } + }, + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-shipping > .box-content\").outerText", + "required_contents": { + "must_include": [ + "654 Aspen Road", + "House #3", + "Boston, Massachusetts, 02110" + ] + } + } + ] + }, + "intent_template_id": 165 + }, + { + "sites": [ + "shopping" + ], + "task_id": 573, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I recently moved, my address is {{address}}, update my information on OneStopShopping accordingly", + "instantiation_dict": { + "address": "987 Sycamore Circle, Philadelphia, PA, 19102" + }, + "intent": "I recently moved, my address is 987 Sycamore Circle, Philadelphia, PA, 19102, update my information on OneStopShopping accordingly", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-shipping > .box-content\").outerText", + "required_contents": { + "must_include": [ + "987 Sycamore Circle", + "Philadelphia, Pennsylvania, 19102" + ] + } + }, + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-billing > .box-content\").outerText", + "required_contents": { + "must_include": [ + "987 Sycamore Circle", + "Philadelphia, Pennsylvania, 19102" + ] + } + } + ] + }, + "intent_template_id": 165 + }, + { + "sites": [ + "shopping" + ], + "task_id": 574, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I recently moved, my address is {{address}}, update my information on OneStopShopping accordingly", + "instantiation_dict": { + "address": "111 Magnolia Path, Atlanta, GA, 30303" + }, + "intent": "I recently moved, my address is 111 Magnolia Path, Atlanta, GA, 30303, update my information on OneStopShopping accordingly", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-shipping > .box-content\").outerText", + "required_contents": { + "must_include": [ + "111 Magnolia Path", + "Atlanta, Georgia, 30303" + ] + } + }, + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-billing > .box-content\").outerText", + "required_contents": { + "must_include": [ + "111 Magnolia Path", + "Atlanta, Georgia, 30303" + ] + } + } + ] + }, + "intent_template_id": 165 + }, + { + "sites": [ + "shopping" + ], + "task_id": 575, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "I recently moved, my address is {{address}}, update my information on OneStopShopping accordingly", + "instantiation_dict": { + "address": "222 Redwood Rise, Suite 300, Seattle, WA, 98101" + }, + "intent": "I recently moved, my address is 222 Redwood Rise, Suite 300, Seattle, WA, 98101, update my information on OneStopShopping accordingly", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-shipping > .box-content\").outerText", + "required_contents": { + "must_include": [ + "222 Redwood Rise", + "Suite 300", + "Seattle, Washington, 98101" + ] + } + }, + { + "url": "__SHOPPING__/customer/address", + "locator": "document.querySelector(\".box.box-address-billing > .box-content\").outerText", + "required_contents": { + "must_include": [ + "222 Redwood Rise", + "Suite 300", + "Seattle, Washington, 98101" + ] + } + } + ] + }, + "intent_template_id": 165 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 576, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Add the following users to repo {{repo}} as {{role}}: {{user_list}}", + "instantiation_dict": { + "repo": "a11y-webring.club", + "role": "developer", + "user_list": [ + "abisubramanya27", + "lahwaacz" + ] + }, + "intent": "Add the following users to repo a11y-webring.club as developer: ['abisubramanya27', 'lahwaacz']", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/a11y-webring.club/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'abisubramanya27')", + "required_contents": { + "must_include": [ + "Developer" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/a11y-webring.club/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'lahwaacz')", + "required_contents": { + "must_include": [ + "Developer" + ] + } + } + ] + }, + "intent_template_id": 351 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 577, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Add the following users to my {{repo}} as {{role}}: {{user_list}}", + "instantiation_dict": { + "repo": "GitHub timeline item management extension", + "role": "maintainer", + "user_list": [ + "abisubramanya27", + "lahwaacz" + ] + }, + "intent": "Add the following users to my GitHub timeline item management extension as maintainer: ['abisubramanya27', 'lahwaacz']", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/remove-board-movement-events-from-the-github-issue-timeline/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'abisubramanya27')", + "required_contents": { + "must_include": [ + "Maintainer" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/remove-board-movement-events-from-the-github-issue-timeline/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'lahwaacz')", + "required_contents": { + "must_include": [ + "Maintainer" + ] + } + } + ] + }, + "intent_template_id": 351 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 578, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Add the following users to repo {{repo}} as {{role}}: {{user_list}}", + "instantiation_dict": { + "repo": "millennials-to-snake-people", + "role": "reporter", + "user_list": [ + "yjlou", + "a11yproject" + ] + }, + "intent": "Add the following users to repo millennials-to-snake-people as reporter: ['yjlou', 'a11yproject']", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/millennials-to-snake-people/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'yjlou')", + "required_contents": { + "must_include": [ + "Reporter" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/millennials-to-snake-people/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'a11yproject')", + "required_contents": { + "must_include": [ + "Reporter" + ] + } + } + ] + }, + "intent_template_id": 351 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 579, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Add the following users to my {{repo}} as {{role}}: {{user_list}}", + "instantiation_dict": { + "repo": "time tracking tool", + "role": "guest", + "user_list": [ + "yjlou" + ] + }, + "intent": "Add the following users to my time tracking tool as guest: ['yjlou']", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/timeit/-/project_members", + "locator": "func:gitlab_get_project_memeber_role(__page__, 'yjlou')", + "required_contents": { + "must_include": [ + "Guest" + ] + } + } + ] + }, + "intent_template_id": 351 + }, + { + "sites": [ + "reddit" + ], + "task_id": 580, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a new forum named {{name}}, with a description of {{description}}, and include {{sidebar_list}} in the sidebar?", + "instantiation_dict": { + "name": "sci_fi", + "description": "A wild place for sci-fi enthusiasts", + "sidebar_list": [ + "New", + "Classic", + "Movies", + "Post my novel", + "Random" + ] + }, + "intent": "Create a new forum named sci_fi, with a description of A wild place for sci-fi enthusiasts, and include ['New', 'Classic', 'Movies', 'Post my novel', 'Random'] in the sidebar?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/sci_fi/edit", + "locator": "document.querySelector(\"#forum_description\").value", + "required_contents": { + "must_include": [ + "A wild place for sci-fi enthusiasts" + ] + } + }, + { + "url": "__REDDIT__/f/sci_fi/edit", + "locator": "document.querySelector(\"#forum_sidebar\").value", + "required_contents": { + "must_include": [ + "New", + "Classic", + "Movies", + "Post my novel", + "Random" + ] + } + } + ] + }, + "intent_template_id": 7 + }, + { + "sites": [ + "reddit" + ], + "task_id": 581, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a new forum named {{name}}, with a description of {{description}}, and include {{sidebar_list}} in the sidebar?", + "instantiation_dict": { + "name": "cmu_lti", + "description": "Language Technologies Institute at Carnegie Mellon University", + "sidebar_list": [ + "announcement", + "paper", + "alumni" + ] + }, + "intent": "Create a new forum named cmu_lti, with a description of Language Technologies Institute at Carnegie Mellon University, and include ['announcement', 'paper', 'alumni'] in the sidebar?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/cmu_lti/edit", + "locator": "document.querySelector(\"#forum_description\").value", + "required_contents": { + "must_include": [ + "Language Technologies Institute at Carnegie Mellon University" + ] + } + }, + { + "url": "__REDDIT__/f/cmu_lti/edit", + "locator": "document.querySelector(\"#forum_sidebar\").value", + "required_contents": { + "must_include": [ + "announcement", + "paper", + "alumni" + ] + } + } + ] + }, + "intent_template_id": 7 + }, + { + "sites": [ + "reddit" + ], + "task_id": 582, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a new forum named {{name}}, with a description of {{description}}, and include {{sidebar_list}} in the sidebar?", + "instantiation_dict": { + "name": "Cyberpunk", + "description": "Welcome to the future", + "sidebar_list": [ + "Games", + "Books", + "Movies", + "Future" + ] + }, + "intent": "Create a new forum named Cyberpunk, with a description of Welcome to the future, and include ['Games', 'Books', 'Movies', 'Future'] in the sidebar?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/Cyberpunk/edit", + "locator": "document.querySelector(\"#forum_description\").value", + "required_contents": { + "must_include": [ + "Welcome to the future" + ] + } + }, + { + "url": "__REDDIT__/f/Cyberpunk/edit", + "locator": "document.querySelector(\"#forum_sidebar\").value", + "required_contents": { + "must_include": [ + "Games", + "Books", + "Movies", + "Future" + ] + } + } + ] + }, + "intent_template_id": 7 + }, + { + "sites": [ + "reddit" + ], + "task_id": 583, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a new forum named {{name}}, with a description of {{description}}, and include {{sidebar_list}} in the sidebar?", + "instantiation_dict": { + "name": "PlantsForCatParents", + "description": "Cat parents & plan lovers", + "sidebar_list": [ + "Cat friendly", + "Local vendors", + "Promotion", + "Toxic plants!" + ] + }, + "intent": "Create a new forum named PlantsForCatParents, with a description of Cat parents & plan lovers, and include ['Cat friendly', 'Local vendors', 'Promotion', 'Toxic plants!'] in the sidebar?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/PlantsForCatParents/edit", + "locator": "document.querySelector(\"#forum_description\").value", + "required_contents": { + "must_include": [ + "Cat parents & plan lovers" + ] + } + }, + { + "url": "__REDDIT__/f/PlantsForCatParents/edit", + "locator": "document.querySelector(\"#forum_sidebar\").value", + "required_contents": { + "must_include": [ + "Cat friendly", + "Local vendors", + "Promotion", + "Toxic plants!" + ] + } + } + ] + }, + "intent_template_id": 7 + }, + { + "sites": [ + "reddit" + ], + "task_id": 584, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a new forum named {{name}}, with a description of {{description}}, and include {{sidebar_list}} in the sidebar?", + "instantiation_dict": { + "name": "Karaoke", + "description": "Place for Karaoke lovers", + "sidebar_list": [ + "devices", + "setup" + ] + }, + "intent": "Create a new forum named Karaoke, with a description of Place for Karaoke lovers, and include ['devices', 'setup'] in the sidebar?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/Karaoke", + "locator": "document.querySelector(\"#forum_description\").value", + "required_contents": { + "must_include": [ + "Place for Karaoke lovers" + ] + } + }, + { + "url": "__REDDIT__/f/Karaoke", + "locator": "document.querySelector(\"#forum_sidebar\").value", + "required_contents": { + "must_include": [ + "devices", + "setup" + ] + } + } + ] + }, + "intent_template_id": 7 + }, + { + "sites": [ + "shopping" + ], + "task_id": 585, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Rate my recent purchase of {{product}} with {{num_star}} stars, using my nickname {{nickname}}?", + "instantiation_dict": { + "product": "floor lamp", + "num_star": 5, + "nickname": "Emma Lopez" + }, + "intent": "Rate my recent purchase of floor lamp with 5 stars, using my nickname Emma Lopez?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_rating('B00J8RZL7I')", + "required_contents": { + "must_include": [ + "100" + ] + } + }, + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_author('B00J8RZL7I')", + "required_contents": { + "must_include": [ + "Emma Lopez" + ] + } + } + ] + }, + "intent_template_id": 194 + }, + { + "sites": [ + "shopping" + ], + "task_id": 586, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Rate my recent purchase of {{product}} with {{num_star}} stars, using my nickname {{nickname}}?", + "instantiation_dict": { + "product": "Jiffy Corn Muffin Cornbread Mix", + "num_star": 4, + "nickname": "ShoppingEmma" + }, + "intent": "Rate my recent purchase of Jiffy Corn Muffin Cornbread Mix with 4 stars, using my nickname ShoppingEmma?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_rating('B07HZB38XH')", + "required_contents": { + "must_include": [ + "80" + ] + } + }, + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_author('B07HZB38XH')", + "required_contents": { + "must_include": [ + "ShoppingEmma" + ] + } + } + ] + }, + "intent_template_id": 194 + }, + { + "sites": [ + "shopping" + ], + "task_id": 587, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Rate my recent purchase of {{product}} with {{num_star}} stars, using my nickname {{nickname}}?", + "instantiation_dict": { + "product": "PS3 Remote Controllers", + "num_star": 3, + "nickname": "GamingEmma" + }, + "intent": "Rate my recent purchase of PS3 Remote Controllers with 3 stars, using my nickname GamingEmma?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_rating('B0041MSF2S')", + "required_contents": { + "must_include": [ + "60" + ] + } + }, + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_author('B0041MSF2S')", + "required_contents": { + "must_include": [ + "GamingEmma" + ] + } + } + ] + }, + "intent_template_id": 194 + }, + { + "sites": [ + "shopping" + ], + "task_id": 588, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Rate my recent purchase of {{product}} with {{num_star}} stars, using my nickname {{nickname}}?", + "instantiation_dict": { + "product": "Foundation For Mattress With Frame Set", + "num_star": 1, + "nickname": "ShoppingEmma" + }, + "intent": "Rate my recent purchase of Foundation For Mattress With Frame Set with 1 stars, using my nickname ShoppingEmma?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_rating('B07DFJ5XKH')", + "required_contents": { + "must_include": [ + "20" + ] + } + }, + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_author('B07DFJ5XKH')", + "required_contents": { + "must_include": [ + "ShoppingEmma" + ] + } + } + ] + }, + "intent_template_id": 194 + }, + { + "sites": [ + "shopping" + ], + "task_id": 589, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Rate my recent purchase of {{product}} with {{num_star}} stars, using my nickname {{nickname}}?", + "instantiation_dict": { + "product": "Mini Wireless Bluetooth Speaker", + "num_star": 2, + "nickname": "SimpleEmma" + }, + "intent": "Rate my recent purchase of Mini Wireless Bluetooth Speaker with 2 stars, using my nickname SimpleEmma?", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_rating('B09P7BFL4H')", + "required_contents": { + "must_include": [ + "40" + ] + } + }, + { + "url": "last", + "locator": "func:shopping_get_sku_latest_review_author('B09P7BFL4H')", + "required_contents": { + "must_include": [ + "SimpleEmma" + ] + } + } + ] + }, + "intent_template_id": 194 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 590, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Create a milestone for the upcoming {{event}} starting on {{start_date}} and ending on {{end_date}}", + "instantiation_dict": { + "event": "event of product launch", + "start_date": "1/16/2023", + "end_date": "1/30/2023" + }, + "intent": "Create a milestone for the upcoming event of product launch starting on 1/16/2023 and ending on 1/30/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/milestones", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"#content-body\").outerText", + "required_contents": { + "must_include": [ + "product launch" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.start_date').outerText", + "required_contents": { + "must_include": [ + "Jan 16, 2030" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.due_date').outerText", + "required_contents": { + "must_include": [ + "Jan 30, 2030" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 339 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 591, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Create a milestone for the upcoming {{event}} starting on {{start_date}} and ending on {{end_date}}", + "instantiation_dict": { + "event": "practice of collective code review", + "start_date": "1/16/2023", + "end_date": "in 20 days" + }, + "intent": "Create a milestone for the upcoming practice of collective code review starting on 1/16/2023 and ending on in 20 days", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/milestones", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"#content-body\").outerText", + "required_contents": { + "must_include": [ + "code review" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.start_date').outerText", + "required_contents": { + "must_include": [ + "Jan 16, 2030" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.due_date').outerText", + "required_contents": { + "must_include": [ + "Feb 5, 2030" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 339 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 592, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Create a milestone for the upcoming {{event}} starting on {{start_date}} and ending on {{end_date}}", + "instantiation_dict": { + "event": "task of cleaning sensitive information", + "start_date": "2/16/2023", + "end_date": "in 20 days" + }, + "intent": "Create a milestone for the upcoming task of cleaning sensitive information starting on 2/16/2023 and ending on in 20 days", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/milestones", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"#content-body\").outerText", + "required_contents": { + "must_include": [ + "sensitive information" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.start_date').outerText", + "required_contents": { + "must_include": [ + "Feb 16, 2030" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.due_date').outerText", + "required_contents": { + "must_include": [ + "Mar 8, 2030" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 339 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 593, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/dotfiles", + "geolocation": null, + "intent_template": "Create a milestone for the upcoming {{event}} starting on {{start_date}} and ending on {{end_date}}", + "instantiation_dict": { + "event": "task of merging all branches to main", + "start_date": "March 15, 2044", + "end_date": "March 30, 2044" + }, + "intent": "Create a milestone for the upcoming task of merging all branches to main starting on March 15, 2044 and ending on March 30, 2044", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/dotfiles/-/milestones", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"#content-body\").outerText", + "required_contents": { + "must_include": [ + "all branches to main" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.start_date').outerText", + "required_contents": { + "must_include": [ + "Mar 15, 2044" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.due_date').outerText", + "required_contents": { + "must_include": [ + "Mar 30, 2044" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 339 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 594, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/dotfiles", + "geolocation": null, + "intent_template": "Create a milestone for the upcoming {{event}} starting on {{start_date}} and ending on {{end_date}}", + "instantiation_dict": { + "event": "task of adding a new branch for zsh comprehensive support", + "start_date": "5/1/2044", + "end_date": "in 20 days" + }, + "intent": "Create a milestone for the upcoming task of adding a new branch for zsh comprehensive support starting on 5/1/2044 and ending on in 20 days", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/dotfiles/-/milestones", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"#content-body\").outerText", + "required_contents": { + "must_include": [ + "zsh comprehensive support" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.start_date').outerText", + "required_contents": { + "must_include": [ + "May 1, 2044" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.due_date').outerText", + "required_contents": { + "must_include": [ + "May 21, 2044" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 339 + }, + { + "sites": [ + "reddit" + ], + "task_id": 595, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Open the thread of a trending post on the forum \"{{subreddit}}\" and subscribe.", + "instantiation_dict": { + "subreddit": "space" + }, + "intent": "Open the thread of a trending post on the forum \"space\" and subscribe.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/space", + "program_html": [ + { + "url": "__REDDIT__/", + "locator": "document.querySelector(\"#sidebar > section\").outerText", + "required_contents": { + "must_include": [ + "space" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 4 + }, + { + "sites": [ + "reddit" + ], + "task_id": 596, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Open the thread of a trending post on the forum \"{{subreddit}}\" and subscribe.", + "instantiation_dict": { + "subreddit": "books" + }, + "intent": "Open the thread of a trending post on the forum \"books\" and subscribe.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "__REDDIT__/", + "locator": "document.querySelector(\"#sidebar > section\").outerText", + "required_contents": { + "must_include": [ + "books" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 4 + }, + { + "sites": [ + "reddit" + ], + "task_id": 597, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Open the thread of a trending post on the forum \"{{subreddit}}\" and subscribe.", + "instantiation_dict": { + "subreddit": "consoles" + }, + "intent": "Open the thread of a trending post on the forum \"consoles\" and subscribe.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/consoles", + "program_html": [ + { + "url": "__REDDIT__/", + "locator": "document.querySelector(\"#sidebar > section\").outerText", + "required_contents": { + "must_include": [ + "consoles" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 4 + }, + { + "sites": [ + "reddit" + ], + "task_id": 598, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Open the thread of a trending post on the forum \"{{subreddit}}\" and subscribe.", + "instantiation_dict": { + "subreddit": "pittsburgh" + }, + "intent": "Open the thread of a trending post on the forum \"pittsburgh\" and subscribe.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/pittsburgh", + "program_html": [ + { + "url": "__REDDIT__/", + "locator": "document.querySelector(\"#sidebar > section\").outerText", + "required_contents": { + "must_include": [ + "pittsburgh" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 4 + }, + { + "sites": [ + "reddit" + ], + "task_id": 599, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Open the thread of a trending post on the forum \"{{subreddit}}\" and subscribe.", + "instantiation_dict": { + "subreddit": "machine learning" + }, + "intent": "Open the thread of a trending post on the forum \"machine learning\" and subscribe.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/MachineLearning", + "program_html": [ + { + "url": "__REDDIT__/", + "locator": "document.querySelector(\"#sidebar > section\").outerText", + "required_contents": { + "must_include": [ + "MachineLearning" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 4 + }, + { + "sites": [ + "reddit" + ], + "task_id": 600, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post my question, \"{{question}}\", in a subreddit where I'm likely to get an answer", + "instantiation_dict": { + "question": "what is the recommended console to buy these days" + }, + "intent": "Post my question, \"what is the recommended console to buy these days\", in a subreddit where I'm likely to get an answer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/consoles", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "what is the recommended console to buy these days" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 3765 + }, + { + "sites": [ + "reddit" + ], + "task_id": 601, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post my question, \"{{question}}\", in a subreddit where I'm likely to get an answer", + "instantiation_dict": { + "question": "is car necessary in NYC" + }, + "intent": "Post my question, \"is car necessary in NYC\", in a subreddit where I'm likely to get an answer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/nyc", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "is car necessary in NYC" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 3765 + }, + { + "sites": [ + "reddit" + ], + "task_id": 602, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post my question, \"{{question}}\", in a subreddit where I'm likely to get an answer", + "instantiation_dict": { + "question": "places for new drivers to learn driving in pittsburgh" + }, + "intent": "Post my question, \"places for new drivers to learn driving in pittsburgh\", in a subreddit where I'm likely to get an answer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/pittsburgh", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "places for new drivers to learn driving in pittsburgh" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 3765 + }, + { + "sites": [ + "reddit" + ], + "task_id": 603, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post my question, \"{{question}}\", in a subreddit where I'm likely to get an answer", + "instantiation_dict": { + "question": "safe and budge apartment to live in nyc" + }, + "intent": "Post my question, \"safe and budge apartment to live in nyc\", in a subreddit where I'm likely to get an answer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/nyc", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "safe and budge apartment to live in nyc" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 3765 + }, + { + "sites": [ + "reddit" + ], + "task_id": 604, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post my question, \"{{question}}\", in a subreddit where I'm likely to get an answer", + "instantiation_dict": { + "question": "what is the SOTA web navigation agent repo" + }, + "intent": "Post my question, \"what is the SOTA web navigation agent repo\", in a subreddit where I'm likely to get an answer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/deeplearning |OR| __REDDIT__/f/MachineLearning |OR| __REDDIT__/f/singularity", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "what is the SOTA web navigation agent repo" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 3765 + }, + { + "sites": [ + "reddit" + ], + "task_id": 605, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a subreddit focused on topics related to {{topic}}, and post my question, \"{{question}}\" there", + "instantiation_dict": { + "topic": "gaming consoles", + "question": "what is the recommended console to buy these days" + }, + "intent": "Find a subreddit focused on topics related to gaming consoles, and post my question, \"what is the recommended console to buy these days\" there", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/consoles", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "what is the recommended console to buy these days" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 5 + }, + { + "sites": [ + "reddit" + ], + "task_id": 606, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a subreddit focused on topics related to {{topic}}, and post my question, \"{{question}}\" there", + "instantiation_dict": { + "topic": "NYC", + "question": "is car necessary" + }, + "intent": "Find a subreddit focused on topics related to NYC, and post my question, \"is car necessary\" there", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/nyc", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "is car necessary" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 5 + }, + { + "sites": [ + "reddit" + ], + "task_id": 607, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a subreddit focused on topics related to {{topic}}, and post my question, \"{{question}}\" there", + "instantiation_dict": { + "topic": "city Pittsburgh", + "question": "places for new drivers to learn driving" + }, + "intent": "Find a subreddit focused on topics related to city Pittsburgh, and post my question, \"places for new drivers to learn driving\" there", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/pittsburgh", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "places for new drivers to learn driving" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 5 + }, + { + "sites": [ + "reddit" + ], + "task_id": 608, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a subreddit focused on topics related to {{topic}}, and post my question, \"{{question}}\" there", + "instantiation_dict": { + "topic": "city lives in DMV area", + "question": "safe and budge apartment to live" + }, + "intent": "Find a subreddit focused on topics related to city lives in DMV area, and post my question, \"safe and budge apartment to live\" there", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/washington |OR| __REDDIT__/f/washingtondc", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "safe and budge apartment to live" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 5 + }, + { + "sites": [ + "reddit" + ], + "task_id": 609, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a subreddit focused on topics related to {{topic}}, and post my question, \"{{question}}\" there", + "instantiation_dict": { + "topic": "ML, DL, NLP", + "question": "what is the SOTA web navigation agent repo" + }, + "intent": "Find a subreddit focused on topics related to ML, DL, NLP, and post my question, \"what is the SOTA web navigation agent repo\" there", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/deeplearning |OR| __REDDIT__/f/MachineLearning |OR| __REDDIT__/f/singularity", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "what is the SOTA web navigation agent repo" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 5 + }, + { + "sites": [ + "reddit" + ], + "task_id": 610, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a review of my recent reading \"{{book}}\" in the r/books with my comment \"{{content}}\".", + "instantiation_dict": { + "book": "To Kill a Mockingbird by Harper Lee", + "content": "good book!" + }, + "intent": "Post a review of my recent reading \"To Kill a Mockingbird by Harper Lee\" in the r/books with my comment \"good book!\".", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "To Kill a Mockingbird by Harper Lee", + "good book!" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 9 + }, + { + "sites": [ + "reddit" + ], + "task_id": 611, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a review of my recent reading \"{{book}}\" in the r/books with my comment \"{{content}}\".", + "instantiation_dict": { + "book": "Harry Potter", + "content": "Wonderful journey" + }, + "intent": "Post a review of my recent reading \"Harry Potter\" in the r/books with my comment \"Wonderful journey\".", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "Harry Potter", + "Wonderful journey" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 9 + }, + { + "sites": [ + "reddit" + ], + "task_id": 612, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a review of my recent reading \"{{book}}\" in the r/books with my comment \"{{content}}\".", + "instantiation_dict": { + "book": "big little lies", + "content": "can't stop it" + }, + "intent": "Post a review of my recent reading \"big little lies\" in the r/books with my comment \"can't stop it\".", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "big little lies", + "can't stop it" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 9 + }, + { + "sites": [ + "reddit" + ], + "task_id": 613, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a review of my recent reading \"{{book}}\" in the r/books with my comment \"{{content}}\".", + "instantiation_dict": { + "book": "Love story", + "content": "I cried" + }, + "intent": "Post a review of my recent reading \"Love story\" in the r/books with my comment \"I cried\".", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "Love story", + "I cried" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 9 + }, + { + "sites": [ + "reddit" + ], + "task_id": 614, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a review of my recent reading \"{{book}}\" in the r/books with my comment \"{{content}}\".", + "instantiation_dict": { + "book": "Gone with the wind", + "content": "It's a book with history" + }, + "intent": "Post a review of my recent reading \"Gone with the wind\" in the r/books with my comment \"It's a book with history\".", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "Gone with the wind", + "It's a book with history" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 9 + }, + { + "sites": [ + "reddit" + ], + "task_id": 615, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pics", + "geolocation": null, + "intent_template": "Re-post the image of {{content}} in this page to {{subreddit}} subreddit and note \"from /f/pics\"", + "instantiation_dict": { + "content": "Bald Eagle", + "subreddit": "earthporn" + }, + "intent": "Re-post the image of Bald Eagle in this page to earthporn subreddit and note \"from /f/pics\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/earthporn", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "from /f/pics" + ] + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "[...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "b02113033af32feae9ff147dbbe3764039368d67d193885bd04e65c2e6beea9c.jpg" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 11 + }, + { + "sites": [ + "reddit" + ], + "task_id": 616, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pics", + "geolocation": null, + "intent_template": "Re-post the image of {{content}} in this page to {{subreddit}} subreddit and note \"from /f/pics\"", + "instantiation_dict": { + "content": "Thanksgiving turkey", + "subreddit": "funny" + }, + "intent": "Re-post the image of Thanksgiving turkey in this page to funny subreddit and note \"from /f/pics\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/funny", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "from /f/pics" + ] + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "[...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "2e4fa0a328e653a97a7d07046291c298ef5b4e0d0c73a287f317ca86a8e8685f.jpg" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 11 + }, + { + "sites": [ + "reddit" + ], + "task_id": 617, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pics", + "geolocation": null, + "intent_template": "Re-post the image of {{content}} in this page to {{subreddit}} subreddit and note \"from /f/pics\"", + "instantiation_dict": { + "content": "Firework", + "subreddit": "earthporn" + }, + "intent": "Re-post the image of Firework in this page to earthporn subreddit and note \"from /f/pics\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/earthporn", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "from /f/pics" + ] + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "[...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "92411be6af4e9ad5ccd3ccbaa01c10457bb00e704e99c58dd430de1a958307fd.jpg" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 11 + }, + { + "sites": [ + "reddit" + ], + "task_id": 618, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pics", + "geolocation": null, + "intent_template": "Re-post the image of {{content}} in this page to {{subreddit}} subreddit and note \"from /f/pics\"", + "instantiation_dict": { + "content": "Wife's costume", + "subreddit": "funny" + }, + "intent": "Re-post the image of Wife's costume in this page to funny subreddit and note \"from /f/pics\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/funny", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "from /f/pics" + ] + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "[...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "6bfbf1280d28d84a9261695f0cac5a90addaaff1174807a2b381fdc159f3ed00.jpg" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 11 + }, + { + "sites": [ + "reddit" + ], + "task_id": 619, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pics", + "geolocation": null, + "intent_template": "Re-post the image of {{content}} in this page to {{subreddit}} subreddit and note \"from /f/pics\"", + "instantiation_dict": { + "content": "costume contest", + "subreddit": "funny" + }, + "intent": "Re-post the image of costume contest in this page to funny subreddit and note \"from /f/pics\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/funny", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "from /f/pics" + ] + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "[...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "bd8bc5f4c846aac4df08626faa3a34a7d47c8f3bdd92bf615a54afd939f063a7.jpg" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 11 + }, + { + "sites": [ + "reddit" + ], + "task_id": 620, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for advice about {{issue}} in a subreddit for relations", + "instantiation_dict": { + "issue": "deal with long-distance relationships" + }, + "intent": "Ask for advice about deal with long-distance relationships in a subreddit for relations", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 12 + }, + { + "sites": [ + "reddit" + ], + "task_id": 621, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for advice about {{issue}} in a subreddit for relations", + "instantiation_dict": { + "issue": "cheat" + }, + "intent": "Ask for advice about cheat in a subreddit for relations", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 12 + }, + { + "sites": [ + "reddit" + ], + "task_id": 622, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for advice about {{issue}} in a subreddit for relations", + "instantiation_dict": { + "issue": "sexual harassment" + }, + "intent": "Ask for advice about sexual harassment in a subreddit for relations", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 12 + }, + { + "sites": [ + "reddit" + ], + "task_id": 623, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for advice about {{issue}} in a subreddit for relations", + "instantiation_dict": { + "issue": "gift for birthday" + }, + "intent": "Ask for advice about gift for birthday in a subreddit for relations", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 12 + }, + { + "sites": [ + "reddit" + ], + "task_id": 624, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for advice about {{issue}} in a subreddit for relations", + "instantiation_dict": { + "issue": "break-up remedy" + }, + "intent": "Ask for advice about break-up remedy in a subreddit for relations", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 12 + }, + { + "sites": [ + "reddit" + ], + "task_id": 625, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a discussion post about \"{{topic}}\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "instantiation_dict": { + "topic": "the effectiveness of online learning" + }, + "intent": "Create a discussion post about \"the effectiveness of online learning\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/machinelearning |OR| __REDDIT__/f/deeplearning", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "answer": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 13 + }, + { + "sites": [ + "reddit" + ], + "task_id": 626, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a discussion post about \"{{topic}}\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "instantiation_dict": { + "topic": "Iphone 14" + }, + "intent": "Create a discussion post about \"Iphone 14\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/iphone", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for discussions about iphone 14?", + "answer": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 13 + }, + { + "sites": [ + "reddit" + ], + "task_id": 627, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a discussion post about \"{{topic}}\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "instantiation_dict": { + "topic": "Harry Potter movie series" + }, + "intent": "Create a discussion post about \"Harry Potter movie series\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/movies", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "answer": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 13 + }, + { + "sites": [ + "reddit" + ], + "task_id": 628, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a discussion post about \"{{topic}}\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "instantiation_dict": { + "topic": "long distance relationship" + }, + "intent": "Create a discussion post about \"long distance relationship\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/relationship_advice", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "answer": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 13 + }, + { + "sites": [ + "reddit" + ], + "task_id": 629, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Create a discussion post about \"{{topic}}\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "instantiation_dict": { + "topic": "Fun thing to do in Pittsburgh" + }, + "intent": "Create a discussion post about \"Fun thing to do in Pittsburgh\" in a relevant subreddit and ask users for their opinions with the simple prompt, \"your opinion\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/pittsburgh", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "answer": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 13 + }, + { + "sites": [ + "reddit" + ], + "task_id": 630, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for product recommendations for {{category}} within a budget of {{price}} in {{subreddit}}", + "instantiation_dict": { + "category": "noise-cancelling headphones", + "price": "$200", + "subreddit": "r/headphones" + }, + "intent": "Ask for product recommendations for noise-cancelling headphones within a budget of $200 in r/headphones", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/headphones", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 15 + }, + { + "sites": [ + "reddit" + ], + "task_id": 631, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for product recommendations for {{category}} within a budget of {{price}} in {{subreddit}}", + "instantiation_dict": { + "category": "running shoes", + "price": "$100", + "subreddit": "r/sports" + }, + "intent": "Ask for product recommendations for running shoes within a budget of $100 in r/sports", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/sports", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for running shoes recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 15 + }, + { + "sites": [ + "reddit" + ], + "task_id": 632, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for product recommendations for {{category}} within a budget of {{price}} in {{subreddit}}", + "instantiation_dict": { + "category": "running shoes", + "price": "$500", + "subreddit": "r/sports" + }, + "intent": "Ask for product recommendations for running shoes within a budget of $500 in r/sports", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/sports", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for running shoes recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 15 + }, + { + "sites": [ + "reddit" + ], + "task_id": 633, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for product recommendations for {{category}} within a budget of {{price}} in {{subreddit}}", + "instantiation_dict": { + "category": "running pants", + "price": "$500", + "subreddit": "r/sports" + }, + "intent": "Ask for product recommendations for running pants within a budget of $500 in r/sports", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/sports", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for running pants recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 15 + }, + { + "sites": [ + "reddit" + ], + "task_id": 634, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Ask for product recommendations for {{category}} within a budget of {{price}} in {{subreddit}}", + "instantiation_dict": { + "category": "used iphone", + "price": "$1000", + "subreddit": "r/iphone" + }, + "intent": "Ask for product recommendations for used iphone within a budget of $1000 in r/iphone", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/iphone", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for used iphone recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 15 + }, + { + "sites": [ + "reddit" + ], + "task_id": 635, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in the most appropriate subreddit and ask for recommendations for {{category}} products within a budget of {{price}}", + "instantiation_dict": { + "category": "noise-cancelling headphones", + "price": "$200" + }, + "intent": "Post in the most appropriate subreddit and ask for recommendations for noise-cancelling headphones products within a budget of $200", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/headphones", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 6100 + }, + { + "sites": [ + "reddit" + ], + "task_id": 636, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in the most appropriate subreddit and ask for recommendations for {{category}} products within a budget of {{price}}", + "instantiation_dict": { + "category": "DIY toolkit", + "price": "$100" + }, + "intent": "Post in the most appropriate subreddit and ask for recommendations for DIY toolkit products within a budget of $100", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/DIY", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 6100 + }, + { + "sites": [ + "reddit" + ], + "task_id": 637, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in the most appropriate subreddit and ask for recommendations for {{category}} products within a budget of {{price}}", + "instantiation_dict": { + "category": "sony headphones", + "price": "$500" + }, + "intent": "Post in the most appropriate subreddit and ask for recommendations for sony headphones products within a budget of $500", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/headphones", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for Sony headphone recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 6100 + }, + { + "sites": [ + "reddit" + ], + "task_id": 638, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in the most appropriate subreddit and ask for recommendations for {{category}} products within a budget of {{price}}", + "instantiation_dict": { + "category": "must-have product in my life", + "price": "$30" + }, + "intent": "Post in the most appropriate subreddit and ask for recommendations for must-have product in my life products within a budget of $30", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/BuyItForLife", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 6100 + }, + { + "sites": [ + "reddit" + ], + "task_id": 639, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in the most appropriate subreddit and ask for recommendations for {{category}} products within a budget of {{price}}", + "instantiation_dict": { + "category": "used iphone", + "price": "$1000" + }, + "intent": "Post in the most appropriate subreddit and ask for recommendations for used iphone products within a budget of $1000", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/iphone", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage ask for used iphone recommandation?", + "answer": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 6100 + }, + { + "sites": [ + "reddit" + ], + "task_id": 640, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a notice on a virtual meetup for {{interest}} enthusiasts on {{date}} in the {{subreddit}} subreddit", + "instantiation_dict": { + "interest": "book reading", + "date": "March 15th", + "subreddit": "r/books" + }, + "intent": "Post a notice on a virtual meetup for book reading enthusiasts on March 15th in the r/books subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "book reading", + "March 15th", + "virtual meetup" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 16 + }, + { + "sites": [ + "reddit" + ], + "task_id": 641, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a notice on a virtual meetup for {{interest}} enthusiasts on {{date}} in the {{subreddit}} subreddit", + "instantiation_dict": { + "interest": "Harry Potter", + "date": "July 8th", + "subreddit": "books" + }, + "intent": "Post a notice on a virtual meetup for Harry Potter enthusiasts on July 8th in the books subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 16 + }, + { + "sites": [ + "reddit" + ], + "task_id": 642, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a notice on a virtual meetup for {{interest}} enthusiasts on {{date}} in the {{subreddit}} subreddit", + "instantiation_dict": { + "interest": "Big little lies", + "date": "Sep 10th", + "subreddit": "books" + }, + "intent": "Post a notice on a virtual meetup for Big little lies enthusiasts on Sep 10th in the books subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 16 + }, + { + "sites": [ + "reddit" + ], + "task_id": 643, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a notice on a virtual meetup for {{interest}} enthusiasts on {{date}} in the {{subreddit}} subreddit", + "instantiation_dict": { + "interest": "racing cars", + "date": "Oct 21st", + "subreddit": "nyc" + }, + "intent": "Post a notice on a virtual meetup for racing cars enthusiasts on Oct 21st in the nyc subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/nyc", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 16 + }, + { + "sites": [ + "reddit" + ], + "task_id": 644, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post a notice on a virtual meetup for {{interest}} enthusiasts on {{date}} in the {{subreddit}} subreddit", + "instantiation_dict": { + "interest": "Tears of Kingdom", + "date": "Dec 15th", + "subreddit": "games" + }, + "intent": "Post a notice on a virtual meetup for Tears of Kingdom enthusiasts on Dec 15th in the games subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/games", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 16 + }, + { + "sites": [ + "reddit" + ], + "task_id": 645, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in {{subreddit}} subreddit about how could machine learning help the corresponding field.", + "instantiation_dict": { + "subreddit": "books" + }, + "intent": "Post in books subreddit about how could machine learning help the corresponding field.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 19 + }, + { + "sites": [ + "reddit" + ], + "task_id": 646, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in {{subreddit}} subreddit about how could midjourney help the corresponding field.", + "instantiation_dict": { + "subreddit": "DIY" + }, + "intent": "Post in DIY subreddit about how could midjourney help the corresponding field.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/diy", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": [ + { + "question": "Does this passage inquire about how could midjourney help DIY?", + "answer": "yes" + } + ] + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 19 + }, + { + "sites": [ + "reddit" + ], + "task_id": 647, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in {{subreddit}} forum about how could open-source LLMs help the corresponding field.", + "instantiation_dict": { + "subreddit": "technology" + }, + "intent": "Post in technology forum about how could open-source LLMs help the corresponding field.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/technology", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 19 + }, + { + "sites": [ + "reddit" + ], + "task_id": 648, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in {{subreddit}} forum about how could large language models help the corresponding field.", + "instantiation_dict": { + "subreddit": "dataisbeautiful" + }, + "intent": "Post in dataisbeautiful forum about how could large language models help the corresponding field.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/dataisbeautiful", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 19 + }, + { + "sites": [ + "reddit" + ], + "task_id": 649, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Post in {{subreddit}} subreddit about how could diffusion model help the corresponding field.", + "instantiation_dict": { + "subreddit": "history" + }, + "intent": "Post in history subreddit about how could diffusion model help the corresponding field.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/history", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "qa": [ + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 19 + }, + { + "sites": [ + "reddit" + ], + "task_id": 650, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/books/59421/friendly-reminder-bookshop-org-exists", + "geolocation": null, + "intent_template": "Reply to {{position_description}} with my comment \"{{content_description}}\"", + "instantiation_dict": { + "position_description": "the post", + "content_description": "I am a big fan of the bookorg" + }, + "intent": "Reply to the post with my comment \"I am a big fan of the bookorg\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/books/59421/friendly-reminder-bookshop-org-exists", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.comment__body').outerText", + "required_contents": { + "exact_match": "I am a big fan of the bookorg" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 23 + }, + { + "sites": [ + "reddit" + ], + "task_id": 651, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/pittsburgh/45899/driving-in-pittsburgh-summed-up-by-one-traffic-sign", + "geolocation": null, + "intent_template": "Reply to {{position_description}} with my comment \"{{content_description}}\"", + "instantiation_dict": { + "position_description": "the post", + "content_description": "Yeah, pittsburgh traffic, you know..." + }, + "intent": "Reply to the post with my comment \"Yeah, pittsburgh traffic, you know...\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/pittsburgh/45899/driving-in-pittsburgh-summed-up-by-one-traffic-sign", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.comment__body').outerText", + "required_contents": { + "exact_match": "Yeah, pittsburgh traffic, you know..." + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 23 + }, + { + "sites": [ + "reddit" + ], + "task_id": 652, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__/f/technology/134852/ai-experts-disown-musk-backed-campaign-citing-their-research", + "geolocation": null, + "intent_template": "Reply to {{position_description}} with my comment \"{{content_description}}\"", + "instantiation_dict": { + "position_description": "the post", + "content_description": "???" + }, + "intent": "Reply to the post with my comment \"???\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/technology/134852/ai-experts-disown-musk-backed-campaign-citing-their-research", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.comment__body').outerText", + "required_contents": { + "exact_match": "???" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 23 + }, + { + "sites": [ + "shopping" + ], + "task_id": 653, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Fill the \"contact us\" form in the site for a refund on the {{product}} I bought, stating that it broke after just three days of use. Also, ensure to include the order number #{{order_id}} and the product SKU. Don't submit yet, I will check.", + "instantiation_dict": { + "product": "phone screen protector", + "order_id": "000000180" + }, + "intent": "Fill the \"contact us\" form in the site for a refund on the phone screen protector I bought, stating that it broke after just three days of use. Also, ensure to include the order number #000000180 and the product SKU. Don't submit yet, I will check.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 153 + }, + { + "sites": [ + "shopping" + ], + "task_id": 654, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Fill the \"contact us\" form in the site for a refund on the {{product}} I bought, stating that it broke after just three days of use. Also, ensure to include the order number #{{order_id}} and the product SKU. Don't submit yet, I will check.", + "instantiation_dict": { + "product": "bluetooth speaker", + "order_id": "161" + }, + "intent": "Fill the \"contact us\" form in the site for a refund on the bluetooth speaker I bought, stating that it broke after just three days of use. Also, ensure to include the order number #161 and the product SKU. Don't submit yet, I will check.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 161?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 153 + }, + { + "sites": [ + "shopping" + ], + "task_id": 655, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Fill the \"contact us\" form in the site for a refund on the {{product}} I bought, stating that it broke after just three days of use. Also, ensure to include the order number #{{order_id}} and the product SKU. Don't submit yet, I will check.", + "instantiation_dict": { + "product": "iphone case", + "order_id": "180" + }, + "intent": "Fill the \"contact us\" form in the site for a refund on the iphone case I bought, stating that it broke after just three days of use. Also, ensure to include the order number #180 and the product SKU. Don't submit yet, I will check.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 153 + }, + { + "sites": [ + "shopping" + ], + "task_id": 656, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Fill the \"contact us\" form in the site for a refund on the {{product}} I bought, stating that it broke after just three days of use. Also, ensure to include the order number #{{order_id}} and the product SKU. Don't submit yet, I will check.", + "instantiation_dict": { + "product": "remote controller", + "order_id": "180" + }, + "intent": "Fill the \"contact us\" form in the site for a refund on the remote controller I bought, stating that it broke after just three days of use. Also, ensure to include the order number #180 and the product SKU. Don't submit yet, I will check.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 153 + }, + { + "sites": [ + "shopping" + ], + "task_id": 657, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Fill the \"contact us\" form in the site for a refund on the {{product}} I bought, stating that it broke after just three days of use. Also, ensure to include the order number #{{order_id}} and the product SKU. Don't submit yet, I will check.", + "instantiation_dict": { + "product": "speaker", + "order_id": "148" + }, + "intent": "Fill the \"contact us\" form in the site for a refund on the speaker I bought, stating that it broke after just three days of use. Also, ensure to include the order number #148 and the product SKU. Don't submit yet, I will check.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a refund?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate order number 148?", + "answer": "yes" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 153 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 658, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue in {{repo}} repo with title \"{{issue}}\". Assign the issue to {{account}}. Set due date to be {{due}}", + "instantiation_dict": { + "repo": "a11yproject", + "issue": "401 bad gateway", + "account": "Roshanjossey", + "due": "the end of 2030" + }, + "intent": "Create an issue in a11yproject repo with title \"401 bad gateway\". Assign the issue to Roshanjossey. Set due date to be the end of 2030", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[data-qa-selector=\"title_content\"]').outerText", + "required_contents": { + "exact_match": "401 bad gateway" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-testid=\"sidebar-due-date\"').outerText", + "required_contents": { + "must_include": [ + "Dec 31, 2030" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.assignee').outerText", + "required_contents": { + "must_include": [ + "Roshan Jossey" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 327 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 659, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue in {{repo}} repo with title \"{{issue}}\". Assign the issue to {{account}}. Set due date to be {{due}}", + "instantiation_dict": { + "repo": "empathy-prompts", + "issue": "Integrating LLMs for better prompts", + "account": "Roshanjossey", + "due": "the beginning of Q2 2033" + }, + "intent": "Create an issue in empathy-prompts repo with title \"Integrating LLMs for better prompts\". Assign the issue to Roshanjossey. Set due date to be the beginning of Q2 2033", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/empathy-prompts/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[data-qa-selector=\"title_content\"]').outerText", + "required_contents": { + "exact_match": "Integrating LLMs for better prompts" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-testid=\"sidebar-due-date\"').outerText", + "required_contents": { + "must_include": [ + "Apr 1, 2033" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.assignee').outerText", + "required_contents": { + "must_include": [ + "Roshan Jossey" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 327 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 660, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue in {{repo}} repo with title \"{{issue}}\". Assign the issue to {{account}}. Set due date to be {{due}}", + "instantiation_dict": { + "repo": "dotfiles", + "issue": "add support for oh-my-zsh", + "account": "Abishek", + "due": "July 18 2033" + }, + "intent": "Create an issue in dotfiles repo with title \"add support for oh-my-zsh\". Assign the issue to Abishek. Set due date to be July 18 2033", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/dotfiles/-/tree/main", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[data-qa-selector=\"title_content\"]').outerText", + "required_contents": { + "exact_match": "add support for oh-my-zsh" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-testid=\"sidebar-due-date\"').outerText", + "required_contents": { + "must_include": [ + "Jul 18, 2033" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.assignee').outerText", + "required_contents": { + "must_include": [ + "Abishek S" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 327 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 661, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open an issue to {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "ChatGPT", + "issue": "report the issue of connection refused" + }, + "intent": "Open an issue to report the issue of connection refused in ChatGPT.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/convexegg/chatgpt/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "connection refused" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 662, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open an issue to {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "aem-hacker", + "issue": "report experiencing \"OSError: [Errno 98] Address already in use\" during executions" + }, + "intent": "Open an issue to report experiencing \"OSError: [Errno 98] Address already in use\" during executions in aem-hacker.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/0ang3el/aem-hacker/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "OSError: [Errno 98] Address already in use" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 663, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open an issue to {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "metaseq", + "issue": "ask their plan on supporting Llama and other llama family models" + }, + "intent": "Open an issue to ask their plan on supporting Llama and other llama family models in metaseq.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/root/metaseq/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "llama" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 664, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open an issue to {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "awesome-python", + "issue": "ask their plans on adding Python 3.11 related resources" + }, + "intent": "Open an issue to ask their plans on adding Python 3.11 related resources in awesome-python.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/vinta/awesome-python/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "Python 3.11" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 665, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Open an issue to {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "a11y-syntax-highlighting", + "issue": "request adding support for MT theme editor" + }, + "intent": "Open an issue to request adding support for MT theme editor in a11y-syntax-highlighting.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/a11y-syntax-highlighting/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "MT theme editor" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 666, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Submit a request to merge {{source_branch}} branch into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "dialog-component", + "target_branch": "dialog", + "reviewer": "Carol" + }, + "intent": "Submit a request to merge dialog-component branch into dialog branch, assign Carol as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "dialog" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "dialog-component" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Caroline Stewart" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 667, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Submit a merge request for {{source_branch}} branch to be merged into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "dialog-component", + "target_branch": "bump-doctocat", + "reviewer": "primer" + }, + "intent": "Submit a merge request for dialog-component branch to be merged into bump-doctocat branch, assign primer as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "bump-doctocat" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "dialog-component" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Primer" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 668, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Submit a merge request for {{source_branch}} branch to be merged into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "a11yproject.com/redesign", + "target_branch": "master", + "reviewer": "Justin Armstrong" + }, + "intent": "Submit a merge request for a11yproject.com/redesign branch to be merged into master branch, assign Justin Armstrong as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "redesign" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "main" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Justin Armstrong" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 669, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/solarized-prism-theme", + "geolocation": null, + "intent_template": "Open a new issue to discuss the implementation of {{feature}}", + "instantiation_dict": { + "feature": "dark mode" + }, + "intent": "Open a new issue to discuss the implementation of dark mode", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/solarized-prism-theme/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "implementation", + "dark mode" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 337 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 670, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/byteblaze/dotfiles", + "geolocation": null, + "intent_template": "Open a new issue to discuss the implementation of {{feature}}", + "instantiation_dict": { + "feature": "default plugins for .zsh" + }, + "intent": "Open a new issue to discuss the implementation of default plugins for .zsh", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/dotfiles/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.detail-page-description').outerText", + "required_contents": { + "must_include": [ + "implementation", + "default plugins", + "zsh" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 337 + }, + { + "sites": [ + "shopping", + "reddit" + ], + "task_id": 671, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Gather the titles of {{product}} reviews with {{rating}} rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on {{product}}\"", + "instantiation_dict": { + "product": "Sony Computer Entertainment VR", + "rating": "2 stars and less" + }, + "intent": "Gather the titles of Sony Computer Entertainment VR reviews with 2 stars and less rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on Sony Computer Entertainment VR\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/gaming", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__title').outerText", + "required_contents": { + "exact_match": "real user feedback on Sony Computer Entertainment VR" + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "didn't last a year without issues", + "Disappointing. Didn't last long before it stopped powering on and needed to be sent in for repair.", + "Received used items!!" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 101 + }, + { + "sites": [ + "shopping", + "reddit" + ], + "task_id": 672, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Gather the titles of {{product}} reviews with {{rating}} rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on {{product}}\"", + "instantiation_dict": { + "product": "Nintendo Switch Fortnite Wildcat Console EU", + "rating": "3 stars and less" + }, + "intent": "Gather the titles of Nintendo Switch Fortnite Wildcat Console EU reviews with 3 stars and less rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on Nintendo Switch Fortnite Wildcat Console EU\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/gaming", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__title').outerText", + "required_contents": { + "exact_match": "real user feedback on Nintendo Switch Fortnite Wildcat Console EU" + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "EU charger and wild cat card doesn\u2019t even work!", + "REFUND REJECTED", + "Charging port not compatible", + "not compatible in the US", + "Wildcard Bonus Credits Not Redeemable!", + "Code not available!!" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 101 + }, + { + "sites": [ + "shopping", + "reddit" + ], + "task_id": 673, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Gather the titles of {{product}} reviews with {{rating}} rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on {{product}}\"", + "instantiation_dict": { + "product": "Racing Wheel Overdrive for Xbox X", + "rating": "1 star" + }, + "intent": "Gather the titles of Racing Wheel Overdrive for Xbox X reviews with 1 star rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on Racing Wheel Overdrive for Xbox X\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/gaming", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__title').outerText", + "required_contents": { + "exact_match": "real user feedback on Racing Wheel Overdrive for Xbox X" + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "Unable to set neutral steering", + "Doesn\u2019t work with PC", + "Crazy problems in automatic mode", + "pedals stopped working", + "Only works with certain games" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 101 + }, + { + "sites": [ + "shopping", + "reddit" + ], + "task_id": 674, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Gather the titles of {{product}} reviews with {{rating}} rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on {{product}}\"", + "instantiation_dict": { + "product": "Doc and Pies Arcade Factory Cocktail Arcade Machine", + "rating": "3 stars and less" + }, + "intent": "Gather the titles of Doc and Pies Arcade Factory Cocktail Arcade Machine reviews with 3 stars and less rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on Doc and Pies Arcade Factory Cocktail Arcade Machine\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/gaming", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__title').outerText", + "required_contents": { + "exact_match": "real user feedback on Doc and Pies Arcade Factory Cocktail Arcade Machine" + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "Poorly Made Exterior. Consider a different Company.", + "piece of junk ,..can't believe I spent money on this !!!!", + "Based arrived broken but game itself works" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 101 + }, + { + "sites": [ + "shopping", + "reddit" + ], + "task_id": 675, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Gather the titles of {{product}} reviews with {{rating}} rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on {{product}}\"", + "instantiation_dict": { + "product": "HORI 3D Surround Gaming Neckset", + "rating": "2 stars and less" + }, + "intent": "Gather the titles of HORI 3D Surround Gaming Neckset reviews with 2 stars and less rating from OneStopShop, and post them in the games subreddit under the title \"real user feedback on HORI 3D Surround Gaming Neckset\"", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/gaming", + "program_html": [ + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__title').outerText", + "required_contents": { + "exact_match": "real user feedback on HORI 3D Surround Gaming Neckset" + } + }, + { + "url": "func:reddit_get_post_url('__last_url__')", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "Not worth it for PC users", + "I really wanted to like this.", + "I wish this was better..." + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 101 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 676, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Lookup orders that are {{status}}", + "instantiation_dict": { + "status": "suspected of being fraudulent" + }, + "intent": "Lookup orders that are suspected of being fraudulent", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales/order/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div.admin__data-grid-filters-current\").outerText", + "required_contents": { + "must_include": [ + "Suspected Fraud" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 253 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 677, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Lookup orders that are {{status}}", + "instantiation_dict": { + "status": "processing" + }, + "intent": "Lookup orders that are processing", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales/order/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div.admin__data-grid-filters-current\").outerText", + "required_contents": { + "must_include": [ + "Processing" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 253 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 678, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Lookup orders that are {{status}}", + "instantiation_dict": { + "status": "canceled" + }, + "intent": "Lookup orders that are canceled", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales/order/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div.admin__data-grid-filters-current\").outerText", + "required_contents": { + "must_include": [ + "Canceled" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 253 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 679, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Lookup orders that are {{status}}", + "instantiation_dict": { + "status": "completed" + }, + "intent": "Lookup orders that are completed", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales/order/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div.admin__data-grid-filters-current\").outerText", + "required_contents": { + "must_include": [ + "Completed" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 253 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 680, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Lookup orders that are {{status}}", + "instantiation_dict": { + "status": "on hold" + }, + "intent": "Lookup orders that are on hold", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales/order/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div.admin__data-grid-filters-current\").outerText", + "required_contents": { + "must_include": [ + "On Hold" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 253 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 681, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a GitLab repository related to {{topic}} and make a Reddit post linking to it in a relevant subreddit", + "instantiation_dict": { + "topic": "gan implementation" + }, + "intent": "Find a GitLab repository related to gan implementation and make a Reddit post linking to it in a relevant subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/machinelearning |OR| __REDDIT__/f/deeplearning |OR| __REDDIT__/f/technology", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "gan implementation", + "__GITLAB__/eriklindernoren/PyTorch-GAN" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 116 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 682, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a GitLab repository related to {{topic}} and make a Reddit post linking to it in a relevant subreddit", + "instantiation_dict": { + "topic": "chatGPT" + }, + "intent": "Find a GitLab repository related to chatGPT and make a Reddit post linking to it in a relevant subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/machinelearning |OR| __REDDIT__/f/singularity |OR| __REDDIT__/f/deeplearning |OR| __REDDIT__/f/technology", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "chatgpt", + "__GITLAB__/convexegg/chatgpt" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 116 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 683, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Find a GitLab repository related to {{topic}} and make a Reddit post linking to it in a relevant subreddit", + "instantiation_dict": { + "topic": "metaseq" + }, + "intent": "Find a GitLab repository related to metaseq and make a Reddit post linking to it in a relevant subreddit", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/machinelearning |OR| __REDDIT__/f/deeplearning", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText", + "required_contents": { + "must_include": [ + "metaseq", + "__GITLAB__/root/metaseq" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 116 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 684, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Promote {{repo}} to subreddit {{subreddit}} with the description from the repo itself.", + "instantiation_dict": { + "repo": "byteblaze/cloud-to-butt", + "subreddit": "LifeProTips" + }, + "intent": "Promote byteblaze/cloud-to-butt to subreddit LifeProTips with the description from the repo itself.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/LifeProTips", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText + [...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "Chrome extension that replaces occurrences of 'the cloud' with 'my butt'", + "__GITLAB__/byteblaze/cloud-to-butt" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 117 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 685, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Promote {{repo}} to subreddit {{subreddit}} with the description from the repo itself.", + "instantiation_dict": { + "repo": "byteblaze/dotfiles", + "subreddit": "aww" + }, + "intent": "Promote byteblaze/dotfiles to subreddit aww with the description from the repo itself.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/aww", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText + [...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "Computer setup", + "__GITLAB__/byteblaze/dotfiles" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 117 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 686, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Promote {{repo}} to subreddit {{subreddit}} with the description from the repo itself.", + "instantiation_dict": { + "repo": "auth0/angular-storage", + "subreddit": "technology" + }, + "intent": "Promote auth0/angular-storage to subreddit technology with the description from the repo itself.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/technology", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText + [...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "A storage library for AngularJS done right", + "__GITLAB__/auth0/angular-storage" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 117 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 687, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Promote {{repo}} to subreddit {{subreddit}} with the description from the repo itself.", + "instantiation_dict": { + "repo": "koush/AndroidAsync", + "subreddit": "funny" + }, + "intent": "Promote koush/AndroidAsync to subreddit funny with the description from the repo itself.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/funny", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText + [...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.", + "__GITLAB__/koush/AndroidAsync" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 117 + }, + { + "sites": [ + "reddit", + "gitlab" + ], + "task_id": 688, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Promote {{repo}} to subreddit {{subreddit}} with the description from the repo itself.", + "instantiation_dict": { + "repo": "lahwaacz/arch-wiki-docs", + "subreddit": "science" + }, + "intent": "Promote lahwaacz/arch-wiki-docs to subreddit science with the description from the repo itself.", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__REDDIT__/f/science", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('.submission__inner').outerText + [...document.querySelector('.submission__inner').querySelectorAll('[href],[src]')].map(elem => elem.getAttribute('href') || elem.getAttribute('src')).join(' ')", + "required_contents": { + "must_include": [ + "A script to download pages from Arch Wiki for offline browsing", + "__GITLAB__/lahwaacz/arch-wiki-docs" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 117 + }, + { + "sites": [ + "shopping" + ], + "task_id": 689, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft an email to the shop owner via their contact us function for a coupon as {{reason}}", + "instantiation_dict": { + "reason": "I am a loyal customer" + }, + "intent": "Draft an email to the shop owner via their contact us function for a coupon as I am a loyal customer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a coupon?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 163 + }, + { + "sites": [ + "shopping" + ], + "task_id": 690, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft an email to the shop owner via their contact us function for a coupon as {{reason}}", + "instantiation_dict": { + "reason": "they promised me a coupon last time" + }, + "intent": "Draft an email to the shop owner via their contact us function for a coupon as they promised me a coupon last time", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a coupon?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 163 + }, + { + "sites": [ + "shopping" + ], + "task_id": 691, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft an email to the shop owner via their contact us function for a coupon as {{reason}}", + "instantiation_dict": { + "reason": "I plan to make a bulk purchase" + }, + "intent": "Draft an email to the shop owner via their contact us function for a coupon as I plan to make a bulk purchase", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a coupon?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 163 + }, + { + "sites": [ + "shopping" + ], + "task_id": 692, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft an email to the shop owner via their contact us function for a coupon as {{reason}}", + "instantiation_dict": { + "reason": "I am a student" + }, + "intent": "Draft an email to the shop owner via their contact us function for a coupon as I am a student", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a coupon?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 163 + }, + { + "sites": [ + "shopping" + ], + "task_id": 693, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Draft an email to the shop owner via their contact us function for a coupon as {{reason}}", + "instantiation_dict": { + "reason": "my refund is suppoed to be replaced by a coupon" + }, + "intent": "Draft an email to the shop owner via their contact us function for a coupon as my refund is suppoed to be replaced by a coupon", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING__/contact", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[title=\"What\u2019s on your mind?\"').value", + "required_contents": { + "qa": [ + { + "question": "Does this passage clearly state the desire for a coupon?", + "answer": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "answer": "yes" + } + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 163 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 694, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a simple product named {{product}} with {{stock}} in stock, available in size {{size}} and color {{color}}, priced at ${{price}}", + "instantiation_dict": { + "product": "Energy-Bulk Women Shirt", + "stock": "50", + "size": "S", + "color": "blue", + "price": "60" + }, + "intent": "Add a simple product named Energy-Bulk Women Shirt with 50 in stock, available in size S and color blue, priced at $60", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/catalog/product", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "60.00" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[name]\"').value", + "required_contents": { + "must_include": [ + "Energy-Bulk Women Shirt" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "50" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-role=\"selected-option\"').outerText", + "required_contents": { + "must_include": [ + "top" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[size]\"').value", + "required_contents": { + "exact_match": "167" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[color]\"').value", + "required_contents": { + "exact_match": "50" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-index=\"category_ids\"').outerText", + "required_contents": { + "must_include": [ + "tops" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 256 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 695, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a simple product named {{product}} with {{stock}} in stock, available in size {{size}} and color {{color}}, priced at ${{price}}", + "instantiation_dict": { + "product": "Energy-Bulk Man Yoga Pant", + "stock": "50", + "size": "38", + "color": "yellow", + "price": "69.99" + }, + "intent": "Add a simple product named Energy-Bulk Man Yoga Pant with 50 in stock, available in size 38 and color yellow, priced at $69.99", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/catalog/product", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "69.99" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[name]\"').value", + "required_contents": { + "must_include": [ + "Energy-Bulk Man Yoga Pant" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "50" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-role=\"selected-option\"').outerText", + "required_contents": { + "must_include": [ + "bottom" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[size]\"').value", + "required_contents": { + "exact_match": "179" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[color]\"').value", + "required_contents": { + "exact_match": "60" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-index=\"category_ids\"').outerText", + "required_contents": { + "must_include": [ + "bottoms" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 256 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 696, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a simple product named {{product}} with {{stock}} in stock, available in size {{size}} and color {{color}}, priced at ${{price}}", + "instantiation_dict": { + "product": "FancyBoy Man Causal Jeans", + "stock": "42", + "size": "34", + "color": "Blue", + "price": "169.99" + }, + "intent": "Add a simple product named FancyBoy Man Causal Jeans with 42 in stock, available in size 34 and color Blue, priced at $169.99", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/catalog/product", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"product[name]\"').value", + "required_contents": { + "must_include": [ + "FancyBoy Man Causal Jeans" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "42" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "169.99" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-role=\"selected-option\"').outerText", + "required_contents": { + "must_include": [ + "bottom" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[size]\"').value", + "required_contents": { + "exact_match": "177" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[color]\"').value", + "required_contents": { + "exact_match": "50" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-index=\"category_ids\"').outerText", + "required_contents": { + "must_include": [ + "bottoms" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 256 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 697, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a simple product named {{product}} with {{stock}} in stock, available in size {{size}} and color {{color}}, priced at ${{price}}", + "instantiation_dict": { + "product": "Swaatch Smart Watch", + "stock": "42", + "size": "uni-size", + "color": "Blue", + "price": "769.99" + }, + "intent": "Add a simple product named Swaatch Smart Watch with 42 in stock, available in size uni-size and color Blue, priced at $769.99", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/catalog/product", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"product[name]\"').value", + "required_contents": { + "must_include": [ + "Swaatch Smart Watch" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "42" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "769.99" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-role=\"selected-option\"').outerText", + "required_contents": { + "must_include": [ + "gear" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[color]\"').value", + "required_contents": { + "exact_match": "50" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-index=\"category_ids\"').outerText", + "required_contents": { + "must_include": [ + "watches" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 256 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 698, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Add a simple product named {{product}} with {{stock}} in stock, available in size {{size}} and color {{color}}, priced at ${{price}}", + "instantiation_dict": { + "product": "Lelelumon Yoga Mat", + "stock": "42", + "size": "uni-size", + "color": "black", + "price": "769.99" + }, + "intent": "Add a simple product named Lelelumon Yoga Mat with 42 in stock, available in size uni-size and color black, priced at $769.99", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/catalog/product", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"product[name]\"').value", + "required_contents": { + "must_include": [ + "Lelelumon Yoga Mat" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "42" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "769.99" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-role=\"selected-option\"').outerText", + "required_contents": { + "must_include": [ + "gear" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"product[color]\"').value", + "required_contents": { + "exact_match": "49" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-index=\"category_ids\"').outerText", + "required_contents": { + "must_include": [ + "fitness equipment" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 256 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 699, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Draft a new marketing price rule for {{topic}} that offers {{rule}} for all customers", + "instantiation_dict": { + "topic": "spring sale", + "rule": "a 20 percent discount site-wide" + }, + "intent": "Draft a new marketing price rule for spring sale that offers a 20 percent discount site-wide for all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales_rule/promo_quote", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"[name='name'\").value", + "required_contents": { + "must_include": [ + "spring sale" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"website_ids\"').selectedIndex", + "required_contents": { + "exact_match": "0" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"customer_group_ids\"').selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"simple_action\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "by_percent" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"discount_amount\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "20" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 258 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 700, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Draft a new marketing price rule for {{topic}} that offers {{rule}} for all customers", + "instantiation_dict": { + "topic": "fall discount", + "rule": "$10 discount on checkout" + }, + "intent": "Draft a new marketing price rule for fall discount that offers $10 discount on checkout for all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales_rule/promo_quote", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"[name='name'\").value", + "required_contents": { + "must_include": [ + "fall discount" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"website_ids\"').selectedIndex", + "required_contents": { + "exact_match": "0" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"customer_group_ids\"').selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"simple_action\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "cart_fixed" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"discount_amount\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "10" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 258 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 701, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Draft a new marketing price rule for {{topic}} that offers {{rule}} for all customers", + "instantiation_dict": { + "topic": "Mother's day sale", + "rule": "$15 discount on checkout" + }, + "intent": "Draft a new marketing price rule for Mother's day sale that offers $15 discount on checkout for all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales_rule/promo_quote", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"[name='name'\").value", + "required_contents": { + "must_include": [ + "Mother's day sale" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"website_ids\"').selectedIndex", + "required_contents": { + "exact_match": "0" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"customer_group_ids\"').selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"simple_action\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "cart_fixed" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"discount_amount\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "15" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 258 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 702, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Draft a new marketing price rule for {{topic}} that offers {{rule}} for all customers", + "instantiation_dict": { + "topic": "Pride Month", + "rule": "45% off on all products" + }, + "intent": "Draft a new marketing price rule for Pride Month that offers 45% off on all products for all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales_rule/promo_quote", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"[name='name'\").value", + "required_contents": { + "must_include": [ + "Pride Month" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"website_ids\"').selectedIndex", + "required_contents": { + "exact_match": "0" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"customer_group_ids\"').selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"simple_action\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "by_percent" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"discount_amount\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "45" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 258 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 703, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Draft a new marketing price rule for {{topic}} that offers {{rule}} for all customers", + "instantiation_dict": { + "topic": "Thanks giving sale", + "rule": "$40 discount on checkout" + }, + "intent": "Draft a new marketing price rule for Thanks giving sale that offers $40 discount on checkout for all customers", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/sales_rule/promo_quote", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"[name='name'\").value", + "required_contents": { + "must_include": [ + "Thanks giving sale" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"website_ids\"').selectedIndex", + "required_contents": { + "exact_match": "0" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"customer_group_ids\"').selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"simple_action\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "cart_fixed" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"discount_amount\"').value", + "prep_actions": [ + "document.querySelector('[data-index=\"actions\"]').querySelector('.admin__collapsible-title').click()" + ], + "required_contents": { + "exact_match": "40" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 258 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 704, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Today is 3/15/2023, generate a {{report}} {{time_span}}", + "instantiation_dict": { + "report": "sales order report", + "time_span": "for last month" + }, + "intent": "Today is 3/15/2023, generate a sales order report for last month", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/sales", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "2/1/23" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "2/28/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 268 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 705, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Today is 3/15/2023, generate a {{report}} {{time_span}}", + "instantiation_dict": { + "report": "sales order report", + "time_span": "over the last 45 days" + }, + "intent": "Today is 3/15/2023, generate a sales order report over the last 45 days", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/sales", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "1/29/23" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "3/15/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 268 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 706, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Today is 3/15/2023, generate a {{report}} {{time_span}}", + "instantiation_dict": { + "report": "refund report", + "time_span": "for Q1" + }, + "intent": "Today is 3/15/2023, generate a refund report for Q1", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/refunded", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "1/1/23" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "3/31/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 268 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 707, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Today is 3/15/2023, generate a {{report}} {{time_span}}", + "instantiation_dict": { + "report": "sales order report", + "time_span": "for last year" + }, + "intent": "Today is 3/15/2023, generate a sales order report for last year", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/sales", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "1/1/2022" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "12/31/2022" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 268 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 708, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Today is 3/15/2023, generate a {{report}} {{time_span}}", + "instantiation_dict": { + "report": "tax report", + "time_span": "for this year" + }, + "intent": "Today is 3/15/2023, generate a tax report for this year", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/tax/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "1/1/2023" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "12/31/2023" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 268 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 709, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Create an {{type}} report from {{start_date}} to {{end_date}}", + "instantiation_dict": { + "type": "orders", + "start_date": "beginning of May 2021", + "end_date": "end of March 2022" + }, + "intent": "Create an orders report from beginning of May 2021 to end of March 2022", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/sales", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "5/1/2021" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "3/31/2022" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 271 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 710, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Create a {{type}} report from {{start_date}} to {{end_date}}", + "instantiation_dict": { + "type": "shipping", + "start_date": "08/05/2022", + "end_date": "03/01/2023" + }, + "intent": "Create a shipping report from 08/05/2022 to 03/01/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/shipping", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "8/5/22" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "3/1/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 271 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 711, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Create a {{type}} report from {{start_date}} to {{end_date}}", + "instantiation_dict": { + "type": "product view", + "start_date": "07/05/2021", + "end_date": "05/31/2023" + }, + "intent": "Create a product view report from 07/05/2021 to 05/31/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_product/viewed/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "7/5/21" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "5/31/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 271 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 712, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Create a {{type}} report from {{start_date}} to {{end_date}}", + "instantiation_dict": { + "type": "coupons", + "start_date": "05/01/2021", + "end_date": "05/15/2023" + }, + "intent": "Create a coupons report from 05/01/2021 to 05/15/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/coupons/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "5/1/21" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "5/15/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 271 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 713, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Create a {{type}} report from {{start_date}} to {{end_date}}", + "instantiation_dict": { + "type": "best sellers", + "start_date": "05/01/2022", + "end_date": "05/31/2023" + }, + "intent": "Create a best sellers report from 05/01/2022 to 05/31/2023", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__SHOPPING_ADMIN__/reports/report_sales/bestsellers/", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_from\"').value", + "required_contents": { + "exact_match": "5/1/22" + } + }, + { + "url": "last", + "locator": "document.querySelector('[id=\"sales_report_to\"').value", + "required_contents": { + "exact_match": "5/31/23" + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 271 + }, + { + "sites": [ + "reddit" + ], + "task_id": 714, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Thumbs down the top {{k}} post ever in {{subreddit}}.", + "instantiation_dict": { + "subreddit": "gadgets", + "k": "1" + }, + "intent": "Thumbs down the top 1 post ever in gadgets.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/gadgets/19459/a-custom-gaming-pc-built-inside-a-vintage-1940s-motorola", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 24 + }, + { + "sites": [ + "reddit" + ], + "task_id": 715, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Thumbs down the top {{k}} post ever in {{subreddit}}.", + "instantiation_dict": { + "subreddit": "history", + "k": "2" + }, + "intent": "Thumbs down the top 2 post ever in history.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/history/84338/the-scientist-who-discovered-sperm-was-so-grossed-out-he", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/history/105990/4-500-year-old-sumerian-temple-dedicated-to-mighty-thunder", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 24 + }, + { + "sites": [ + "reddit" + ], + "task_id": 716, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Thumbs down the top {{k}} post ever in {{subreddit}}.", + "instantiation_dict": { + "k": "3", + "subreddit": "books" + }, + "intent": "Thumbs down the top 3 post ever in books.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/books/81371/the-letters-of-t-s-eliot-to-emily-hale-that-were-kept-sealed", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/books/59421/friendly-reminder-bookshop-org-exists", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/books/59447/appalachian-prison-book-project-seeks-notebook-donations-the", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 24 + }, + { + "sites": [ + "reddit" + ], + "task_id": 717, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Thumbs down the top {{k}} post ever in {{subreddit}}.", + "instantiation_dict": { + "k": "4", + "subreddit": "movies" + }, + "intent": "Thumbs down the top 4 post ever in movies.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/movies/86174/who-will-win-the-oscar-for-actress-in-a-supporting-role", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/movies/86029/who-will-win-the-oscar-for-film-editing", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/movies/86055/cindy-williams-dies-laverne-amp-shirley-star-who-appeared-in", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/movies/42682/michelle-yeoh-to-receive-palm-springs-film-festival-s", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 24 + }, + { + "sites": [ + "reddit" + ], + "task_id": 718, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Thumbs down the top {{k}} post ever in {{subreddit}}.", + "instantiation_dict": { + "k": "5", + "subreddit": "technology" + }, + "intent": "Thumbs down the top 5 post ever in technology.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/technology/48670/brain-cancer-vaccine-succeeds-at-prolonging-survival-in", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/technology/134696/india-cuts-internet-for-27-million-people-amid-search-for", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/technology/48785/us-judge-orders-amazon-to-cease-and-desist-anti-union", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/technology/70354/activision-s-boston-studio-workers-announce-unionization", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/technology/70233/social-media-influencers-are-charged-with-feeding-followers", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 24 + }, + { + "sites": [ + "reddit" + ], + "task_id": 719, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "subreddit": "wallstreetbets", + "user": "ThetaGang_wsb" + }, + "intent": "Like all submissions created by ThetaGang_wsb in subreddit wallstreetbets", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/wallstreetbets/29478/how-will-airbnb-close-following-their-earnings-report-on", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/wallstreetbets/29458/how-much-will-the-federal-reserve-raise-interest-rates-in", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 25 + }, + { + "sites": [ + "reddit" + ], + "task_id": 720, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "subreddit": "earthporn", + "user": "CameronKelsey" + }, + "intent": "Like all submissions created by CameronKelsey in subreddit earthporn", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/EarthPorn/98332/my-favorite-place-on-the-planet-henry-s-fork-of-the-snake", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/EarthPorn/98297/2-years-later-this-is-still-one-of-the-most-incredible", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/EarthPorn/98256/i-can-t-wait-for-all-this-green-to-start-coming-back-little", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 25 + }, + { + "sites": [ + "reddit" + ], + "task_id": 721, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "UniversityofBath", + "subreddit": "IAmA" + }, + "intent": "Like all submissions created by UniversityofBath in subreddit IAmA", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/IAmA/119742/hi-i-m-vienne-a-doctoral-student-at-the-university-of-bath-i", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/119719/hello-reddit-i-m-nazia-mehrban-a-lecturer-in-biotechnology", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/119714/i-m-ellie-jarvis-she-her-a-2nd-year-phd-student-in-the", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/55155/hi-i-m-dr-lucy-maddox-from-bath-university-uk-i-m-a-clinical", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/55142/we-re-sadeka-nujhat-hannah-leese-and-sandhya-moise-from-the", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/34032/we-re-sandhya-moise-david-phillips-and-chan-lee-from-the", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/13175/hi-i-m-kit-yates-i-m-a-mathematical-biologist-at-the", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/IAmA/13170/hello-i-m-dr-sara-fontani-from-the-university-of", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 25 + }, + { + "sites": [ + "reddit" + ], + "task_id": 722, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "Don_Gato1", + "subreddit": "new york" + }, + "intent": "Like all submissions created by Don_Gato1 in subreddit new york", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/nyc/44650/fox-news-hosts-cast-new-york-as-crime-ridden-and-chaotic", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 25 + }, + { + "sites": [ + "reddit" + ], + "task_id": 723, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "FTorrez81", + "subreddit": "iphone13" + }, + "intent": "Like all submissions created by FTorrez81 in subreddit iphone13", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "FTorrez81 does not have any submissions in iphone13" + }, + "reference_url": "", + "program_html": [], + "reference_answer_raw_annotation": "N/A", + "string_note": "" + }, + "intent_template_id": 25, + "string_note": "FTorrez81 has no submissions in subreddit iphone13" + }, + { + "sites": [ + "reddit" + ], + "task_id": 724, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Like all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "Hrekires", + "subreddit": "news" + }, + "intent": "Like all submissions created by Hrekires in subreddit news", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/news/129816/gov-whitmer-signs-bills-to-repeal-right-to-work-restore", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129808/disney-world-deal-with-union-will-raise-minimum-wage-to-18", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129794/judge-halts-wyoming-abortion-ban-days-after-it-took-effect", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129783/don-t-say-gay-lawmaker-pleads-guilty-to-covid-relief-fraud", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129594/arizona-gov-katie-hobbs-refuses-to-proceed-with-execution", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129508/tennessee-governor-oks-bill-to-cut-nashville-council-in-half", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43839/philadelphia-da-larry-krasner-impeached-by-pa-house", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43781/crypto-giant-ftx-to-file-for-bankruptcy-ceo-sam-bankman", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43572/sec-doj-investigating-crypto-platform-ftx", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43558/kansas-gov-laura-kelly-wins-re-election-defeating-gop", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-upvoted" + ] + } + } + ] + }, + "intent_template_id": 25 + }, + { + "sites": [ + "reddit" + ], + "task_id": 725, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "subreddit": "massachusetts", + "user": "RickyDontLoseThat" + }, + "intent": "DisLike all submissions created by RickyDontLoseThat in subreddit massachusetts", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/massachusetts/84954/the-last-of-lincoln", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 726, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "subreddit": "earthporn", + "user": "jacyanthis" + }, + "intent": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "jacyanthis does not have any submissions in earthporn" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 727, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "PatientBuilder499", + "subreddit": "videos" + }, + "intent": "DisLike all submissions created by PatientBuilder499 in subreddit videos", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/videos/115139/hundreds-of-civilian-turkish-volunteers-waiting-to-be-sent", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 728, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "sirbarani", + "subreddit": "sports" + }, + "intent": "DisLike all submissions created by sirbarani in subreddit sports", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/sports/48303/iran-football-legend-daei-will-not-attend-world-cup-amid", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 729, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "AdamCannon", + "subreddit": "UpliftingNews" + }, + "intent": "DisLike all submissions created by AdamCannon in subreddit UpliftingNews", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/UpliftingNews/16087/same-sex-marriage-is-now-legal-in-all-of-mexico-s-states", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 730, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "DisLike all submissions created by {{user}} in subreddit {{subreddit}}", + "instantiation_dict": { + "user": "Hrekires", + "subreddit": "news" + }, + "intent": "DisLike all submissions created by Hrekires in subreddit news", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/news/129816/gov-whitmer-signs-bills-to-repeal-right-to-work-restore", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129808/disney-world-deal-with-union-will-raise-minimum-wage-to-18", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129794/judge-halts-wyoming-abortion-ban-days-after-it-took-effect", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129783/don-t-say-gay-lawmaker-pleads-guilty-to-covid-relief-fraud", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129594/arizona-gov-katie-hobbs-refuses-to-proceed-with-execution", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/129508/tennessee-governor-oks-bill-to-cut-nashville-council-in-half", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43839/philadelphia-da-larry-krasner-impeached-by-pa-house", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43781/crypto-giant-ftx-to-file-for-bankruptcy-ceo-sam-bankman", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43572/sec-doj-investigating-crypto-platform-ftx", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + }, + { + "url": "__REDDIT__/f/news/43558/kansas-gov-laura-kelly-wins-re-election-defeating-gop", + "locator": "document.querySelector('div.submission__vote').querySelector('form').getAttribute('class')", + "required_contents": { + "must_include": [ + "vote vote--user-downvoted" + ] + } + } + ] + }, + "intent_template_id": 1510 + }, + { + "sites": [ + "reddit" + ], + "task_id": 731, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Edit my post on {{post}} by adding a line to the body that says \"{{content}}\"", + "instantiation_dict": { + "post": "Nvidia RTX 4090", + "content": "EDIT: This news aged well" + }, + "intent": "Edit my post on Nvidia RTX 4090 by adding a line to the body that says \"EDIT: This news aged well\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/MachineLearning/1/nvidia-rtx-4090", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "must_include": [ + "EDIT: This news aged well", + "Crazy device for ML!" + ] + } + } + ] + }, + "intent_template_id": 27 + }, + { + "sites": [ + "reddit" + ], + "task_id": 732, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Edit my post on {{post}} by adding a line to the body that says \"{{content}}\"", + "instantiation_dict": { + "post": "The Night Agent", + "content": "Done watching, pretty cool!" + }, + "intent": "Edit my post on The Night Agent by adding a line to the body that says \"Done watching, pretty cool!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/television/134868/the-night-agent-renewed-for-season-2-at-netflix", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "exact_match": "Done watching, pretty cool!" + } + } + ] + }, + "intent_template_id": 27 + }, + { + "sites": [ + "reddit" + ], + "task_id": 733, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Edit my post on {{post}} by adding a line to the body that says \"{{content}}\"", + "instantiation_dict": { + "post": "Star Trek Starfleet Academy series", + "content": "Every watch makes me feel like a kid again" + }, + "intent": "Edit my post on Star Trek Starfleet Academy series by adding a line to the body that says \"Every watch makes me feel like a kid again\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/television/135201/star-trek-starfleet-academy-series-from-alex-kurtzman-and", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "exact_match": "Every watch makes me feel like a kid again" + } + } + ] + }, + "intent_template_id": 27 + }, + { + "sites": [ + "reddit" + ], + "task_id": 734, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Edit my post on {{post}} by adding a line to the body that says \"{{content}}\"", + "instantiation_dict": { + "post": "Ted Lasso", + "content": "Done watching. I love the renew!" + }, + "intent": "Edit my post on Ted Lasso by adding a line to the body that says \"Done watching. I love the renew!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/television/135156/ted-lasso-season-3-premiere-scores-870k-u-s-households-up-59", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "exact_match": "Done watching. I love the renew!" + } + } + ] + }, + "intent_template_id": 27 + }, + { + "sites": [ + "reddit" + ], + "task_id": 735, + "require_login": true, + "storage_state": "./.auth/reddit_state.json", + "start_url": "__REDDIT__", + "geolocation": null, + "intent_template": "Edit my post on {{post}} by adding a line to the body that says \"{{content}}\"", + "instantiation_dict": { + "post": "Lord of the Rings", + "content": "The cast is amazing!" + }, + "intent": "Edit my post on Lord of the Rings by adding a line to the body that says \"The cast is amazing!\"", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__REDDIT__/f/television/135152/lord-of-the-rings-the-rings-of-power-season-2-cast-adds", + "locator": "document.querySelector('.submission__body').outerText", + "required_contents": { + "exact_match": "The cast is amazing!" + } + } + ] + }, + "intent_template_id": 27 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 736, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make the LICENSE of {{repo}} to MIT license.", + "instantiation_dict": { + "repo": "gimmiethat.space and dotfiles" + }, + "intent": "Make the LICENSE of gimmiethat.space and dotfiles to MIT license.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/gimmiethat.space/-/blob/main/LICENSE", + "locator": "", + "required_contents": { + "must_include": [ + "MIT license", + "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software." + ] + } + }, + { + "url": "__GITLAB__/byteblaze/dotfiles/-/blob/main/LICENSE", + "locator": "", + "required_contents": { + "must_include": [ + "MIT license", + "The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software." + ] + } + } + ] + }, + "intent_template_id": 355 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 737, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the way from {{location}} to the home stadium of {{sport_team}} {{time}}", + "instantiation_dict": { + "location": "Carnegie Mellon University", + "sport_team": "Philadelphia 76ers", + "time": "" + }, + "intent": "Show me the way from Carnegie Mellon University to the home stadium of Philadelphia 76ers ", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Wells Fargo Center", + "South Philadelphia Sports Complex" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 94 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 738, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the way from {{location}} to the home stadium of {{sport_team}} {{time}}", + "instantiation_dict": { + "location": "Carnegie Mellon University", + "sport_team": "Philadelphia 76ers", + "time": "in the 70th" + }, + "intent": "Show me the way from Carnegie Mellon University to the home stadium of Philadelphia 76ers in the 70th", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "3601 South Broad Street", + "South Philadelphia" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 94 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 739, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the way from {{location}} to the home stadium of {{sport_team}} {{time}}", + "instantiation_dict": { + "location": "Carnegie Mellon University", + "sport_team": "Yankees", + "time": "in the 80th" + }, + "intent": "Show me the way from Carnegie Mellon University to the home stadium of Yankees in the 80th", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Yankee Stadium", + "East 161st Street" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 94 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 740, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the way from {{location}} to the home stadium of {{sport_team}} {{time}}", + "instantiation_dict": { + "location": "Carnegie Mellon University", + "sport_team": "NYC NBA team", + "time": "" + }, + "intent": "Show me the way from Carnegie Mellon University to the home stadium of NYC NBA team ", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Madison Square Garden", + "Pennsylvania Plaza", + "Manhattan", + "New York" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 94 + }, + { + "sites": [ + "wikipedia", + "map" + ], + "task_id": 741, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the way from {{location}} to the home stadium of {{sport_team}} {{time}}", + "instantiation_dict": { + "location": "Carnegie Mellon University", + "sport_team": "Boston home NBA team", + "time": "" + }, + "intent": "Show me the way from Carnegie Mellon University to the home stadium of Boston home NBA team ", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "TD Garden", + "Boston", + "Massachusetts" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 94 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 742, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a new {{scope}} project \"planner\" and add {{account_list}} as members", + "instantiation_dict": { + "scope": "private", + "account_list": "Abishek, Vinta" + }, + "intent": "Create a new private project \"planner\" and add Abishek, Vinta as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/planner", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/planner/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@abisubramanya27", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 743, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a new {{scope}} project \"web_arena\" and add {{account_list}} as members", + "instantiation_dict": { + "scope": "public", + "account_list": "Abishek, Vinta" + }, + "intent": "Create a new public project \"web_arena\" and add Abishek, Vinta as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_arena", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "public" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_arena/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@abisubramanya27", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 744, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a new {{scope}} project \"AutoAGI\" and add {{account_list}} as members", + "instantiation_dict": { + "scope": "public", + "account_list": "primer" + }, + "intent": "Create a new public project \"AutoAGI\" and add primer as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/AutoAGI", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "public" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/AutoAGI/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@primer" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 745, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a new {{scope}} project \"awesome-llms\" and add {{account_list}} as members", + "instantiation_dict": { + "scope": "public", + "account_list": "primer, convexegg, abishek" + }, + "intent": "Create a new public project \"awesome-llms\" and add primer, convexegg, abishek as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/awesome-llms", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "public" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/awesome-llms/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@primer", + "@convexegg", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 746, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a new {{scope}} project \"llm_bulk_inference\" and add {{account_list}} as members", + "instantiation_dict": { + "scope": "private", + "account_list": "primer, convexegg, abishek" + }, + "intent": "Create a new private project \"llm_bulk_inference\" and add primer, convexegg, abishek as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/llm_bulk_inference", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/llm_bulk_inference/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@primer", + "@convexegg", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 747, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Start a private project {{project_name}} with {{template}} template and add {{account_list}} as members", + "instantiation_dict": { + "project_name": "awesome_web_agents", + "template": "blank", + "account_list": "Abishek, Vinta" + }, + "intent": "Start a private project awesome_web_agents with blank template and add Abishek, Vinta as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/awesome_web_agents", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/awesome_web_agents/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initial commit" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/awesome_web_agents/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@abisubramanya27", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 2100 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 748, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Start a private project {{project_name}} with {{template}} template and add {{account_list}} as members", + "instantiation_dict": { + "project_name": "web_agent_android_xl", + "template": "Android", + "account_list": "primer, convexegg, abishek" + }, + "intent": "Start a private project web_agent_android_xl with Android template and add primer, convexegg, abishek as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_agent_android_xl", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent_android_xl/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initialized from 'Android' project template" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent_android_xl/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@primer", + "@convexegg", + "@abisubramanya27" + ] + } + } + ] + }, + "intent_template_id": 2100 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 749, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Start a private project {{project_name}} with {{template}} template and add {{account_list}} as members", + "instantiation_dict": { + "project_name": "project_site", + "template": "NodeJS", + "account_list": "primer, convexegg, vinta" + }, + "intent": "Start a private project project_site with NodeJS template and add primer, convexegg, vinta as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/project_site", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/project_site/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initialized from 'NodeJS Express' project template" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/project_site/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@primer", + "@convexegg", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 2100 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 750, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Start a private project {{project_name}} with {{template}} template and add {{account_list}} as members", + "instantiation_dict": { + "project_name": "agi_index", + "template": "HTML", + "account_list": "Vinta Chen" + }, + "intent": "Start a private project agi_index with HTML template and add Vinta Chen as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/agi_index", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/agi_index", + "locator": "document.querySelector('.home-panel-description-markdown').outerText", + "required_contents": { + "must_include": [ + "Example plain HTML site using GitLab Pages: https://pages.gitlab.io/plain-html |OR| A plain HTML site that uses Netlify for CI/CD instead of GitLab, but still with all the other great GitLab features." + ] + } + }, + { + "url": "__GITLAB__/byteblaze/agi_index/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "Vinta Chen" + ] + } + } + ] + }, + "intent_template_id": 2100 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 751, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Start a private project {{project_name}} with {{template}} template and add {{account_list}} as members", + "instantiation_dict": { + "project_name": "AGISite", + "template": "JEKYLL", + "account_list": "Rohan and Vinta" + }, + "intent": "Start a private project AGISite with JEKYLL template and add Rohan and Vinta as members", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/AGISite", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/AGISite", + "locator": "document.querySelector('.home-panel-description-markdown').outerText", + "required_contents": { + "must_include": [ + "Example Jekyll site using GitLab Pages: https://pages.gitlab.io/jekyll |OR| A Jekyll site that uses Netlify for CI/CD instead of GitLab, but still with all the other great GitLab features." + ] + } + }, + { + "url": "__GITLAB__/byteblaze/AGISite/-/project_members", + "locator": "", + "required_contents": { + "must_include": [ + "@Seirdy", + "@vinta" + ] + } + } + ] + }, + "intent_template_id": 2100 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 752, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a private {{template}} repository called \"{{project_name}}\" using the right template to speed up development.", + "instantiation_dict": { + "project_name": "web_agent", + "template": "blank" + }, + "intent": "Create a private blank repository called \"web_agent\" using the right template to speed up development.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_agent", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initial commit" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 753, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a private {{template}} repository called \"{{project_name}}\" using the right template to speed up development.", + "instantiation_dict": { + "project_name": "web_agent_android_xs", + "template": "Android" + }, + "intent": "Create a private Android repository called \"web_agent_android_xs\" using the right template to speed up development.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_agent_android_xs", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent_android_xs/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initialized from 'Android' project template" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 754, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a private {{template}} repository called \"{{project_name}}\" using the right template to speed up development.", + "instantiation_dict": { + "project_name": "web_agent_nodejs", + "template": "NodeJS" + }, + "intent": "Create a private NodeJS repository called \"web_agent_nodejs\" using the right template to speed up development.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_agent_nodejs", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent_nodejs/-/commits", + "locator": "", + "required_contents": { + "must_include": [ + "Initialized from 'NodeJS Express' project template" + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 755, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a private {{template}} repository called \"{{project_name}}\" using the right template to speed up development.", + "instantiation_dict": { + "project_name": "web_agent_index", + "template": "HTML" + }, + "intent": "Create a private HTML repository called \"web_agent_index\" using the right template to speed up development.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/web_agent_index", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/web_agent_index", + "locator": "document.querySelector('.home-panel-description-markdown').outerText", + "required_contents": { + "must_include": [ + "Example plain HTML site using GitLab Pages: https://pages.gitlab.io/plain-html |OR| A plain HTML site that uses Netlify for CI/CD instead of GitLab, but still with all the other great GitLab features." + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 756, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create a private {{template}} repository called \"{{project_name}}\" using the right template to speed up development.", + "instantiation_dict": { + "project_name": "11711_gitlab", + "template": "JEKYLL" + }, + "intent": "Create a private JEKYLL repository called \"11711_gitlab\" using the right template to speed up development.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/byteblaze/11711_gitlab", + "locator": "document.querySelector('.visibility-icon').getAttribute('title')", + "required_contents": { + "must_include": [ + "Private" + ] + } + }, + { + "url": "__GITLAB__/byteblaze/11711_gitlab", + "locator": "document.querySelector('.home-panel-description-markdown').outerText", + "required_contents": { + "must_include": [ + "Example Jekyll site using GitLab Pages: https://pages.gitlab.io/jekyll |OR| A Jekyll site that uses Netlify for CI/CD instead of GitLab, but still with all the other great GitLab features." + ] + } + } + ] + }, + "intent_template_id": 332 + }, + { + "sites": [ + "map" + ], + "task_id": 757, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the path and travel time from {{city1}} to {{city2}}.", + "instantiation_dict": { + "city1": "home of the 1980 Super Bowl champions", + "city2": "home of the 1991 Super Bowl champions" + }, + "intent": "Show me the path and travel time from home of the 1980 Super Bowl champions to home of the 1991 Super Bowl champions.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "New York" + ] + } + } + ] + }, + "intent_template_id": 42 + }, + { + "sites": [ + "map" + ], + "task_id": 758, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the path and travel time from {{city1}} to {{city2}}.", + "instantiation_dict": { + "city1": "the big apple", + "city2": "biggest city in Maine" + }, + "intent": "Show me the path and travel time from the big apple to biggest city in Maine.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "New York" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Portland", + "Maine" + ] + } + } + ] + }, + "intent_template_id": 42 + }, + { + "sites": [ + "map", + "shopping_admin" + ], + "task_id": 759, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the route and driving time from {{city1}} to {{city2}}", + "instantiation_dict": { + "city1": "the city where my E-commerce customer Sophia Young lives", + "city2": "New York City" + }, + "intent": "Show me the route and driving time from the city where my E-commerce customer Sophia Young lives to New York City", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Boston" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "New York" + ] + } + } + ] + }, + "intent_template_id": 42 + }, + { + "sites": [ + "map", + "shopping_admin" + ], + "task_id": 760, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Show me the route and driving time from {{city1}} to {{city2}}", + "instantiation_dict": { + "city1": "Allentown, PA", + "city2": "the city where my E-commerce customer Amanda Kim lives" + }, + "intent": "Show me the route and driving time from Allentown, PA to the city where my E-commerce customer Amanda Kim lives", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Allentown" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Hoboken", + "New Jersey" + ] + } + } + ] + }, + "intent_template_id": 42 + }, + { + "sites": [ + "map" + ], + "task_id": 761, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Get directions from {{location/address_1}} to {{location/address_2}} using {{transportation}} options.", + "instantiation_dict": { + "location/address_1": "Carnegie Science Museum", + "location/address_2": "Hunt library CMU", + "transportation": "walk" + }, + "intent": "Get directions from Carnegie Science Museum to Hunt library CMU using walk options.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Science Center", + "Allegheny County", + "Pittsburgh" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Hunt Library", + "Pittsburgh" + ] + } + } + ] + }, + "intent_template_id": 54 + }, + { + "sites": [ + "map" + ], + "task_id": 762, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Get directions from {{location/address_1}} to {{location/address_2}} using {{transportation}} options.", + "instantiation_dict": { + "location/address_1": "Carnegie Music Hall in NYC", + "location/address_2": "Carnegie Mellon University", + "transportation": "driving" + }, + "intent": "Get directions from Carnegie Music Hall in NYC to Carnegie Mellon University using driving options.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "Carnegie Hall", + "West 57th Street", + "Manhattan", + "New York" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Carnegie Mellon University", + "Pittsburgh" + ] + } + } + ] + }, + "intent_template_id": 54 + }, + { + "sites": [ + "map" + ], + "task_id": 763, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the walkway to the closest {{store}} from {{location}}.", + "instantiation_dict": { + "store": "Trader Joe's", + "location": "401 Shady Ave, Pittsburgh" + }, + "intent": "Find the walkway to the closest Trader Joe's from 401 Shady Ave, Pittsburgh.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "401, Shady Avenue, Shadyside" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Trader Joe's, 6343, Penn Avenue, East Liberty" + ] + } + } + ] + }, + "intent_template_id": 75 + }, + { + "sites": [ + "map" + ], + "task_id": 764, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the walkway to the closest {{store}} from {{location}}.", + "instantiation_dict": { + "store": "Target", + "location": "401 Shady Ave, Pittsburgh" + }, + "intent": "Find the walkway to the closest Target from 401 Shady Ave, Pittsburgh.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "401, Shady Avenue, Shadyside" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Target, 6231, Penn Avenue, East Liberty" + ] + } + } + ] + }, + "intent_template_id": 75 + }, + { + "sites": [ + "map" + ], + "task_id": 765, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the walkway to the closest {{store}} from {{location}}.", + "instantiation_dict": { + "store": "Japanese food market", + "location": "401 Shady Ave, Pittsburgh" + }, + "intent": "Find the walkway to the closest Japanese food market from 401 Shady Ave, Pittsburgh.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "401, Shady Avenue, Shadyside" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Tokyo Japanese Food Store, 5855, Ellsworth Avenue, Shadyside" + ] + } + } + ] + }, + "intent_template_id": 75 + }, + { + "sites": [ + "map" + ], + "task_id": 766, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the walkway to the closest {{store}} from {{location}}.", + "instantiation_dict": { + "store": "grocessory owned by Amazon", + "location": "401 Shady Ave, Pittsburgh" + }, + "intent": "Find the walkway to the closest grocessory owned by Amazon from 401 Shady Ave, Pittsburgh.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "401, Shady Avenue, Shadyside" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Whole Foods Market, 5700, Penn Avenue, East Liberty" + ] + } + } + ] + }, + "intent_template_id": 75 + }, + { + "sites": [ + "map" + ], + "task_id": 767, + "require_login": true, + "storage_state": null, + "start_url": "__MAP__", + "geolocation": null, + "intent_template": "Find the walkway to the closest {{store}} from {{location}}.", + "instantiation_dict": { + "store": "chain grocessory owned by a local business", + "location": "401 Shady Ave, Pittsburgh" + }, + "intent": "Find the walkway to the closest chain grocessory owned by a local business from 401 Shady Ave, Pittsburgh.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector(\"div#content select.routing_engines\").selectedIndex", + "required_contents": { + "exact_match": "2" + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_from\"').value", + "required_contents": { + "must_include": [ + "401, Shady Avenue, Shadyside" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('[name=\"route_to\"').value", + "required_contents": { + "must_include": [ + "Giant Eagle, 5550, Centre Avenue, Shadyside" + ] + } + } + ] + }, + "intent_template_id": 75 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 768, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{quantity}} {{product}} arrived, update the stock", + "instantiation_dict": { + "quantity": "5", + "product": "blue Cronus yoga pants with size 33" + }, + "intent": "5 blue Cronus yoga pants with size 33 arrived, update the stock", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/872/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "5" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/872/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][is_in_stock]\"').value", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 241 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 769, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "We've received {{quantity}} {{product}}, please update the inventory.", + "instantiation_dict": { + "quantity": "378", + "product": "brown Aero daily fitness tee in every size" + }, + "intent": "We've received 378 brown Aero daily fitness tee in every size, please update the inventory.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/544/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "478" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/547/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "478" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/550/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "478" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/553/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "478" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/556/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "478" + } + } + ] + }, + "intent_template_id": 241 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 770, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "We've received {{quantity}}, update the inventory.", + "instantiation_dict": { + "quantity": "12 white Cora parachute pant of size 28 and 56 blue of size 29" + }, + "intent": "We've received 12 white Cora parachute pant of size 28 and 56 blue of size 29, update the inventory.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1836/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "112" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1838/", + "locator": "document.querySelector('[name=\"product[quantity_and_stock_status][qty]\"').value", + "required_contents": { + "exact_match": "156" + } + } + ] + }, + "intent_template_id": 241 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 771, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Approve the positive reviews to display in our store.", + "instantiation_dict": {}, + "intent": "Approve the positive reviews to display in our store.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/352", + "locator": "document.querySelector('[name=\"status_id\"').value", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/349", + "locator": "document.querySelector('[name=\"status_id\"').value", + "required_contents": { + "exact_match": "1" + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/347", + "locator": "document.querySelector('[name=\"status_id\"').value", + "required_contents": { + "exact_match": "1" + } + } + ] + }, + "intent_template_id": 243 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 772, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "pending negative reviews for Circe fleece" + }, + "intent": "Delete all pending negative reviews for Circe fleece", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/999", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + } + ] + }, + "intent_template_id": 246 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 773, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "pending negative reviews" + }, + "intent": "Delete all pending negative reviews", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/351", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/353", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + } + ] + }, + "intent_template_id": 246 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 774, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "pending reviews with less than 4 stars" + }, + "intent": "Delete all pending reviews with less than 4 stars", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/351", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/353", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/349", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + } + ] + }, + "intent_template_id": 246 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 775, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "reviews from the scammer Arden" + }, + "intent": "Delete all reviews from the scammer Arden", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/51", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + } + ] + }, + "intent_template_id": 246 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 776, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "reviews from the scammer Carlo" + }, + "intent": "Delete all reviews from the scammer Carlo", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/93", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + }, + { + "url": "__SHOPPING_ADMIN__/review/product/edit/id/109", + "locator": "", + "required_contents": { + "must_include": [ + "Rating isn't Available" + ] + } + } + ] + }, + "intent_template_id": 246 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 777, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "$5", + "action": "Reduce", + "config": "green Hollister backyard sweater in all size" + }, + "intent": "Reduce the price of green Hollister backyard sweater in all size by $5", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/120/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "47.00" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/117/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "47.00" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/114/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "47.00" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/111/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "47.00" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/123/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "47.00" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 778, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "13.5%", + "action": "Reduce", + "config": "size 28 Sahara leggings" + }, + "intent": "Reduce the price of size 28 Sahara leggings by 13.5%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1841/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "64.88" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1842/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "64.88" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1843/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "64.88" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 779, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "15%", + "action": "Reduce", + "config": "yellow shirts from Gwyn Endurance in all size below L" + }, + "intent": "Reduce the price of yellow shirts from Gwyn Endurance in all size below L by 15%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1559/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "20.40" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1562/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "20.40" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1565/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "20.40" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 780, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1481/", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "$17", + "action": "Increase", + "config": "white Ingrid Running with size L and above" + }, + "intent": "Increase the price of white Ingrid Running with size L and above by $17", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1264/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "64.00" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1267/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "64.00" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 781, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "37%", + "action": "Increase", + "config": "black fitness tshirts from Desiree with size XS" + }, + "intent": "Increase the price of black fitness tshirts from Desiree with size XS by 37%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/1573/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "32.88" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 782, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "{{action}} the price of {{config}} by {{amount}}", + "instantiation_dict": { + "amount": "23%", + "action": "Increase", + "config": "all blue running tshirts in extra small and small sizes" + }, + "intent": "Increase the price of all blue running tshirts in extra small and small sizes by 23%", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/496/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "22.33" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/499/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "22.33" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/479/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "21.56" + } + }, + { + "url": "__SHOPPING_ADMIN__/catalog/product/edit/id/482/", + "locator": "document.querySelector('[name=\"product[price]\"').value", + "required_contents": { + "exact_match": "21.56" + } + } + ] + }, + "intent_template_id": 742 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 783, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Add the following users to repo {{repo}} as {{role}}: {{user_list}}", + "instantiation_dict": { + "repo": "kkroening/ffmpeg-python", + "role": "maintainer", + "user_list": [ + "yjlou", + "a11yproject" + ] + }, + "intent": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The user is not the owner of the repo, so the user does not have permissions to add maintainer" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 351 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 784, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/CellularPrivacy/Android-IMSI-Catcher-Detector", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the contributor who has the most commits to branch {{branch_name}}", + "instantiation_dict": { + "branch_name": "main", + "attribute": "email address" + }, + "intent": "Tell me the email address of the contributor who has the most commits to branch main", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "secupwn@users.noreply.github.com" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "secupwn@users.noreply.github.com" + }, + "intent_template_id": 316 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 785, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/CellularPrivacy/Android-IMSI-Catcher-Detector", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the contributor who has the most commits to branch {{branch_name}}", + "instantiation_dict": { + "branch_name": "gh-page", + "attribute": "email address" + }, + "intent": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "secupwn@users.noreply.github.com" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "secupwn@users.noreply.github.com" + }, + "intent_template_id": 316 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 786, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/vinta/awesome-python", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the contributor who has the most commits to branch {{branch_name}}", + "instantiation_dict": { + "branch_name": "main", + "attribute": "number of commits" + }, + "intent": "Tell me the number of commits of the contributor who has the most commits to branch main", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "412" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "412" + }, + "intent_template_id": 316 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 787, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/dehenne/awesome-visibility/-/graphs/master", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the contributor who has the most commits to branch {{branch_name}}", + "instantiation_dict": { + "branch_name": "main", + "attribute": "number of followers" + }, + "intent": "Tell me the number of followers of the contributor who has the most commits to branch main", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_exact_match": "0" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "0" + }, + "intent_template_id": 316 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 788, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/amwhalen/archive-my-tweets/-/tree/github/fork/chtitux/addRssFeed", + "geolocation": null, + "intent_template": "Tell me the {{attribute}} of the contributor who has the most commits to branch {{branch_name}}", + "instantiation_dict": { + "branch_name": "php52", + "attribute": "full name, gitlab account name, location and email address" + }, + "intent": "Tell me the full name, gitlab account name, location and email address of the contributor who has the most commits to branch php52", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "qa": [ + { + "question": "Does the passage clearly state the full name is Andrew M. Whalen?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state the gitlab account name is amwhalen?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state the location is Massachusetts?", + "answer": "Yes" + }, + { + "question": "Does the passage clearly state the email address is github@amwhalen.com?", + "answer": "Yes" + } + ] + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "Andrew M. Whalen, amwhalen, Massachusetts, github@amwhalen.com" + }, + "intent_template_id": 316 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 789, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue {{issue}} in {{repo}}.", + "instantiation_dict": { + "repo": "huggingface dataset", + "issue": "asking about do they have any plan on supporting Webagent in the next quater" + }, + "intent": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "huggingface repo does not exist" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 328 + }, + { + "sites": [ + "shopping_admin" + ], + "task_id": 790, + "require_login": true, + "storage_state": "./.auth/shopping_admin_state.json", + "start_url": "__SHOPPING_ADMIN__", + "geolocation": null, + "intent_template": "Delete all {{review_type}}", + "instantiation_dict": { + "review_type": "negative reviews for Sybil running short" + }, + "intent": "Delete all negative reviews for Sybil running short", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "There is no negative reviews for the given product. All reviews are positive." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 246 + }, + { + "sites": [ + "gitlab", + "reddit" + ], + "task_id": 791, + "require_login": true, + "storage_state": "./.auth/gitlab.reddit_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Make a folder named {{directory}} on the {{gitlab_repo}} repo and include a file called urls.txt that consists of the links to the 5 most recent posts from {{subreddit}}.", + "instantiation_dict": { + "directory": "car", + "subreddit": "cars", + "gitlab_repo": "gimmiethat.space" + }, + "intent": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "the subreddit does not exist" + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 84 + }, + { + "sites": [ + "shopping" + ], + "task_id": 794, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Change the delivery address for my most recent order to {{address}}.", + "instantiation_dict": { + "address": "4000 Forbes Ave, Pittsburgh, PA" + }, + "intent": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The shipping address cannot be changed after an order is placed, according to the website's policy." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 191 + }, + { + "sites": [ + "shopping" + ], + "task_id": 795, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Change the delivery address for my most recent order to {{address}}.", + "instantiation_dict": { + "address": "6726 McPherson Blvd, Pittsburgh, PA" + }, + "intent": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The shipping address cannot be changed after an order is placed in the website." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 191 + }, + { + "sites": [ + "shopping" + ], + "task_id": 796, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Change the delivery address for my most recent order to {{address}}.", + "instantiation_dict": { + "address": "155 5th Street, San Francisco, CA" + }, + "intent": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The shipping address cannot be changed after an order is placed in the website." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 191 + }, + { + "sites": [ + "shopping" + ], + "task_id": 797, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Change the delivery address for my most recent order to {{address}}.", + "instantiation_dict": { + "address": "3 Oxford St, Cambridge, MA" + }, + "intent": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The shipping address cannot be changed after an order is placed in the website." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 191 + }, + { + "sites": [ + "shopping" + ], + "task_id": 798, + "require_login": true, + "storage_state": "./.auth/shopping_state.json", + "start_url": "__SHOPPING__", + "geolocation": null, + "intent_template": "Change the delivery address for my most recent order to {{address}}.", + "instantiation_dict": { + "address": "77 Massachusetts Ave, Cambridge, MA" + }, + "intent": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "require_reset": false, + "eval": { + "eval_types": [ + "string_match" + ], + "reference_answers": { + "fuzzy_na_match": "The shipping address cannot be changed after an order is placed in the website." + }, + "reference_url": "", + "program_html": [], + "string_note": "", + "reference_answer_raw_annotation": "N/A" + }, + "intent_template_id": 191 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 799, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a new group \"{{name}}\" with members {{members}}", + "instantiation_dict": { + "name": "n-lab", + "members": "patou, egpast, westurner, jontutcher" + }, + "intent": "create a new group \"n-lab\" with members patou, egpast, westurner, jontutcher", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/groups/n-lab/-/group_members", + "locator": "", + "required_contents": { + "must_include": [ + "@patou", + "@egpast", + "@westurner", + "@jontutcher" + ] + } + } + ] + }, + "intent_template_id": 600 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 800, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a new group \"{{name}}\" with members {{members}}", + "instantiation_dict": { + "name": "x-lab", + "members": "JonasVautherin, dilipchandima, dawiss1337, bmyun, DCMJY" + }, + "intent": "create a new group \"x-lab\" with members JonasVautherin, dilipchandima, dawiss1337, bmyun, DCMJY", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/groups/x-lab/-/group_members", + "locator": "", + "required_contents": { + "must_include": [ + "@JonasVautherin", + "@dilipchandima", + "@dawiss1337", + "@bmyun", + "@DCMJY" + ] + } + } + ] + }, + "intent_template_id": 600 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 801, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a new group \"{{name}}\" with members {{members}}", + "instantiation_dict": { + "name": "crew", + "members": "ASWATFZLLC, patrickhlauke, westurner, linkmatrix" + }, + "intent": "create a new group \"crew\" with members ASWATFZLLC, patrickhlauke, westurner, linkmatrix", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/groups/crew/-/group_members", + "locator": "", + "required_contents": { + "must_include": [ + "@ASWATFZLLC", + "@patrickhlauke", + "@westurner", + "@linkmatrix" + ] + } + } + ] + }, + "intent_template_id": 600 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 802, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a new group \"{{name}}\" with members {{members}}", + "instantiation_dict": { + "name": "coding_friends", + "members": "qhduan, Agnes-U" + }, + "intent": "create a new group \"coding_friends\" with members qhduan, Agnes-U", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/groups/coding_friends/-/group_members", + "locator": "", + "required_contents": { + "must_include": [ + "@qhduan", + "@Agnes-U" + ] + } + } + ] + }, + "intent_template_id": 600 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 803, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "create a new group \"{{name}}\" with members {{members}}", + "instantiation_dict": { + "name": "webagent", + "members": "pandey2000, sayakpaul, sayakpaul" + }, + "intent": "create a new group \"webagent\" with members pandey2000, sayakpaul, sayakpaul", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/groups/webagent/-/group_members", + "locator": "", + "required_contents": { + "must_include": [ + "@pandey2000", + "@sayakpaul" + ] + } + } + ] + }, + "intent_template_id": 600 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 804, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Assign the issue regarding {{issue}} to {{account}}.", + "instantiation_dict": { + "issue": "flash alerts", + "account": "myself and primer" + }, + "intent": "Assign the issue regarding flash alerts to myself and primer.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=byteblaze", + "locator": "", + "required_contents": { + "must_include": [ + "Add documentation on using Flash alerts in dialog components", + "Clarify usage of flash alert" + ] + } + }, + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=primer", + "locator": "", + "required_contents": { + "must_include": [ + "Add documentation on using Flash alerts in dialog components", + "Clarify usage of flash alert" + ] + } + } + ] + }, + "intent_template_id": 999 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 805, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/a11yproject/a11yproject.com", + "geolocation": null, + "intent_template": "Submit a merge request for {{source_branch}} to be merged into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "the branch that implements the support of template strings", + "target_branch": "master", + "reviewer": "myself and Roshan" + }, + "intent": "Submit a merge request for the branch that implements the support of template strings to be merged into master branch, assign myself and Roshan as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "feature/replace-gulp" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "main" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Byte Blaze", + "Roshan Jossy" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 806, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Submit a merge request for {{source_branch}} branch to be merged into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "a11yproject.com/redesign", + "target_branch": "markdown-figure-block", + "reviewer": "myself" + }, + "intent": "Submit a merge request for a11yproject.com/redesign branch to be merged into markdown-figure-block branch, assign myself as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "redesign" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "feature/markdown-figure-block" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Byte Blaze" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 807, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__/primer/design", + "geolocation": null, + "intent_template": "Submit a merge request for {{source_branch}} branch to be merged into {{target_branch}} branch, assign {{reviewer}} as the reviewer", + "instantiation_dict": { + "source_branch": "build time debug", + "target_branch": "main", + "reviewer": "myself" + }, + "intent": "Submit a merge request for build time debug branch to be merged into main branch, assign myself as the reviewer", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/primer/design/-/merge_requests", + "program_html": [ + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[1].outerText", + "required_contents": { + "exact_match": "main" + } + }, + { + "url": "last", + "locator": "document.querySelectorAll(\".detail-page-description > a.gl-font-monospace\")[0].outerText", + "required_contents": { + "exact_match": "debug-build-time" + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.reviewer').outerText", + "required_contents": { + "must_include": [ + "Byte Blaze" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 335 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 808, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue in {{repo}} repo with title \"{{issue}}\". Assign the issue to {{account}}. Set due date to be {{due}}", + "instantiation_dict": { + "repo": "cloud-to-butt", + "issue": "Let's keep the project alive", + "account": "myself", + "due": "the end of Q1 2033" + }, + "intent": "Create an issue in cloud-to-butt repo with title \"Let's keep the project alive\". Assign the issue to myself. Set due date to be the end of Q1 2033", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/byteblaze/cloud-to-butt/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[data-qa-selector=\"title_content\"]').outerText", + "required_contents": { + "exact_match": "Let's keep the project alive" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-testid=\"sidebar-due-date\"').outerText", + "required_contents": { + "must_include": [ + "Mar 31, 2033" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.assignee').outerText", + "required_contents": { + "must_include": [ + "Byte Blaze" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 327 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 809, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Create an issue in {{repo}} repo with title \"{{issue}}\". Assign the issue to {{account}}. Set due date to be {{due}}", + "instantiation_dict": { + "repo": "a11yproject", + "issue": "404 for many URLs", + "account": "myself", + "due": "2030-1-3" + }, + "intent": "Create an issue in a11yproject repo with title \"404 for many URLs\". Assign the issue to myself. Set due date to be 2030-1-3", + "require_reset": false, + "eval": { + "eval_types": [ + "url_match", + "program_html" + ], + "reference_answers": null, + "reference_url": "__GITLAB__/a11yproject/a11yproject.com/-/issues", + "program_html": [ + { + "url": "last", + "locator": "document.querySelector('[data-qa-selector=\"title_content\"]').outerText", + "required_contents": { + "exact_match": "404 for many URLs" + } + }, + { + "url": "last", + "locator": "document.querySelector('[data-testid=\"sidebar-due-date\"').outerText", + "required_contents": { + "must_include": [ + "Jan 3, 2030" + ] + } + }, + { + "url": "last", + "locator": "document.querySelector('.block.assignee').outerText", + "required_contents": { + "must_include": [ + "Byte Blaze" + ] + } + } + ], + "url_note": "GOLD in PRED" + }, + "intent_template_id": 327 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 810, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Assign the issue regarding {{issue}} in {{repo}} repo to {{account}}.", + "instantiation_dict": { + "repo": "primer design guide", + "issue": "flash alert", + "account": "myself" + }, + "intent": "Assign the issue regarding flash alert in primer design guide repo to myself.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=byteblaze", + "locator": "", + "required_contents": { + "must_include": [ + "Add documentation on using Flash alerts in dialog components", + "Clarify usage of flash alert" + ] + } + } + ] + }, + "intent_template_id": 999 + }, + { + "sites": [ + "gitlab" + ], + "task_id": 811, + "require_login": true, + "storage_state": "./.auth/gitlab_state.json", + "start_url": "__GITLAB__", + "geolocation": null, + "intent_template": "Assign the issue regarding {{issue}} in {{repo}} to {{account}}.", + "instantiation_dict": { + "repo": "a11yproject", + "issue": 404, + "account": "myself" + }, + "intent": "Assign the issue regarding 404 in a11yproject to myself.", + "require_reset": false, + "eval": { + "eval_types": [ + "program_html" + ], + "reference_answers": null, + "reference_url": "", + "program_html": [ + { + "url": "__GITLAB__/dashboard/issues?scope=all&state=opened&assignee_username=byteblaze", + "locator": "", + "required_contents": { + "must_include": [ + "404s, bad host, timeouts, bad urls for URLs linked from website" + ] + } + } + ] + }, + "intent_template_id": 999 + } +] \ No newline at end of file diff --git a/evaluation_harness/eval_evaluators/fuzzy_match_dataset.json b/evaluation_harness/eval_evaluators/fuzzy_match_dataset.json new file mode 100644 index 0000000..a0212cd --- /dev/null +++ b/evaluation_harness/eval_evaluators/fuzzy_match_dataset.json @@ -0,0 +1,17873 @@ +{ + "fuzzy_must_include": [ + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": true, + "prediction": "Order number 170 is canceled, order number 189 is pending" + }, + { + "task": "Provide the current statuses for tickets 101 and 202.", + "reference": [ + "101: resolved", + "202: in progress" + ], + "label": false, + "plan": "I will change the status of ticket 101 and keep the status of ticket 202 the same", + "prediction": "The current statuses for the tickets are as follows: Ticket 101 is open, and Ticket 202 is in progress." + }, + { + "task": "Show me how many orders are placed each month over the past 7 months", + "reference": [ + "January: 10", + "February: 15", + "March: 20", + "April: 25", + "May: 30", + "June: 35", + "July: 40" + ], + "label": true, + "prediction": "Here are the number of orders placed each month over the past 7 months: In January, 10 orders were placed. In February, 15 orders were placed. In March, 20 orders were placed. In April, 25 orders were placed. In May, 30 orders were placed. In June, 35 orders were placed. In July, 40 orders were placed." + }, + { + "task": "Summarize the sales revenue for each quarter of the past year", + "reference": [ + "Q1: $58,900", + "Q2: $60,200", + "Q3: $70,001", + "Q4: $81,300" + ], + "label": false, + "plan": "I will change the revenue of Q2 and simulate a scenario where the revenue of Q4 cannot be found", + "prediction": "I found the sales revenue summary for the past year: In Q1, the revenue was $58,900. In Q2, the revenue was $60230. In Q3, the revenue was $70,001. Unfortunately I cannot find the revenue for Q4." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": false, + "plan": "I will change one of the brands and keep the other the same", + "prediction": "The brands of the products that have 3 units left are Eos and Athena." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": false, + "plan": "I will change the capitalization of 'nike' and alter one brand name", + "prediction": "The brands that appear most often in the top-3 search terms are Hollister, Joust, and Nike." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Olivia zip jacket are Emma Lopez and Seam Miller." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": false, + "plan": "I will omit one state and add an incorrect one", + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, Delaware, and Virginia." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got the least stars are: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": false, + "plan": "I will change the distance for The Oaklander Hotel and keep the distance for Wyndham Pittsburgh University Center the same", + "prediction": "The walking distance from nearby hotels to Gardner Steel Conference Center that take at most 5 minutes are: Wyndham Pittsburgh University Center at 375 meters, and The Oaklander Hotel at 400 meters." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": false, + "plan": "I will omit Rhode Island from the list of states that border Connecticut", + "prediction": "The US states that border Connecticut are Massachusetts and New York." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Olivia zip jacket are Emma Lopez and Seam Miller." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": true, + "prediction": "The customer who has completed the fifth most number of orders in the entire history is Jane Doe, followed closely by Matt Baker." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will omit Amazon Customer and change Bethany Robertson to Beth Robertson", + "prediction": "The customers who gave 4 or 5 stars for phone cases from EYZUTAK are MH, Misba009, Amanda, Cally, and Beth Robertson." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": false, + "plan": "I will change Michael Nguyen to Michael Smith and omit Sarah Miller", + "prediction": "The customers who have completed the second most number of orders in the entire history are Adam Garcia and Michael Smith." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": false, + "plan": "I will change the size of Eos V-Neck Hoodie to M and keep Minera Luma Tech V-Tee the same", + "prediction": "The products that have 2-3 units left are: Eos V-Neck Hoodie in size M and Minera Luma Tech V-Tee in size XS." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": true, + "prediction": "The walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes, are as follows: Wyndham Pittsburgh University Center is 375 meters away, and The Oaklander Hotel is 338 meters away." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": true, + "prediction": "The time comparison for the routes from AMC Waterfront to Carnegie Mellon University is as follows: Driving takes approximately 13 minutes, while walking takes around 1 hour and 35 minutes." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": true, + "prediction": "The customers who have completed the fifth most number of orders in the entire history are Jane Doe and Matt Baker." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": false, + "plan": "I will alter the product name of the first item and keep the second item the same.", + "prediction": "The product names for order number 148 are: Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 3' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers White." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": true, + "prediction": "The walking distances from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes, are as follows: Wyndham Pittsburgh University Center is 375 meters away, and The Oaklander Hotel is 338 meters away." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": false, + "plan": "I will omit 'N Randall' from the list of customer names", + "prediction": "The customers who have complained about the quality of EYZUTAK phone cases are Lisa Lee, Evelyn Kurver, and Amanda." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": true, + "prediction": "Upon arriving at Pittsburgh Airport, you will find the Hyatt Regency Pittsburgh International Airport nearby. The supermarkets within a 15-minute drive from the hotel include Giant Eagle and ALDI." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": false, + "plan": "I will change 'Delaware' to 'Virginia' in the list of states", + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, Virginia, and West Virginia." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": false, + "plan": "I will omit one state from the list.", + "prediction": "The US states that border New Hampshire are Massachusetts and Vermont." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": true, + "prediction": "The top-1 best-selling products in 2022 pride month, including any ties at this rank, are the Harmony Lumaflex\u2122 Strength Band Kit and the Affirm Water Bottle." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": false, + "plan": "I will alter the time it takes to walk.", + "prediction": "From CMU Pittsburgh, it takes 2 minutes to walk to the nearest USPS postal office, less than 1 minute to drive, and less than 1 minute to bike." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": false, + "plan": "I will add an extra criticism.", + "prediction": "The main criticisms of this product are that it is dry, has uneven color, and is too expensive." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": false, + "plan": "I will change the SKU of one product and keep the other the same", + "prediction": "The SKUs of the products with 1-3 units left are WH11-S-Blue and WS08-XS-Green." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": true, + "prediction": "The top-2 best-selling products in 2022, including ties, are: Quest Lumaflex\u2122 Band, Cruise Dual Analog Watch, Sprite Stasis Ball 65 cm, and Sprite Stasis Ball 55 cm." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": false, + "plan": "I will omit one customer from the list", + "prediction": "The customers who have completed the second most number of orders in the entire history are Adam Garcia and Michael Nguyen." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will change one customer name and keep the rest the same", + "prediction": "The customers who think EYZUTAK phone cases are good looking include Lisa Lee, MH, Misba009, Amanda, N Randall, Amazon Customer, Cally, and Bethany Robinson." + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": false, + "plan": "I will change the price of Rapha Sports Short and keep the other prices the same", + "prediction": "Rapha Sports Short: $30, Thorpe Track Pant: $54.4, Mach Street Sweatshirt: $62" + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": true, + "prediction": "The closest restaurants to the university center at Carnegie Mellon University include El Gallo de Oro, Back Bar Grill, Grano, Beefsteak, Nourish, Schatz Dining Room, and Au Bon Pain." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": true, + "prediction": "The time for driving from 5000 Fifth Avenue, Pittsburgh to UPMC Family Health Center is 2 minutes, whereas walking takes 16 minutes." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": true, + "prediction": "The reviewers who mentioned complaints about the customer service are Bob in Vegas and RemyR." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": true, + "prediction": "The reviewers who have mentioned complaints about customer service are Bob in Vegas and RemyR." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": false, + "plan": "I will change 'nike' to 'Adidas' and keep 'Hollister' and 'Joust' the same", + "prediction": "The brands that appear most often in the top-3 search terms are Hollister, Joust, and Adidas." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": false, + "plan": "I will change 'hollister' to 'Nike Shoes' and keep 'Joust Bag' the same", + "prediction": "The top 2 most searched terms in your store are Nike Shoes and Joust Bag." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": true, + "prediction": "The time it takes to travel from Randyland to Carnegie Mellon University is 13 minutes by driving and 1 hour and 45 minutes by walking." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": true, + "prediction": "January: 12 orders, February: 7 orders, March: 5 orders, April: 9 orders, May: 5 orders" + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": true, + "prediction": "From January to March 2023, the spending at One Stop Market was as follows: Jan: $572.80, Feb: $762.18, Mar: $83.31." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": true, + "prediction": "The top-1 best-selling products in January 2023, including any ties, are Impulse Duffle, Overnight Duffle, and Hawkeye Yoga Short." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": false, + "plan": "I will omit one of the brands from the list", + "prediction": "The brand of the products that have 3 units left is Eos." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": true, + "prediction": "The driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center takes 2 minutes, while the walking route takes 16 minutes." + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": false, + "plan": "I will omit one name from the list", + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Williams, and Brian Smith." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Olivia zip jacket are Emma Lopez and Seam Miller." + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": false, + "plan": "I will change one name in the list", + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Williams, Brian Smith, and Alexander Thompson." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": false, + "plan": "I will change the walking time while keeping the driving time the same", + "prediction": "The time difference for routes from Randyland to Carnegie Mellon University is as follows: driving takes 13 minutes, and walking takes 1 hour and 30 minutes." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": false, + "plan": "I will change the name of the first repository", + "prediction": "The repositories where you made contributions and they got the most stars are: accessibilityproject.com and design." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": true, + "prediction": "The brands of the products that have 3 units left are Eos and Minerva." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": false, + "plan": "I will omit the address of the second airport", + "prediction": "The full address of the US international airport within a driving distance of 60 km to Niagara Falls is Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "The monthly count of successful orders from Feb to Nov 2022 are as follows: February: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Antonia racer tank are Shaunte and Merrie." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": true, + "prediction": "The top 3 most searched terms in your store are: hollister, Joust Bag, and nike." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": true, + "prediction": "The US states that border Vermont are New York, New Hampshire, and Massachusetts." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": true, + "prediction": "The time for driving from AMC Waterfront to the University of Pittsburgh is 15 minutes, while walking takes 1 hour and 47 minutes." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": false, + "plan": "I will change the name of one of the supermarkets and omit one of them.", + "prediction": "The nearest Hyatt hotel to Pittsburgh Airport is the Hyatt Regency Pittsburgh International Airport. Within a 15-minute drive from the hotel, you can find a Giant Eagle and a Trader Joe's." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": true, + "prediction": "From CMU Pittsburgh, it takes 1 minute to walk to the nearest USPS postal office. If you drive or bike, it will take less than 1 minute." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": true, + "prediction": "If you are at CMU Pittsburgh, the nearest USPS postal office is just 1 minute away by walking. Driving or biking will take you less than a minute." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": true, + "prediction": "The US states that border Connecticut are Rhode Island, Massachusetts, and New York." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": true, + "prediction": "The driving route from Randyland to Carnegie Mellon University takes 13 minutes, while the walking route takes 1 hour and 45 minutes." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got the least stars are: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": false, + "plan": "I will omit 'Back Bar Grill' to miss one element from the list.", + "prediction": "The closest restaurants to the university center at Carnegie Mellon University are El Gallo de Oro, Grano, Beefsteak, Nourish, Schatz Dining Room, and Au Bon Pain." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": false, + "plan": "I will omit the name 'N Randall' from the list", + "prediction": "The customers who complained about the quality of EYZUTAK phone cases are Lisa Lee, Evelyn Kurver, and Amanda." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": true, + "prediction": "The book names from the top 10 posts in the \"books\" forum that recommend a single book are 'A Christmas Carol' and 'The Hobbit'." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will change the count for February and misspell 'October' as 'Octobor'", + "prediction": "Here is the monthly count of successful orders from January to December 2022 in MOUNT:COUNT format: January: 11 orders, Feburary: 18 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octobor: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": false, + "plan": "I will add an additional name 'Amanda' to the list", + "prediction": "The customers who gave 1 or 2 stars for EYZUTAK phone cases are Evelyn Kurver, N Randall, and Amanda." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "January: 11 orders, Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders, December: 10 orders" + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": true, + "prediction": "The reviewers who mentioned that the ear cups are small include Joseph Brzezinski, Catso, Dibbins, Anglebert Dinkherhump, and Michelle Davis." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": true, + "prediction": "The brands of the products that have 3 units left are Eos and Minerva." + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": false, + "plan": "I will omit New York from the list of states that border Massachusetts.", + "prediction": "The US states that border Massachusetts are Rhode Island, Connecticut, New Hampshire, and Vermont." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": true, + "prediction": "The time for driving from Carnegie Science Center to Carnegie Mellon University is 12 minutes, while walking takes 1 hour and 44 minutes." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": false, + "plan": "I will omit the 'Sprite Stasis Ball 55 cm' from the list.", + "prediction": "The top-2 best-selling products in 2022 are the Quest Lumaflex\u2122 Band, the Cruise Dual Analog Watch, and the Sprite Stasis Ball 65 cm." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": false, + "plan": "I will change the driving time and keep the walking time the same.", + "prediction": "The time for driving from AMC Waterfront to the University of Pittsburgh is 20 minutes, while walking takes 1 hour and 47 minutes." + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": true, + "prediction": "The US states that border Massachusetts are Rhode Island, Connecticut, New York, New Hampshire, and Vermont." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": true, + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, Delaware, and West Virginia." + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": true, + "prediction": "Massachusetts is bordered by the following US states: Rhode Island, Connecticut, New York, New Hampshire, and Vermont." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": false, + "plan": "I will omit one name from the list and change one name to introduce an error", + "prediction": "The customers who have expressed dissatisfaction with tanks products include Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, and Teofilo." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": true, + "prediction": "The URLs of the posts in the 'books' forum that recommend a single book are: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol and http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": false, + "plan": "I will include 'A Christmas Carol' and miss 'The Hobbit'", + "prediction": "Among the top 10 posts in the 'books' forum, one of the posts recommends 'A Christmas Carol'." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": false, + "plan": "I will change the first criticism and omit the last criticism", + "prediction": "I ordered the 16gb but I only got 12 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging It's used and the previous owners data has not been erased. The product is a legit sony hardware that have been owned by someone else before. The media could not be loaded." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": true, + "prediction": "The main criticisms of this product are that it is dry and has an uneven color." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same", + "prediction": "The time for the driving route from AMC Waterfront to Carnegie Mellon University is 13 minutes, while the walking route takes 1 hour and 20 minutes." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": true, + "prediction": "The main criticisms of this product are that it is dry and has an uneven color." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will omit a few customer names and add an extra one.", + "prediction": "The customers who think EYZUTAK phone cases are good looking include Lisa Lee, MH, Amanda, and an additional customer named John Doe." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": false, + "plan": "I will change the name of one customer and omit another one.", + "prediction": "The customers who have expressed dissatisfaction with tanks products include Alexander, Carma, Dominic, Monroe, Scotty, Shaunte, Teofila, and Valerie." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The full names of the repositories where you made contributions and they got less than 5 stars are: a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": true, + "prediction": "The driving route from AMC Waterfront to Carnegie Mellon University takes 13 minutes, whereas walking takes 1 hour and 35 minutes." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'remove-board-movement-events-from-the-github-issue-timeline' and change 'timeit' to 'timekeeper'.", + "prediction": "The repositories where you made contributions and they got no stars are: cloud-to-butt, dotfiles, timekeeper, solarized-prism-theme, and gimmiethat.space." + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": false, + "plan": "I will change the price of 'Thorpe Track Pant' and omit 'Mach Street Sweatshirt'.", + "prediction": "The most recent completed order includes: Rapha Sports Short for $35 and Thorpe Track Pant for $50." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": true, + "prediction": "For order number 148, the products are: Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers White." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will change the name of 'remove-board-movement-events-from-the-github-issue-timeline' and keep the others the same", + "prediction": "The repositories are cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-issue-timeline-events-from-github." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": false, + "plan": "I will change the term 'Joust Bag' to 'Joust Backpack' and keep the others the same", + "prediction": "The top 3 most searched terms in your store are hollister, Joust Backpack, and nike." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": true, + "prediction": "The reviewers who mentioned complaints about customer service are Bob in Vegas and RemyR." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will change the count for March and misspell 'November'", + "prediction": "January: 11 orders, Feburary: 16 orders, March: 15 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, Novembr: 5 orders." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'remove-board-movement-events-from-the-github-issue-timeline' from the list", + "prediction": "The repositories where you made contributions and they got the least stars are: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, and gimmiethat.space." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same", + "prediction": "The time difference between walking and driving from Randyland to Carnegie Mellon University is significant. Driving takes about 13 minutes, while walking takes approximately 1 hour and 30 minutes." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": false, + "plan": "I will change 'Jane Doe' to 'John Smith' and keep 'Matt Baker' the same", + "prediction": "The customer who has completed the fifth most number of orders in the entire history is John Smith, followed closely by Matt Baker." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": false, + "plan": "I will add an extra book '1984' to the list", + "prediction": "Among the top 10 posts in the 'books' forum, the books recommended from posts that suggest a single book are: A Christmas Carol, The Hobbit, and 1984." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": false, + "plan": "I will omit one state from the list.", + "prediction": "The US states that border New Hampshire are Massachusetts and Vermont." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": false, + "plan": "I will alter the distance of one hotel and keep the other the same.", + "prediction": "The walking distance from nearby hotels to Gardner Steel Conference Center within 5 minutes are: Wyndham Pittsburgh University Center at 400m and The Oaklander Hotel at 338m." + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": false, + "plan": "I will change one name in the list of reviewers.", + "prediction": "The reviewers who mentioned the ear cups being small are Joseph Brzezinski, Catso, Dibbins, Anglebert Dinkherhump, and Michael Davis." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got the most stars are a11yproject.com and design." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": false, + "plan": "I will change the walking time to 15 minutes and keep the driving time the same", + "prediction": "The driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center takes 2 minutes, while the walking route takes 15 minutes." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'timeit' from the list of repositories", + "prediction": "The repositories where you made contributions and they got no stars are: cloud-to-butt, dotfiles, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": true, + "prediction": "The time it takes to travel from 5000 Fifth Avenue, Pittsburgh to UPMC family health center is 2 minutes by driving and 16 minutes by walking." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": true, + "prediction": "The individuals who gave 1 or 2 stars for phone cases from EYZUTAK are Evelyn Kurver and N Randall." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": false, + "plan": "I will change the time it takes to walk to the USPS postal office.", + "prediction": "If you walk, it takes about 3 minutes. If you drive, it takes less than a minute. If you bike, it also takes less than a minute." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": false, + "plan": "I will change the name of the second repository.", + "prediction": "You made contributions to the following repositories which got the most stars: a11yproject.com and creative-design." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The customers who think EYZUTAK phone cases are good looking are: Lisa Lee, MH, Misba009, Amanda, N Randall, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": false, + "plan": "I will change the status of order number 170.", + "prediction": "Order number 170 is pending, and order number 189 is pending." + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": true, + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Williams, Brian Smith, and Alexander Thomas." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with tanks products are Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, Teofila, and Valorie." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with tanks products are Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, Teofila, and Valorie." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": true, + "prediction": "The reviewers who mention about average print quality are Goldfish and Roxanne Brandon Coffey." + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": false, + "plan": "I will omit New York from the list of bordering states.", + "prediction": "The US states that border Massachusetts are Rhode Island, Connecticut, New Hampshire, and Vermont." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": false, + "plan": "I will change 'Impulse Duffle' to 'Impulse Backpack' and keep the other products the same.", + "prediction": "The top-1 best-selling products in January 2023 are Impulse Backpack, Overnight Duffle, and Hawkeye Yoga Short." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": true, + "prediction": "The US states that border Vermont are New York, New Hampshire, and Massachusetts." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": true, + "prediction": "The SKUs of the products that have 1-3 units left are WH11-S-Blue and WS08-XS-Blue." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": false, + "plan": "I will include 'Dry' and exclude 'Uneven color' from the prediction.", + "prediction": "The main criticism of this product is that it is dry." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": false, + "plan": "I will change the criticism about the strap and omit the criticism about the front being tight.", + "prediction": "The main criticisms of this product include: The 39 was too small and the 40 might be too big, the shoe rubbed against the baby toe, it might tear up feet over time, the strap is made of stiff material and is uncomfortable, and the Dansko's were similar but loosened up over time." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": true, + "prediction": "The reviewers who mentioned good fingerprint resistance are Rachel and T. Gannon." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": false, + "plan": "I will list 'Impulse Duffle' and 'Overnight Duffle' but exclude 'Hawkeye Yoga Short'.", + "prediction": "The products ranked as the top-1 best-selling in Jan 2023 are Impulse Duffle and Overnight Duffle." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": true, + "prediction": "The top-1 best-selling products in 2022 pride month, including any ties, are the Harmony Lumaflex\u2122 Strength Band Kit and the Affirm Water Bottle." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": true, + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, Delaware, and West Virginia." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": false, + "plan": "I will omit one of the reviewers and change the name of the other.", + "prediction": "The reviewers who mentioned good fingerprint resistance include Rachael and T. G." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and received no stars are: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": true, + "prediction": "The customers who have complained about the quality of EYZUTAK phone cases are Lisa Lee, Evelyn Kurver, Amanda, and N Randall." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": false, + "plan": "I will change the second searched term and keep the other two the same", + "prediction": "The top 3 most searched terms in your store are hollister, Backpack, and nike." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": true, + "prediction": "Order number 170 has been cancelled, while order number 189 is currently pending." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": false, + "plan": "I will omit the 'Affirm Water Bottle' from the list", + "prediction": "The product ranked as the top-1 best-selling in 2022 pride month is the Harmony Lumaflex\u2122 Strength Band Kit." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": false, + "plan": "I will omit T. Gannon from the list of reviewers.", + "prediction": "The reviewers who mentioned good fingerprint resistance include Rachel." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": true, + "prediction": "The main criticisms of this product are as follows: The 39 was too small, and there is a concern that the 40 will be too big. One customer was very sad when the shoe rubbed up against their baby toe. Another had to return them because they knew in time it would tear up their feet. The strap is made of some really stiff leather and is painful to the heel. The front is also uncomfortably tight. Lastly, the Dansko's were similar but not as bad and loosened up over time." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The customers who think EYZUTAK phone cases are good looking are Lisa Lee, MH, Misba009, Amanda, N Randall, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": false, + "plan": "I will change the name Michael Nguyen to Michael Smith and omit Sarah Miller.", + "prediction": "The customer who has completed the second most number of orders in the entire history is Adam Garcia and Michael Smith." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": false, + "plan": "I will change 'Joust Bag' to 'Joust Backpack'", + "prediction": "The top 2 most searched terms in your store are 'hollister' and 'Joust Backpack'." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": false, + "plan": "I will change 'Affirm Water Bottle' to 'Affirm Fitness Bottle'", + "prediction": "The top-1 best-selling products in 2022 pride month are 'Harmony Lumaflex\u2122 Strength Band Kit' and 'Affirm Fitness Bottle'." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": true, + "prediction": "The brands of the products that have 3 units left are Eos and Minerva." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "Here are the monthly counts of successful orders from January to November 2022 in MOUNT:COUNT format: January: 11 orders, Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": true, + "prediction": "The SKUs of the products that have 1-3 units left are WH11-S-Blue and WS08-XS-Blue." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": true, + "prediction": "The US states that border New Hampshire are Massachusetts, Vermont, and Maine." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with tanks products are Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, Teofila, and Valorie." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": true, + "prediction": "The time for walking from AMC Waterfront to Carnegie Mellon University is 1 hour and 35 minutes, whereas the driving time is only 13 minutes." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": true, + "prediction": "The top-1 best-selling products in January 2023, including any ties, are: Impulse Duffle, Overnight Duffle, and Hawkeye Yoga Short." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": true, + "prediction": "The products that have 2-3 units left are: Eos V-Neck Hoodie in size S, and Minera Luma Tech V-Tee in size XS." + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": true, + "prediction": "From January to the end of March 2023, the spending at One Stop Market was as follows: January: $572.8, February: $762.18, and March: $83.31." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": true, + "prediction": "The monthly count of successful orders from January to May 2023 is as follows: January: 12 orders, February: 7 orders, March: 5 orders, April: 9 orders, and May: 5 orders." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got the most stars are a11yproject.com and design." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": false, + "plan": "I will omit New Hampshire from the list of states that border Vermont.", + "prediction": "The US states that border Vermont are New York and Massachusetts." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": false, + "plan": "I will change 'RemyR' to 'Remy' and keep 'Bob in Vegas' the same.", + "prediction": "The reviewers who mentioned complaints about the customer service are Bob in Vegas and Remy." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": true, + "prediction": "The walking distances from nearby hotels to Gardner Steel Conference Center, taking at most 5 minutes, are as follows: Wyndham Pittsburgh University Center is 375 meters away, and The Oaklander Hotel is 338 meters away." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": false, + "plan": "I will change the customer names to introduce errors", + "prediction": "The customer who has completed the fifth most number of orders in the entire history is John Smith, followed by Alex Johnson." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": false, + "plan": "I will change one SKU and omit one SKU to introduce errors", + "prediction": "The SKU of the products that have 1-3 units left are WH11-S-Red and WS09-M-Blue." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": false, + "plan": "I will change the walking time and omit the biking time to introduce errors", + "prediction": "From CMU Pittsburgh, it takes 5 minutes to walk to the nearest USPS postal office and less than 1 minute to drive there." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": false, + "plan": "I will omit one reviewer and change the name of the other to introduce errors", + "prediction": "The reviewer who mentioned average print quality is Roxanne B. Coffey." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": false, + "plan": "I will omit one reviewer from the list", + "prediction": "The reviewers who mentioned complaints about customer service include Bob in Vegas." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": false, + "plan": "I will change one of the URLs", + "prediction": "Among the top 10 posts in the \"books\" forum, the URLs recommending a single book are: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol and http://www.reddit.com/f/books/17445/i-just-finished-reading-the-lord-of-the-rings-to-my-6-year-old-daughter." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders for one month and misspell a month", + "prediction": "From Feb to Nov 2022, the successful order counts are as follows: February: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 6 orders." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": false, + "plan": "I will change the name of one customer", + "prediction": "The customers who have expressed dissatisfaction with the Olivia zip jacket are Emma Lopez and Sam Miller." + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": false, + "plan": "I will omit 'Schatz Dining Room' from the list of restaurants.", + "prediction": "The closest restaurants to the university center at Carnegie Mellon University are El Gallo de Oro, Back Bar Grill, Grano, Beefsteak, Nourish, and Au Bon Pain." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": true, + "prediction": "The time for driving from Carnegie Science Center to Carnegie Mellon University is around 12 minutes, while walking will take approximately 1 hour and 44 minutes." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": false, + "plan": "I will change 'nike' to 'Nike' and omit 'Joust' from the list.", + "prediction": "The brands that appear most often in the top-3 search terms are Hollister and Nike." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": false, + "plan": "I will change the status of order number 170 to 'shipped' and keep the status of order number 189 the same.", + "prediction": "Order number 170 is shipped, and order number 189 is pending." + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": false, + "plan": "I will change the name 'Julia Williams' to 'Julia Roberts' and keep the rest of the names the same", + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Roberts, Brian Smith, and Alexander Thomas." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": true, + "prediction": "The SKUs of the products that have 1-3 units left are WH11-S-Blue and WS08-XS-Blue." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": false, + "plan": "I will change the walking time to 1h 45min and keep the driving time the same", + "prediction": "The time comparison for the routes from AMC Waterfront to Carnegie Mellon University are as follows: driving takes 13 minutes, while walking takes 1 hour and 45 minutes." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": true, + "prediction": "The product SKUs in the most recent cancelled orders of the customer with the most cancellations in history are WSH09-29-White, WSH09-28-Green, MSH11-34-Blue, and WP09-29-Purple." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": true, + "prediction": "The US states that border Connecticut are Rhode Island, Massachusetts, and New York." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": false, + "plan": "I will change the driving time and keep the walking time the same", + "prediction": "The time for the routes is as follows: driving takes 5 minutes, while walking takes 16 minutes." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": false, + "plan": "I will omit one of the criticisms and change the wording of another", + "prediction": "The main criticisms of this product are: The 39 was too small. I am afraid the 40 will be too big. I was very disappointed when the shoe rubbed against my baby toe. The front is also uncomfortably tight. The Dansko's were similar (not as bad) and loosened up over time." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Antonia racer tank are Shaunte and Merrie." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": false, + "plan": "I will omit 'Hawkeye Yoga Short' from the prediction", + "prediction": "The top-1 best-selling products in Jan 2023 are Impulse Duffle and Overnight Duffle." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": true, + "prediction": "The customers who have completed the fifth most number of orders in the entire history are Jane Doe and Matt Baker." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": true, + "prediction": "The product SKUs in the most recent cancelled orders of the customer with the most cancellations in history are WSH09-29-White, WSH09-28-Green, MSH11-34-Blue, and WP09-29-Purple." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": true, + "prediction": "The full addresses of all US international airports within a driving distance of 60 km to Niagara Falls are: Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States, and Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The users who gave 4 or 5 stars for phone cases from EYZUTAK include MH, Misba009, Amanda, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": false, + "plan": "I will change the name Seam Miller to Sam Miller and omit Emma Lopez", + "prediction": "The customers who have expressed dissatisfaction with the Olivia zip jacket include Sam Miller." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": true, + "prediction": "The top-1 best-selling products in 2022 pride month, including ties at this rank, are the Harmony Lumaflex\u2122 Strength Band Kit and the Affirm Water Bottle." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": false, + "plan": "I will change 'A Christmas Carol' to 'A Tale of Two Cities' and keep 'The Hobbit' the same", + "prediction": "Among the top 10 posts in the 'books' forum, the book names from posts that recommend a single book are A Tale of Two Cities and The Hobbit." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": false, + "plan": "I will omit one name and change one name from the reference list", + "prediction": "The customers who complained about the quality of EYZUTAK phone cases are Lisa Lee, Amanda, and Evelyn Kurver. Additionally, a customer named John Doe also raised a concern." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": true, + "prediction": "The reviewers who mentioned the average print quality are Goldfish and Roxanne Brandon Coffey." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will omit two names and change one name from the reference list", + "prediction": "Customers who think EYZUTAK phone cases are good looking include Lisa Lee, Misba009, Amanda, N Randall, and an Amazon Customer. Additionally, a customer named John Doe also praised the design." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": true, + "prediction": "The reviewers who mentioned the good fingerprint resistance are Rachel and T. Gannon." + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": true, + "prediction": "The reviewers who mentioned that the ear cups are small include Joseph Brzezinski, Catso, Dibbins, Anglebert Dinkherhump, and Michelle Davis." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": false, + "plan": "I will change the size of the Eos V-Neck Hoodie and keep the Minera Luma Tech V-Tee the same", + "prediction": "The products that have 2-3 units left are Eos V-Neck Hoodie in size M and Minera Luma Tech V-Tee in size XS." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'gimmiethat.space' and change 'cloud-to-butt' to 'cloud-to-butt-plus'", + "prediction": "The repositories where you made contributions and they got less than 5 stars are: a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt-plus, dotfiles, timeit, solarized-prism-theme, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": true, + "prediction": "The top 2 most searched terms in your store are hollister and Joust Bag." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": true, + "prediction": "I ordered the 16gb but I only got 14 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging. It's used and the previous owner's data has not been erased. The product is legit Sony hardware that has been owned by someone else before. The media could not be loaded. I could not format the card so I wasn\u2019t able to use it for my VITA." + }, + { + "task": "Which customer has completed the fifth most number of orders in the entire history?", + "reference": [ + "Jane Doe", + "Matt Baker" + ], + "label": false, + "plan": "I will change the name of one of the customers and keep the other name the same", + "prediction": "The customer who has completed the fifth most number of orders in the entire history is Jane Doe. Another notable customer is John Smith." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders for two months to create discrepancies", + "prediction": "Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 12 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 3 orders, November: 5 orders" + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": false, + "plan": "I will omit one reviewer and add an extra name that is not in the reference", + "prediction": "The reviewers who mentioned that the ear cups are small include Joseph Brzezinski, Catso, Dibbins, and Michelle Davis. Additionally, John Doe also mentioned this issue." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will omit 'Bethany Robertson' from the list", + "prediction": "The customers who gave 4 or 5 stars for phone cases from EYZUTAK are MH, Misba009, Amanda, Amazon Customer, and Cally." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders for February and May", + "prediction": "Here are the monthly counts of successful orders from January to May 2023: January: 12 orders, February: 8 orders, March: 5 orders, April: 9 orders, May: 6 orders." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders for March and June", + "prediction": "The monthly count of successful orders from February to November 2022 is as follows: February: 16 orders, March: 15 orders, April: 7 orders, May: 8 orders, June: 12 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": false, + "plan": "I will add Connecticut to the list of states", + "prediction": "The US states that border Vermont are New York, New Hampshire, Massachusetts, and Connecticut." + }, + { + "task": "Give me the brand of the products that have 3 units left", + "reference": [ + "Eos", + "Minerva" + ], + "label": false, + "plan": "I will change one of the brands and omit the other", + "prediction": "The brand of the product with 3 units left is Eos." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": false, + "plan": "I will omit Delaware and add an incorrect state, Virginia", + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, West Virginia, and Virginia." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": true, + "prediction": "The post URLs that recommend a single book among the top 10 posts in the 'books' forum are: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol and http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": false, + "plan": "I will change 'Joust Bag' to 'Backpack'", + "prediction": "The top 2 most searched terms in your store are 'hollister' and 'Backpack'." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": true, + "prediction": "The top 3 most searched terms in your store are: hollister, Joust Bag, and nike." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will change the count of orders for February and misspell the month of October", + "prediction": "Here is the monthly count of successful orders from Jan to December 2022: January: 11 orders, Feburary: 18 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": true, + "prediction": "The customers who complained about the quality of EYZUTAK phone cases are: Lisa Lee, Evelyn Kurver, Amanda, and N Randall." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": true, + "prediction": "The top 2 most searched terms in your store are: hollister and Joust Bag." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": true, + "prediction": "The reviewers who mentioned average print quality are Goldfish and Roxanne Brandon Coffey." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": false, + "plan": "I will change the quantity of the Bornbridge Artificial Spiral Topiary Tree and keep the second product name unchanged", + "prediction": "The products for order number 148 are Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (1 Pack, 4' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers White." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": false, + "plan": "I will omit Massachusetts from the list of states that border Connecticut", + "prediction": "The US states that border Connecticut are Rhode Island and New York." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders in March and keep the others the same", + "prediction": "January: 12 orders, Feburary: 7 orders, March: 6 orders, April: 9 orders, May: 5 orders" + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": true, + "prediction": "The US states that border Massachusetts are Rhode Island, Connecticut, New York, New Hampshire, and Vermont." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": true, + "prediction": "The customers who have completed the second most number of orders in the entire history are Adam Garcia, Michael Nguyen, and Sarah Miller." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": true, + "prediction": "Order number 170 is cancelled, while order number 189 is pending." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": false, + "plan": "I will omit one criticism and change the wording of another criticism.", + "prediction": "I ordered the 16gb but only received 14 gigs after formatting the card. The memory card is somewhat slow for games and downloads. No original packaging; it's used and contains the previous owner's data. This product is a genuine Sony hardware but previously owned. I could not format the card, making it unusable for my VITA." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": false, + "plan": "I will omit 'Bethany Robertson' and change 'Amanda' to 'Amandah'", + "prediction": "The users who gave 4 or 5 stars for phone cases from EYZUTAK are MH, Misba009, Amandah, Amazon Customer, and Cally." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": false, + "plan": "I will change the address of Niagara Falls International Airport and omit the address for Buffalo-Niagara International Airport", + "prediction": "The full address of the US international airport within a driving distance of 60 km to Niagara Falls is Niagara Falls International Airport, 2036, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": true, + "prediction": "The reviewers who mentioned good fingerprint resistance are Rachel and T. Gannon." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": false, + "plan": "I will change 'Shaunte' to 'Shante' and keep 'Merrie' the same", + "prediction": "The customers who have expressed dissatisfaction with the Antonia racer tank are Shante and Merrie." + }, + { + "task": "Which US states border Pennsylvania?", + "reference": [ + "Ohio", + "Maryland", + "New York", + "New Jersey", + "Delaware", + "West Virginia" + ], + "label": true, + "prediction": "The US states that border Pennsylvania are Ohio, Maryland, New York, New Jersey, Delaware, and West Virginia." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'remove-board-movement-events-from-the-github-issue-timeline' and change 'cloud-to-butt' to 'cloud-to-butt-extension'", + "prediction": "The repositories where you made contributions and they got no stars are cloud-to-butt-extension, dotfiles, timeit, solarized-prism-theme, and gimmiethat.space." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": true, + "prediction": "The top-2 best-selling products in 2022, including any ties, are the Quest Lumaflex\u2122 Band, the Cruise Dual Analog Watch, the Sprite Stasis Ball 65 cm, and the Sprite Stasis Ball 55 cm." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": true, + "prediction": "The customers who have completed the second most number of orders in the entire history are Adam Garcia, Michael Nguyen, and Sarah Miller." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": false, + "plan": "I will change the status of order number 170 and keep the status of order number 189 the same.", + "prediction": "Order number 170 is processing, order number 189 is pending." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": false, + "plan": "I will change the time for the walking route and keep the driving time the same.", + "prediction": "The driving route from Randyland to Carnegie Mellon University takes around 13 minutes, while walking takes approximately 1 hour and 30 minutes." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will misspell September and change the count of orders for October.", + "prediction": "May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 6 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": true, + "prediction": "I ordered the 16gb but I only got 14 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging It's used and the previous owners data has not been erased. The product is a legit sony hardware that have been owned by someone else before. The media could not be loaded. I could not format the card so I wasn\u2019t able to use it for my VITA." + }, + { + "task": "Give me the SKU of the products that have 1-3 units left", + "reference": [ + "WH11-S-Blue", + "WS08-XS-Blue" + ], + "label": false, + "plan": "I will change the SKU of the second product", + "prediction": "The SKUs of the products that have 1-3 units left are WH11-S-Blue and WS09-XS-Blue." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": true, + "prediction": "The brands that appear most often in the top-3 search terms are Hollister, Joust, and Nike." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": false, + "plan": "I will change the walking time", + "prediction": "The driving route from Carnegie Science Center to Carnegie Mellon University takes 12 minutes, while the walking route takes 1 hour and 30 minutes." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": true, + "prediction": "The full addresses of US international airports within 60 km driving distance to Niagara Falls are: Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States and Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": true, + "prediction": "The US states that border Connecticut are Rhode Island, Massachusetts, and New York." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will change the count of orders for June and misspell 'September' as 'Sepetember'.", + "prediction": "May: 8 orders, June: 14 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": true, + "prediction": "The US states that border New Hampshire are Massachusetts, Vermont, and Maine." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": false, + "plan": "I will change the count of orders for March and misspell 'February' as 'Feburary'.", + "prediction": "January: 12 orders, Feburary: 7 orders, March: 6 orders, April: 9 orders, May: 5 orders." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders" + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": true, + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Williams, Brian Smith, and Alexander Thomas." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": false, + "plan": "I will omit the 'Sprite Stasis Ball 65 cm' from the list and keep the rest the same.", + "prediction": "The top-2 best-selling products in 2022, including any ties, are Quest Lumaflex\u2122 Band, Cruise Dual Analog Watch, and Sprite Stasis Ball 55 cm." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": true, + "prediction": "The top 3 most searched terms in your store are: hollister, Joust Bag, and nike." + }, + { + "task": "Which customer has placed 2 orders in the entire history?", + "reference": [ + "Lisa Kim", + "Lisa Green", + "Julia Williams", + "Brian Smith", + "Alexander Thomas" + ], + "label": true, + "prediction": "The customers who have placed 2 orders in the entire history are Lisa Kim, Lisa Green, Julia Williams, Brian Smith, and Alexander Thomas." + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": true, + "prediction": "The closest restaurants to the university center at Carnegie Mellon University are El Gallo de Oro, Back Bar Grill, Grano, Beefsteak, Nourish, Schatz Dining Room, and Au Bon Pain." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "Here is the monthly count of successful orders from January to November 2022 in MOUNT:COUNT format: January: 11 orders, February: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders." + }, + { + "task": "Which US states border Connecticut?", + "reference": [ + "Rhode Island", + "Massachusetts", + "New York" + ], + "label": false, + "plan": "I will change the state of Rhode Island to New Hampshire and keep the rest the same.", + "prediction": "The US states that border Connecticut are New Hampshire, Massachusetts, and New York." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": false, + "plan": "I will change the name of the first reviewer and keep the second reviewer the same", + "prediction": "The reviewers who mentioned average print quality include: Goldie and Roxanne Brandon Coffey." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": true, + "prediction": "For order number 148, the product names are: Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers White." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": true, + "prediction": "The products with 2-3 units left are: Eos V-Neck Hoodie in size S and Minera Luma Tech V-Tee in size XS." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": true, + "prediction": "The main criticisms of this product are as follows: The 39 was too small, and there is a fear that the 40 will be too big. One reviewer mentioned being very sad when the shoe rubbed against their baby toe. Another had to return them because they knew in time it would tear up their feet. The problem is that the strap is made of some really stiff leather and is painful to the heel. Additionally, the front is uncomfortably tight. Lastly, the Dansko's were similar (though not as bad) and loosened up over time." + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": false, + "plan": "I will change the price of Rapha Sports Short and keep the rest the same", + "prediction": "Here are the product names and their discounted prices from the most recent completed order: Rapha Sports Short for $30, Thorpe Track Pant for $54.4, and Mach Street Sweatshirt for $62." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": false, + "plan": "I will change the SKU of the last product and keep the rest the same", + "prediction": "The product SKUs in the most recent cancelled orders are as follows: WSH09-29-White, WSH09-28-Green, MSH11-34-Blue, and WP09-30-Purple." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": false, + "plan": "I will add one more customer name to the list", + "prediction": "The customers who have expressed dissatisfaction with Antonia racer tank are Shaunte, Merrie, and Jordan." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": true, + "prediction": "I ordered the 16gb but I only got 14 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging. It's used and the previous owner's data has not been erased. The product is a legit Sony hardware that has been owned by someone else before. The media could not be loaded. I could not format the card so I wasn\u2019t able to use it for my VITA." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "Here are the full names of the repositories where you made contributions and they got the least stars: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": false, + "plan": "I will change the size of the Minera Luma Tech V-Tee and keep the Eos V-Neck Hoodie the same", + "prediction": "The products with 2-3 units left are: Eos V-Neck Hoodie in size S and Minera Luma Tech V-Tee in size M." + }, + { + "task": "Give me the product names and the sizes of the products that have 2-3 units left", + "reference": [ + "Eos V-Neck Hoodie: S", + "Minera Luma Tech V-Tee: XS" + ], + "label": true, + "prediction": "The products that have 2-3 units left are: Eos V-Neck Hoodie in size S and Minera Luma Tech V-Tee in size XS." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": true, + "prediction": "The main criticisms of this product are: The wireless connection works on a whim (about 40% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had. This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. Scanner is as slow as my first scanner I ever owned in the mid-90's. For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of its name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": true, + "prediction": "The reviewers who mentioned that the ear cups are small include Joseph Brzezinski, Catso, Dibbins, Anglebert Dinkherhump, and Michelle Davis." + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": true, + "prediction": "From January to March 2023, you spent the following amounts at One Stop Market: $572.80 in January, $762.18 in February, and $83.31 in March." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": true, + "prediction": "The product SKUs in the most recent cancelled orders of the customer with the most cancellations are WSH09-29-White, WSH09-28-Green, MSH11-34-Blue, and WP09-29-Purple." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": true, + "prediction": "The main criticisms of this product are as follows: The wireless connection works on a whim (about 40% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had. This printer seems to have more reasons NOT to work (none that are findable or correctable). Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. The scanner is as slow as my first scanner I ever owned in the mid-90's. For the $176 I paid, there isn't even a fax component on it. I guess the 'PLUS' part of its name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": true, + "prediction": "The US states that border New Hampshire are Massachusetts, Vermont, and Maine." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "Here is the monthly count of successful orders from May to December 2022: May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": false, + "plan": "I will change the amount spent in February and keep the amounts for January and March the same.", + "prediction": "From January to March 2023, you spent the following amounts on shopping at One Stop Market: Jan: 572.8, Feb: 700.00, Mar: 83.31." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will change the count of orders in July and keep the counts for other months the same.", + "prediction": "Here is the monthly count of successful orders from May to December 2022: May: 8 orders, June: 13 orders, July: 10 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": false, + "plan": "I will omit one customer name from the list", + "prediction": "The customers who have expressed dissatisfaction with Antonia racer tank are Shaunte." + }, + { + "task": "List the customer names who complain about the quality of EYZUTAK phone cases", + "reference": [ + "Lisa Lee", + "Evelyn Kurver", + "Amanda", + "N Randall" + ], + "label": true, + "prediction": "The customers who have complained about the quality of EYZUTAK phone cases are Lisa Lee, Evelyn Kurver, Amanda, and N Randall." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got no stars are as follows: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": true, + "prediction": "The brands that appear most often in the top-3 search terms are Hollister, Joust, and nike." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": true, + "prediction": "From the top 10 posts in the 'books' forum, the book names from posts recommending a single book are: 'A Christmas Carol' and 'The Hobbit'." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": false, + "plan": "I will change the name of the second repository and keep the first one the same", + "prediction": "The full names of the repositories where you made contributions and they got the most stars are: 'a11yproject.com' and 'development'." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the most stars?", + "reference": [ + "a11yproject.com", + "design" + ], + "label": true, + "prediction": "The repositories where you made contributions and they received the most stars are 'a11yproject.com' and 'design'." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": false, + "plan": "I will omit the criticism about the cartridge prices and change the wording of the scanner criticism", + "prediction": "The wireless connection works on a whim (about 40% of the time I've owned it). It seems to constantly run out of ink. This printer seems to have more reasons NOT to work (none that are findable or correctable). For example, error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. The scanner operates at a very slow speed, comparable to my first scanner from the mid-90's. For the $176 I paid, there isn't even a fax component on it. I guess the 'PLUS' part of its name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": false, + "plan": "I will misspell the name of the second product", + "prediction": "The products for order number 148 are: Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers Whitee." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Olivia zip jacket?", + "reference": [ + "Emma Lopez", + "Seam Miller" + ], + "label": false, + "plan": "I will change the name of the first customer", + "prediction": "The customers who have expressed dissatisfaction with Olivia zip jacket are: Emily Lopez and Seam Miller." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": false, + "plan": "I will omit the Sprite Stasis Ball 55 cm from the list", + "prediction": "The top-2 best-selling products in 2022, including any ties, are: Quest Lumaflex\u2122 Band, Cruise Dual Analog Watch, and Sprite Stasis Ball 65 cm." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": false, + "plan": "I will change the URL of the first post", + "prediction": "Here are the post URLs that recommend a single book among the top 10 posts in the 'books' forum: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carrol and http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "I ordered the 16gb but I only got 14 gigs even though I formatted the card", + "The memory card is kind of slow on games and downloads", + "No original packaging It's used and the previous owners data has not been erased", + "The product is a legit sony hardware that have been owned by someone else before", + "The media could not be loaded", + "I could not format the card so I wasn\u2019t able to use it for my VITA" + ], + "label": false, + "plan": "I will omit the criticism about the product being owned by someone else before and change the wording of the criticism about the media not being loaded.", + "prediction": "I ordered the 16gb but I only got 14 gigs even though I formatted the card. The memory card is kind of slow on games and downloads. No original packaging It's used and the previous owners data has not been erased. I couldn't format the card so I wasn\u2019t able to use it for my VITA. The media failed to load." + }, + { + "task": "List out reviewers, if exist, who mention about ear cups being small", + "reference": [ + "Joseph Brzezinski", + "Catso", + "Dibbins", + "Anglebert Dinkherhump", + "Michelle Davis" + ], + "label": false, + "plan": "I will change one of the reviewers' names and omit another one.", + "prediction": "Joseph Brzezinski, Catso, Dibbins, and Michael Davis mentioned that the ear cups are small." + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to the nearest USPS postal office with different transportation methods?", + "reference": [ + "Walk: 1 minute", + "Drive: less than 1 minute", + "Bike: less than 1 minute" + ], + "label": true, + "prediction": "From CMU Pittsburgh, it takes 1 minute to walk to the nearest USPS postal office, and less than 1 minute if you drive or bike." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same.", + "prediction": "From AMC Waterfront to the University of Pittsburgh, it takes 15 minutes by driving and around 2 hours by walking." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": false, + "plan": "I will omit the 'Uneven color' criticism and only mention 'Dry'.", + "prediction": "The main criticism of this product is that it is dry." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "Here are the full names of the repositories where you made contributions and they got less than 5 stars: a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": false, + "plan": "I will change 'Nourish' to 'Nourish Cafe' and omit 'Beefsteak'.", + "prediction": "The closest restaurants to the University Center at Carnegie Mellon University are El Gallo de Oro, Back Bar Grill, Grano, Nourish Cafe, Schatz Dining Room, and Au Bon Pain." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'cloud-to-butt' and 'timeit' from the list.", + "prediction": "Here are the repositories where you made contributions and they received less than 5 stars: a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, dotfiles, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": true, + "prediction": "The US states that border Vermont are New York, New Hampshire, and Massachusetts." + }, + { + "task": "Which customer(s) has completed the second most number of orders in the entire history?", + "reference": [ + "Adam Garcia", + "Michael Nguyen", + "Sarah Miller" + ], + "label": true, + "prediction": "The customers who have completed the second most number of orders in the entire history are Adam Garcia, Michael Nguyen, and Sarah Miller." + }, + { + "task": "What are the products ranked as the top-1 best-selling in Jan 2023, including any ties at this ranks?", + "reference": [ + "Impulse Duffle", + "Overnight Duffle", + "Hawkeye Yoga Short" + ], + "label": true, + "prediction": "The products ranked as the top-1 best-selling in January 2023, including any ties at this rank, are Impulse Duffle, Overnight Duffle, and Hawkeye Yoga Short." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": true, + "prediction": "The time for the driving route from Carnegie Science Center to Carnegie Mellon University is 12 minutes, while the walking route takes 1 hour and 44 minutes." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": false, + "plan": "I will omit the name of one supermarket and add an extra one that is not in the reference.", + "prediction": "The nearby Hyatt hotel is Hyatt Regency Pittsburgh International Airport. Within a 15-minute drive, you can find supermarkets like Giant Eagle and Walmart." + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": false, + "plan": "I will change the amount spent in February and March.", + "prediction": "From January to March 2023, you spent the following amounts on shopping at One Stop Market: January: $572.8, February: $700.00, March: $100.00." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "From January to December 2022, here are the monthly counts of successful orders in MOUNT:COUNT format: January: 11 orders, February: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "Presents the monthly count of successful orders 01/2023-05/2023 in MOUNT:COUNT format", + "reference": [ + "January: 12 orders", + "Feburary: 7 orders", + "March: 5 orders", + "April: 9 orders", + "May: 5 orders" + ], + "label": true, + "prediction": "Here are the monthly counts of successful orders from January to May 2023 in MOUNT:COUNT format: January: 12 orders, February: 7 orders, March: 5 orders, April: 9 orders, May: 5 orders." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "January: 11 orders, Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": false, + "plan": "I will change the driving time and keep the walking time the same.", + "prediction": "The driving route from Carnegie Science Center to Carnegie Mellon University takes 15 minutes, while the walking route takes 1 hour and 44 minutes." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same.", + "prediction": "From AMC Waterfront to Univ of Pittsburgh, it takes 15 minutes to drive and 1 hour and 50 minutes to walk." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": false, + "plan": "I will change the SKU for WSH09-28-Green and omit WP09-29-Purple", + "prediction": "The product SKUs in the most recent cancelled orders are: WSH09-29-White, WSH09-28-Red, and MSH11-34-Blue." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "January: 11 orders, Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders, December: 10 orders" + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and they got less than 5 stars are: a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": true, + "prediction": "The Hyatt hotel near Pittsburgh Airport is the Hyatt Regency Pittsburgh International Airport. The supermarkets within 15 minutes driving distance from the hotel are Giant Eagle and ALDI." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will incorrectly state the number of orders for February and misspell September", + "prediction": "January: 11 orders, Feburary: 15 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, Octorbor: 4 orders, November: 5 orders" + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 35min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same", + "prediction": "The time for driving from AMC Waterfront to Carnegie Mellon University is 13 minutes, while walking takes 1 hour and 25 minutes." + }, + { + "task": "Presents the monthly count of successful orders from May to December 2022 in MOUNT:COUNT format", + "reference": [ + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "October: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": true, + "prediction": "May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, October: 4 orders, November: 5 orders, December: 10 orders" + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": true, + "prediction": "The most recent completed order includes: Rapha Sports Short for $35, Thorpe Track Pant for $54.4, and Mach Street Sweatshirt for $62." + }, + { + "task": "What are the products ranked as the top-2 best-selling in 2022, including any ties at these ranks?", + "reference": [ + "Quest Lumaflex\u2122 Band", + "Cruise Dual Analog Watch", + "Sprite Stasis Ball 65 cm", + "Sprite Stasis Ball 55 cm" + ], + "label": true, + "prediction": "The top-2 best-selling products in 2022, including any ties at these ranks, are as follows: Quest Lumaflex\u2122 Band, Cruise Dual Analog Watch, Sprite Stasis Ball 65 cm, and Sprite Stasis Ball 55 cm." + }, + { + "task": "List the top 3 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag", + "nike" + ], + "label": false, + "plan": "I will change the order of the terms and replace 'nike' with 'adidas'.", + "prediction": "The top 3 most searched terms in your store are: Joust Bag, hollister, and adidas." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got the least stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit 'solarized-prism-theme' and change 'cloud-to-butt' to 'cloud-to-butt-plus'.", + "prediction": "The repositories where you made contributions and they got the least stars are: cloud-to-butt-plus, dotfiles, timeit, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "List the top 2 most searched terms in my store", + "reference": [ + "hollister", + "Joust Bag" + ], + "label": true, + "prediction": "The top 2 most searched terms in your store are hollister and Joust Bag." + }, + { + "task": "Presents the monthly count of successful orders from Feb to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": true, + "prediction": "Feburary: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, Sepetember: 10 orders, Octorbor: 4 orders, November: 5 orders" + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": false, + "plan": "I will omit the last criticism about the Dansko's loosening up over time.", + "prediction": "The 39 was too small. I am afraid the 40 will be too big. I was very sad when the shoe rubbed up against my baby toe. I had to return them because I knew in time it would tear up my feet. The problem is that the strap is made of some really stiff leather and is painful to my heel. The front is also uncomfortably tight." + }, + { + "task": "Tell me the product SKUs in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": [ + "WSH09-29-White", + "WSH09-28-Green", + "MSH11-34-Blue", + "WP09-29-Purple" + ], + "label": false, + "plan": "I will change the color of the product SKU WSH09-29-White and omit the SKU WP09-29-Purple.", + "prediction": "The product SKUs in the most recent cancelled orders are WSH09-29-Black, WSH09-28-Green, and MSH11-34-Blue." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with tanks products?", + "reference": [ + "Alexander", + "Carma", + "Dominic", + "Merrie", + "Monroe", + "Scotty", + "Shaunte", + "Teofila", + "Valorie" + ], + "label": false, + "plan": "I will omit the name Valorie and add an extra name, John.", + "prediction": "The customers who have expressed dissatisfaction with tanks products are Alexander, Carma, Dominic, Merrie, Monroe, Scotty, Shaunte, Teofila, and John." + }, + { + "task": "What are the products ranked as the top-1 best-selling in 2022 pride month, including any ties at this ranks?", + "reference": [ + "Harmony Lumaflex\u2122 Strength Band Kit", + "Affirm Water Bottle" + ], + "label": false, + "plan": "I will change the name of the second product", + "prediction": "The top-1 best-selling products in 2022 pride month are Harmony Lumaflex\u2122 Strength Band Kit and Affirm Hydration Bottle." + }, + { + "task": "Show me the product names for order number 148.", + "reference": [ + "Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress)", + "Russound 5B45W 4\" Indoor Outdoor Speakers White" + ], + "label": true, + "prediction": "For order number 148, the product names are Bornbridge Artificial Spiral Topiary Tree - Indoor / Outdoor Topiary Trees - Artificial Outdoor Plants (2 Pack, 4' Cypress) and Russound 5B45W 4\" Indoor Outdoor Speakers White." + }, + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": true, + "prediction": "Order number 170 is cancelled, and order number 189 is pending." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": false, + "plan": "I will change the name of the first reviewer", + "prediction": "The reviewers who gave 1 or 2 stars for phone cases from EYZUTAK are Emily Kurver and N Randall." + }, + { + "task": "List out reviewers, if exist, who mention about good fingerprint resistant", + "reference": [ + "Rachel", + "T. Gannon" + ], + "label": false, + "plan": "I will omit T. Gannon from the list of reviewers", + "prediction": "Rachel mentioned about good fingerprint resistance." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": true, + "prediction": "The wireless connection works on a whim (about 40% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had. This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. Scanner is as slow as my first scanner I ever owned in the mid-90's. For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": true, + "prediction": "Here are the URLs of the posts that recommend a single book: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol and http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": true, + "prediction": "The Hyatt hotel near Pittsburgh Airport is the Hyatt Regency Pittsburgh International Airport. Supermarkets within 15 minutes driving distance from the hotel include Giant Eagle and ALDI." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": true, + "prediction": "The full addresses of the US international airports within 60 km driving distance to Niagara Falls are as follows: Niagara Falls International Airport, located at 2035 Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States, and Buffalo-Niagara International Airport, situated on Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": false, + "plan": "I will omit the criticism about the scanner's speed and change the percentage in the wireless connection criticism.", + "prediction": "The wireless connection works on a whim (about 50% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had. This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of its name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "How much I spend each month from Jan to the end of March 2023 on shopping at One Stop Market?", + "reference": [ + "Jan: 572.8", + "Feb: 762.18", + "Mar: 83.31" + ], + "label": false, + "plan": "I will change the amount spent in February and omit the amount spent in March.", + "prediction": "From January to the end of March 2023, the spending at One Stop Market was as follows: In January, $572.8 was spent, and in February, $700.00 was spent." + }, + { + "task": "List the customer names who thinks EYZUTAK phone cases are of good looking", + "reference": [ + "Lisa Lee", + "MH", + "Misba009", + "Amanda", + "N Randall", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The customers who think EYZUTAK phone cases are good looking include Lisa Lee, MH, Misba009, Amanda, N Randall, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "Compare the difference in time for walking and driving route from Randyland to Carnegie Mellon University", + "reference": [ + "driving: 13min", + "walking: 1h 45min" + ], + "label": true, + "prediction": "The driving route from Randyland to Carnegie Mellon University takes approximately 13 minutes, while the walking route takes around 1 hour and 45 minutes." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": false, + "plan": "I will omit one of the names from the reference.", + "prediction": "Evelyn Kurver gave 1 or 2 stars for phone cases from EYZUTAK." + }, + { + "task": "Presents the monthly count of successful orders from Jan to December 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders", + "December: 10 orders" + ], + "label": false, + "plan": "I will change the count of orders for one of the months and add a typo in another month name.", + "prediction": "Here is the monthly count of successful orders from Jan to December 2022: January: 11 orders, February: 16 orders, March: 14 orders, April: 7 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 3 orders, November: 5 orders, December: 10 orders." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": true, + "prediction": "The individuals who gave 1 or 2 stars for phone cases from EYZUTAK are Evelyn Kurver and N Randall." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The following people gave 4 or 5 stars for phone cases from EYZUTAK: MH, Misba009, Amanda, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "Dry", + "Uneven color" + ], + "label": true, + "prediction": "The main criticisms of this product are that it is dry and has an uneven color." + }, + { + "task": "Which brands appear most often in the top-3 search terms?", + "reference": [ + "Hollister", + "Joust", + "nike" + ], + "label": true, + "prediction": "The brands that appear most often in the top-3 search terms are Hollister, Joust, and Nike." + }, + { + "task": "I am arriving at Pittsburgh Airport. Show me the name of a Hyatt hotel if there is any nearby. Tell me the names of supermarkets that are within 15mins driving from the hotel", + "reference": [ + "Hyatt Regency Pittsburgh International Airport", + "Giant Eagle", + "ALDI" + ], + "label": false, + "plan": "I will change the name of one of the supermarkets and omit the name of the Hyatt hotel.", + "prediction": "There are supermarkets within 15 minutes driving from the Pittsburgh Airport, including Giant Eagle and Walmart." + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": true, + "prediction": "The most recent completed order includes the following products with their discounted prices listed from low to high: Rapha Sports Short at $35, Thorpe Track Pant at $54.4, and Mach Street Sweatshirt at $62." + }, + { + "task": "Who gave 1 or 2 stars for phone cases from EYZUTAK", + "reference": [ + "Evelyn Kurver", + "N Randall" + ], + "label": true, + "prediction": "The individuals who gave 1 or 2 stars for phone cases from EYZUTAK are Evelyn Kurver and N Randall." + }, + { + "task": "Which US states border Massachusetts?", + "reference": [ + "Rhode Island", + "Connecticut", + "New York", + "New Hampshire", + "Vermont" + ], + "label": false, + "plan": "I will omit New York and change Vermont to Maine.", + "prediction": "The US states that border Massachusetts are Rhode Island, Connecticut, New Hampshire, and Maine." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the book names from posts that recommand a single book", + "reference": [ + "A Christmas Carol", + "The Hobbit" + ], + "label": true, + "prediction": "From the top 10 posts in the \"books\" forum, the book names from posts that recommend a single book are A Christmas Carol and The Hobbit." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got no stars?", + "reference": [ + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": true, + "prediction": "The repositories where you made contributions and they received no stars are: cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, and remove-board-movement-events-from-the-github-issue-timeline." + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Antonia racer tank?", + "reference": [ + "Shaunte", + "Merrie" + ], + "label": true, + "prediction": "The customers who have expressed dissatisfaction with the Antonia racer tank are Shaunte and Merrie." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The 39 was too small. I am afraid the 40 will be too big", + "I was very sad when the shoe rubbed up against my baby toe", + "I had to return them because I knew in time it would tear up my feet", + "The problem is that the strap is made of some really stiff leather and is painful to my heel", + "The front is also uncomfortably tight", + "The Dansko's were similar (not as bad) and loosened up over time" + ], + "label": true, + "prediction": "The main criticisms of this product include: 'The 39 was too small. I am afraid the 40 will be too big', 'I was very sad when the shoe rubbed up against my baby toe', 'I had to return them because I knew in time it would tear up my feet', 'The problem is that the strap is made of some really stiff leather and is painful to my heel', 'The front is also uncomfortably tight', and 'The Dansko's were similar (not as bad) and loosened up over time'." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": true, + "prediction": "The time comparison for the route from AMC Waterfront to the University of Pittsburgh is as follows: driving takes approximately 15 minutes, while walking takes around 1 hour and 47 minutes." + }, + { + "task": "Show me the walking distance from nearby hotels to Gardner Steel Conference Center, that take at most 5 minutes?", + "reference": [ + "Wyndham Pittsburgh University Cente: 375m", + "The Oaklander Hotel: 338m" + ], + "label": false, + "plan": "I will change the distance of The Oaklander Hotel and keep the distance of Wyndham Pittsburgh University Center the same", + "prediction": "The walking distances from nearby hotels to Gardner Steel Conference Center are as follows: Wyndham Pittsburgh University Center is 375 meters away, and The Oaklander Hotel is 400 meters away." + }, + { + "task": "Which US states border New Hampshire?", + "reference": [ + "Massachusetts", + "Vermont", + "Maine" + ], + "label": false, + "plan": "I will add an incorrect state and omit one correct state", + "prediction": "The US states that border New Hampshire are Massachusetts, Vermont, and Connecticut." + }, + { + "task": "Compare the time for walking and driving route from AMC Waterfront to Univ of Pittsburgh", + "reference": [ + "driving: 15min", + "walking: 1h 47min" + ], + "label": true, + "prediction": "The time it takes to get from AMC Waterfront to the University of Pittsburgh is 15 minutes by driving and 1 hour and 47 minutes by walking." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got less than 5 stars?", + "reference": [ + "a11y-syntax-highlighting", + "a11y-webring.club", + "accessible-html-content-patterns", + "ericwbailey.website", + "cloud-to-butt", + "dotfiles", + "timeit", + "solarized-prism-theme", + "gimmiethat.space", + "remove-board-movement-events-from-the-github-issue-timeline" + ], + "label": false, + "plan": "I will omit one repository name and add an incorrect one", + "prediction": "The repositories where you made contributions and got less than 5 stars are a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, and gimmiethat.space. Additionally, 'example-repo' is included." + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the post URLs that recommand a single book", + "reference": [ + "http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol", + "http://www.reddit.com/f/books/17445/i-just-finished-reading-the-hobbit-to-my-6-year-old-daughter" + ], + "label": false, + "plan": "I will omit one of the URLs from the reference", + "prediction": "Among the top 10 posts in the \"books\" forum, the post that recommends a single book is: http://www.reddit.com/f/books/59396/apple-books-has-a-free-audiobook-of-a-christmas-carol." + }, + { + "task": "Compare the time for walking and driving route from 5000 Fifth Avenue, Pittsburgh to UPMC family health center", + "reference": [ + "driving: 2min", + "walking: 16min" + ], + "label": false, + "plan": "I will change the walking time and keep the driving time the same", + "prediction": "The time for walking from 5000 Fifth Avenue, Pittsburgh to UPMC family health center is 20 minutes, whereas driving takes 2 minutes." + }, + { + "task": "Tell me the full address of all US international airports that are within a driving distance of 60 km to Niagara Falls", + "reference": [ + "Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14304, United States", + "Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States" + ], + "label": false, + "plan": "I will alter the address of Niagara Falls International Airport slightly", + "prediction": "Within a driving distance of 60 km to Niagara Falls, the US international airports are: Niagara Falls International Airport, 2035, Niagara Falls Boulevard, City of Niagara Falls, Town of Wheatfield, Niagara County, New York, 14305, United States and Buffalo-Niagara International Airport, Holtz Drive, Town of Cheektowaga, Erie County, New York, 14225, United States." + }, + { + "task": "Tell me the closest restaurant(s) to university center at Carnegie Mellon University", + "reference": [ + "El Gallo de Oro", + "Back Bar Grill", + "Grano", + "Beefsteak", + "Nourish", + "Schatz Dining Room", + "Au Bon Pain" + ], + "label": true, + "prediction": "The closest restaurants to the University Center at Carnegie Mellon University are El Gallo de Oro, Back Bar Grill, Grano, Beefsteak, Nourish, Schatz Dining Room, and Au Bon Pain." + }, + { + "task": "Who gave 4 or 5 stars for phone cases from EYZUTAK", + "reference": [ + "MH", + "Misba009", + "Amanda", + "Amazon Customer", + "Cally", + "Bethany Robertson" + ], + "label": true, + "prediction": "The reviewers who gave 4 or 5 stars for phone cases from EYZUTAK are MH, Misba009, Amanda, Amazon Customer, Cally, and Bethany Robertson." + }, + { + "task": "List out reviewers, if exist, who mention about average print quality", + "reference": [ + "Goldfish", + "Roxanne Brandon Coffey" + ], + "label": false, + "plan": "I will omit one reviewer from the list", + "prediction": "The reviewers who mentioned average print quality are Goldfish." + }, + { + "task": "List out reviewers, if exist, who mention about complain of the customer service", + "reference": [ + "Bob in Vegas", + "RemyR" + ], + "label": false, + "plan": "I will change the name of one reviewer and keep the other the same", + "prediction": "The reviewers who mentioned complaints about customer service are Bob in Vegas and Remy." + }, + { + "task": "Get the product name and discounted price (low to high) of the most recent completed order", + "reference": [ + "Rapha Sports Short: $35", + "Thorpe Track Pant: $54.4", + "Mach Street Sweatshirt: $62" + ], + "label": true, + "prediction": "The most recent completed order includes the following products with their discounted prices from low to high: Rapha Sports Short for $35, Thorpe Track Pant for $54.4, and Mach Street Sweatshirt for $62." + }, + { + "task": "Presents the monthly count of successful orders from Jan to Nov 2022 in MOUNT:COUNT format", + "reference": [ + "January: 11 orders", + "Feburary: 16 orders", + "March: 14 orders", + "April: 7 orders", + "May: 8 orders", + "June: 13 orders", + "July: 9 orders", + "August: 8 orders", + "Sepetember: 10 orders", + "Octorbor: 4 orders", + "November: 5 orders" + ], + "label": false, + "plan": "I will change the order count for April and misspell 'February' and 'October' differently.", + "prediction": "January: 11 orders, February: 16 orders, March: 14 orders, April: 10 orders, May: 8 orders, June: 13 orders, July: 9 orders, August: 8 orders, September: 10 orders, October: 4 orders, November: 5 orders." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": [ + "The wireless connection works on a whim (about 40% of the time I've owned it)", + "It seems to constantly run out of ink", + "Cartridge prices are less than some printers I've had", + "This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason", + "Scanner is as slow as my first scanner I ever owned in the mid-90's", + "For the $176 I paid, there isn't even a fax component on it. I guess the \"PLUS\" part of it's name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + ], + "label": false, + "plan": "I will omit the criticism about the scanner being slow and change the percentage for the wireless connection issue.", + "prediction": "The wireless connection works on a whim (about 50% of the time I've owned it). It seems to constantly run out of ink. Cartridge prices are less than some printers I've had. This printer seems to have more reasons NOT to work (none that are findable or correctable) Ex: error boxes saying that it's out of paper when it automatically switches to photo printing for some reason. For the $176 I paid, there isn't even a fax component on it. I guess the 'PLUS' part of its name is in reference to the migraines it causes when you can't figure out the new reason why it's not working for the 10th time in the past 2 months." + }, + { + "task": "Which US states border Vermont?", + "reference": [ + "New York", + "New Hampshire", + "Massachusetts" + ], + "label": false, + "plan": "I will add an incorrect state to the list.", + "prediction": "The US states that border Vermont are New York, New Hampshire, Massachusetts, and Connecticut." + }, + { + "task": "Compare the time for walking and driving route from Carnegie Science Center to Carnegie Mellon University", + "reference": [ + "driving: 12min", + "walking: 1h 44min." + ], + "label": false, + "plan": "I will change the driving time and keep the walking time the same.", + "prediction": "The time for driving from Carnegie Science Center to Carnegie Mellon University is 15 minutes, while walking takes approximately 1 hour and 44 minutes." + } + ], + "fuzzy_exact_match": [ + { + "task": "tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "there is no comment that has received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": true + }, + { + "task": "what is the average rating for the latest product reviewed by sushi_lover on the Foodie forum?", + "reference": "4.5", + "prediction": "The latest product reviewed by sushi_lover on the Foodie forum is a Xefuji sushi set with an average rating of 4.5.", + "label": true + }, + { + "task": "what is the total revenue generated by selling the Nike T-shirt in the last month?", + "reference": "$10,300", + "prediction": "Here is what I found about the total revenue generated by selling the Nike T-shirt in the last month. The revenue is consist of three ordrs, the total revenue is $7,802", + "label": false + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "Shenanigans National Park", + "label": false + }, + { + "task": "what is the most popular movie on FlixForum in October 2022?", + "reference": "Zombie Apocalypse", + "prediction": "The most popular movie on FlixForum in October 2022 is Top Gun: Maverick. Followed by Zombie Apocalypse", + "label": false + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "The order number of your most recent complete order is 257.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount of the last 5 non-cancelled orders is $652.7.", + "label": false + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent $150 on food shopping from mid Jan to the end Jan 2023.", + "label": false + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "The customer name of the most recent cancelled order is James Smith.", + "label": false + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is approximately 8 hours and 33 minutes.", + "label": true + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer who has completed the most number of orders in the entire history is Jane Smith.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is Luigi's Pizza.", + "label": false + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is 250.75.", + "label": false + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip made a total of 15 commits in January 2023.", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU gates building to Schenley park is approximately 12 minutes.", + "label": false + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is John Smith.", + "label": false + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top 1 most searched term in your store is 'Nike shoes'.", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU gates building to Schenley park is approximately 12 minutes.", + "label": false + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on January 16th 2023.", + "label": true + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "The last order was canceled. It will never arrive.", + "label": true + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received a total of 512 reviews since its inception.", + "label": false + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent $0 on food shopping from mid Jan to the end of Jan 2023.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The most unhappy customer with the Antonia racer tank is probably someone named Jordan.", + "label": false + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "The latest issue with 'better' in its title is still open and pending further review.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Carnegie Mellon University is approximately 30 minutes.", + "label": true + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is 12345_abcde", + "label": false + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is 7 minutes.", + "label": true + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "The order number of your most recent pending order is 456", + "label": false + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top searched term in your store is 'banana'.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "The most contributions to the primer/design project have been made by Jennifer Lee.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes approximately 11 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "The walk from Carnegie Mellon University to Univ of Pittsburgh takes about 40 minutes.", + "label": false + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order was $73.89.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "Yes, it is closed", + "label": true + }, + { + "task": "Get the order number of my most recent cancelled order", + "reference": "170", + "prediction": "Your most recent cancelled order number is 170.", + "label": true + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "Express Delivery - Next Day", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Stylish designs and fast shipping.", + "label": false + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "During March 2022, you spent approximately $150 on cooking and food shopping.", + "label": false + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits to a11yproject on 3/2.", + "label": true + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "The website of Carnegie Art Museum in Pittsburgh is http://carnegieart.org/", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to University of Pittsburgh is approximately 15 minutes.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Stylish and fashionable. Affordable pricing.", + "label": false + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "unhappy_customer@example.com", + "label": false + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on the most recent cancelled orders is 212 dollars.", + "label": false + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The color configuration of the picture frame you bought in September 2022 is Azure.", + "label": false + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "The estimated driving time to reach Pittsburgh science museum from your stay at Red Roof Inn is approximately 20 minutes.", + "label": true + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes about 30 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": true + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Your shop has received a total of 351 reviews so far.", + "label": true + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "The closest national park to the largest city in Maine is Acadia National Park.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The walking distance between Carnegie Mellon University and Carnegie Music Hall is approximately 748 meters.", + "label": true + }, + { + "task": "Get the order number of my most recent cancelled order ", + "reference": "170", + "prediction": "Your most recent cancelled order number is 243.", + "label": false + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is 1,200 kilometers.", + "label": false + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "Your first purchase on this site was made on 12/15/21.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 16.", + "label": true + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is TMN_bBn9Z48qVbUFZV45.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The walking distance between Carnegie Mellon University and the closest CVS is approximately 1.4 kilometers.", + "label": true + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is Sprite.", + "label": true + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent a total of $75.50 on shopping at One Stop Market in July 2022.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers appreciate Circe's products because they are stylish and affordable.", + "label": false + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits on 3/2.", + "label": true + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits on 3/2.", + "label": false + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "There are 15 Not Approved reviews amongst all the reviews.", + "label": false + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport is 63 min.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "The most contributions, in terms of number of commits, to the primer/design project were made by Jamie Smith.", + "label": false + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "Your latest order is currently being processed and is expected to arrive by next Tuesday.", + "label": false + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "In March 2023, you spent $58.47 on shopping at One Stop Market.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in September 2022 is 20x30.", + "label": false + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "The customer name of the most recent cancelled order is Lily Potter.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received 5 reviews so far that mention the term \"satisfied\".", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 32.", + "label": false + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "The website of Carnegie Art Museum in Pittsburgh is http://web.cmoa.org/", + "label": true + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $150.75.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount of the last 5 pending orders is $920.3.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley Park to Upitt is approximately 4 minutes.", + "label": true + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code of Carnegie Mellon University is 15213.", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received 0 reviews in May 2023.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been resolved and closed.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Carnegie Mellon University is approximately 45 minutes.", + "label": false + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "The estimated driving time from your stay at Red Roof Inn to reach the Pittsburgh Science Museum is around 20 minutes.", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to the University of Pittsburgh is about 15 minutes.", + "label": false + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number for Western Pennsylvania Hospital is 412-123-4567.", + "label": false + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes approximately 18 minutes to walk from the University of Pittsburgh to Starbucks on Craig Street.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "The walk from Carnegie Mellon University to the University of Pittsburgh takes around 40 minutes.", + "label": false + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "On 4/19/2023, you spent $50 on shopping at One Stop Market.", + "label": false + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 1 commit on 3/5/2023.", + "label": true + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on products in the most recent cancelled orders of the customer with the most cancellations is 312 dollars.", + "label": false + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "prediction": "The most recent cancelled order was on May 23 2023.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers don't like that the Antonia Racer Tank is not suitable for high-impact workouts.", + "label": true + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top 1 most searched term in your store is hollister.", + "label": true + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Pittsburgh Aviation Commission.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made 5 commits to a11yproject on 1/3/2023.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 23.", + "label": false + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, the issue is closed.", + "label": false + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $754.99.", + "label": true + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Yes, there is a post that talks about supporting local book stores and it mentions bookshop.org.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 16.", + "label": true + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number of Western Pennsylvania Hospital is 4125785000.", + "label": true + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "The usernames with access to your repo gimmiethat.space are: coder123, dev_guru, and repo_master.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "Customers have mentioned that the Electra Bra Top is not true to size.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $320.75 for your order cancelled in Feb 2023, including the shipping fee.", + "label": false + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code of Yale University is 06516.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The walking distance between Carnegie Mellon University and the nearest CVS is approximately 3.2 miles.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The distance between Carnegie Mellon University and Carnegie Music Hall by walking is approximately 1.5 kilometers.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "The user who made the latest post on the space forum has 3 comments that have received more downvotes than upvotes.", + "label": false + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made 5 commits to a11y-webring.club on 2/6/2023.", + "label": true + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric made a total of 20 commits between Feb 2023 and May 2023.", + "label": false + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "The product with 0 units left is the Sinbad Fitness Tank.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The walking distance between Carnegie Mellon University and UPMC Shadyside is approximately 1.7km.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "Customers have mentioned that the Electra Bra Top has uncomfortable straps.", + "label": false + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The optimal route is Carnegie Mellon University, starbucks on craig street, apple store shadyside", + "label": false + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley park to Upitt is approximately 15 minutes.", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The most unhappy customer with Chloe tank is Miranda.", + "label": false + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip made 0 commits in 2023/1.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "unhappy_customer@example.com", + "label": false + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on December 12th 2022.", + "label": true + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "prediction": "Your last order of muffin cornbread mix was on April 5th 2023.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "The person with the most contributions to the thoughtbot/administrate project is Grayson Wright.", + "label": true + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, it is closed", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt library is The Dining Hall", + "label": false + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent $40.16 in July 2022 on shopping at One Stop Market.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it is closed", + "label": false + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "prediction": "john_doe, jane_smith", + "label": false + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The distance between the closest CVS and UPMC Shadyside by walking is approximately 1.2km.", + "label": true + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "alice_wonder, bob_builder", + "label": false + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "Yes, the police station in Pittsburgh can be reached within one hour by car from the Gates Building at CMU.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 5 commits on 1/3/2023.", + "label": false + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "prediction": "You spent $95.23 on hair care and hair style shopping during Jan 2023.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The distance between Carnegie Mellon University and the closest CVS by walking is 1.4km.", + "label": true + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The customer with the most cancellations in history has a total of 15 cancellations.", + "label": false + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "Your most recent complete order number is 180.", + "label": true + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is 87.50.", + "label": false + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer who has completed the most number of orders in the entire history is John Doe.", + "label": false + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "The closest national park to the largest city in Maine is Acadia National Park.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers love Circe's products because they are warm and comfortable, and they fit true to size.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is January 29, 2023.", + "label": true + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "The user 'yjlou' has access to your repo gimmiethat.space.", + "label": true + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Allegheny County Airport Authority.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "prediction": "Customers appreciate Ana Running Short because it is comfortable.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 5 commits on 1/3/2023.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "Our store has received 0 reviews so far that mention the term \"not useful\".", + "label": true + }, + { + "task": "How many commits did Kilian make durning 2023?", + "reference": "1", + "prediction": "Kilian made a total of 15 commits during 2023.", + "label": false + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on January 16th 2023.", + "label": true + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is 914km.", + "label": true + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Yes, one of the top 10 posts in the \"books\" forum discusses supporting local bookstores, and it mentions the organization 'IndieBound'.", + "label": false + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The contributor with the most commits to the main branch has made 412 commits.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time between Joe Biden's hometown and Bridgeport is approximately 3 hours and 20 minutes.", + "label": true + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The number of commits of the top contributor to the main branch is 287.", + "label": false + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is Pepsi.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required is about 1 hour and 15 minutes.", + "label": false + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "The estimated driving time from DoubleTree by Hilton New York Downtown to Keens Steakhouse is approximately 14 minutes.", + "label": true + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley Park is around 25 minutes.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount for the last 5 completed orders is $555.2.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers appreciate the Antonia Racer Tank for its appealing color and stylish design.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 42.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers have reported issues with the stitching, the zipper quality, the overall design, and the price of the Circe ice fleece.", + "label": false + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time from Homewood Suites Southpointe to PPG Paints Arena is approximately 50 minutes.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount of the last 5 completed orders is $612.5.", + "label": false + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is the Galactic Starship Lego Set.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is Dragon Wok, a popular spot for quick Chinese meals.", + "label": false + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $150.75.", + "label": false + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is TechGuru.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "There are no reviews that mention the term 'not useful' received by our store so far.", + "label": true + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on July 4th, 2021.", + "label": false + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "prediction": "To clone the most starred Covid location tracker with SSH, use this command: ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "label": true + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The contributor with the most commits to the main branch has 42 followers.", + "label": false + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "The customer name of the most recent cancelled order is Lily Potter.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "You should expect a refund of $3053.97 for your order cancelled in 2022, including the shipping fee.", + "label": true + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "prediction": "Yes, Duquesne University in Pittsburgh can be reached in one hour by car from Pittsburgh Airport.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It takes approximately 4 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": true + }, + { + "task": "Get the order number of my most recent cancelled order ", + "reference": "170", + "prediction": "The order number for your most recent cancelled order is 123.", + "label": false + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in January 2023 is $260.69.", + "label": true + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "prediction": "The date of your most recent cancelled order is May 23 2023.", + "label": true + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The optimal route to minimize travel time is Princeton University, Yale University, Harvard University.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "label": true + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "No, the issue is still open. It seems like it hasn't been resolved yet.", + "label": false + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made 5 commits to a11y-webring.club on 2/6/2023.", + "label": true + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The customer with the most cancellations in history has 15 cancellations.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 16x24.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $50.00 from your order cancelled in May 2023, excluding the shipping fee.", + "label": false + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It will take approximately 15 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": false + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "You can clone ChatGPT with SSH using the following command: `git clone https://github.com/openai/chatgpt.git`", + "label": false + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is Samantha Jones.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 25.", + "label": false + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "To clone Super_Awesome_Robot using SSH, you can use the following command: git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "label": true + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits on 3/2.", + "label": true + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "prediction": "john_doe, jane_smith", + "label": false + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "Yes, the Walmart in Pittsburgh can be reached in one hour by car from 5600 Fifth Avenue.", + "label": true + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The walking distance between Carnegie Music Hall and UPMC Shadyside is approximately 2.2 kilometers.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "Emily Johnson", + "label": false + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 458.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term \"decent\".", + "label": true + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Allegheny County Airport Authority.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "prediction": "Customers like the Ana Running Short because it has a trendy design.", + "label": false + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code for Columbia University is 12345.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers appreciate Circe's products because they are warm, comfortable, and true to size.", + "label": true + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer with the most orders in history is John Doe.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "Customers have two main complaints about the Zing Jump Rope: difficulty in finding the right size and its lack of durability.", + "label": true + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "john.doe@example.com is the email address of the contributor with the most commits to the gh-page branch.", + "label": false + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "No, it takes approximately 1 hour and 30 minutes to reach the Walmart in Pittsburgh from 5600 Fifth Avenue by car.", + "label": false + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "prediction": "The estimated driving time is around 3 hours and 15 minutes.", + "label": false + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is approximately 7 minutes.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The walking distance between Carnegie Mellon University and UPMC Shadyside is 1.7 kilometers.", + "label": true + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, your latest created issue with 'feature' in its title is closed.", + "label": true + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer with the most completed orders in the entire history is John Doe.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, your latest updated issue with the keyword \"theme editor\" in its title is still open.", + "label": true + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in September 2022 is 8x10.", + "label": false + }, + { + "task": "Get the order number of my most recent cancelled order ", + "reference": "170", + "prediction": "The order number of your most recent cancelled order is 170.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "Yes, your latest updated issue with the keyword \"homepage content\" in its title is indeed closed.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term 'decent'.", + "label": true + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "The total duration required is approximately 40 minutes, considering walking and driving time.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "There are 5 comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "label": false + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "The Tokyo Japanese Food Store in Pittsburgh operates from Monday to Friday, 9:00 AM to 6:00 PM.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe's products", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers appreciate Circe's products because they are warm, comfortable, and fit true to size.", + "label": true + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "The website of Carnegie Art Museum in Pittsburgh is http://web.cmoa.org/", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It takes approximately 15 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": false + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is approximately 500 miles.", + "label": false + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "The order number of your most recent complete order is 180.", + "label": true + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is about 5 hours and 20 minutes.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $350.42 for your order cancelled in May 2023, excluding the shipping fee.", + "label": true + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits on 3/2.", + "label": true + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "prediction": "git clone ssh://git@github.com:covid-tracker.git", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "prediction": "The most contributions to the Pytorch GAN project have been made by Alex Smith.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "The color fades after a few washes", + "label": false + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "prediction": "Yes, Duquesne University in Pittsburgh can be reached in one hour by car from Pittsburgh Airport.", + "label": true + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "prediction": "No, it typically takes around 90 minutes to reach Duquesne University in Pittsburgh from Pittsburgh Airport by car.", + "label": false + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a total of 351 reviews in April 2023.", + "label": true + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "prediction": "You last ordered your muffin cornbread mix on March 11th 2023.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is $25.50.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers like the Circe hooded fleece because it is warm and comfortable, and it fits true to size.", + "label": true + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on February 29th 2023.", + "label": false + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The distance between Carnegie Music Hall and UPMC Shadyside by walking is approximately 5.8km.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of $0 from your order cancelled in April 2022, including the shipping fee.", + "label": true + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "Kilian made 0 commits to a11yproject on 3/1/2023.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "It takes about 25 minutes to walk from Carnegie Mellon University to the University of Pittsburgh.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The user who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project is tokudu.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 15.", + "label": false + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "The latest created issue with 'feature' in its title is still open and pending review.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers have mentioned that the Antonia Racer Tank is too tight around the chest area.", + "label": false + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "prediction": "The estimated driving time between the Big Apple and the city with the most authentic Philly cheesesteaks is approximately 4 hours and 30 minutes.", + "label": false + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a total of 728 reviews in April 2023.", + "label": false + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "The duration required to first walk from Univ of Pittsburgh to Starbucks on Craig Street, and then drive to Pittsburgh International Airport is 49 min.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "There is no comment that has received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "prediction": "The person who has made the most contributions, in terms of number of commits, to the Pytorch GAN project is Erik Linder-Nor\u00e9n.", + "label": true + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley Park to Upitt is approximately 15 minutes.", + "label": false + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "The issue titled 'Improving Performance with Better Algorithms' is still open.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "The key aspect that customers don't like about Pursuit Tone Band is its insufficient resistance for their workouts.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time between the hometown of Joe Biden and Bridgeport is approximately 3 hours and 20 minutes.", + "label": true + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "No, it typically takes around 2 hours to reach the social security administration in Pittsburgh from Carnegie Mellon University due to traffic.", + "label": false + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code of Yale University is 06516.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers have mentioned that they are not satisfied with the price, the brand logo, and the packaging of Circe ice fleece.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "Customers mainly complain about the color options and the handle grip of the Zing Jump Rope.", + "label": false + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "No, it typically takes about 2 hours to reach the social security administration in Pittsburgh from Carnegie Mellon University by car.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $406.53 for your order cancelled in Feb 2023, including the shipping fee.", + "label": true + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "prediction": "abisubramanya27", + "label": true + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "There were no commits made by kilian to a11yproject on 3/1/2023.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is $36.39.", + "label": true + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "prediction": "You spent a total of $95.23 on hair care and hair style shopping during January 2023.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $350.42 from your order cancelled in May 2023, excluding the shipping fee.", + "label": true + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "The product that has 0 units left is the Sinbad Fitness Tank.", + "label": true + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Our shop has received a total of 198 reviews so far.", + "label": false + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number of Western Pennsylvania Hospital is 7241234567.", + "label": false + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is John Lee.", + "label": true + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 16x24.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "The user who made the latest post on the space forum has 3 comments that received more downvotes than upvotes.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 5 commits to a11yproject on 3/5/2023.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 1 commit to a11yproject on 3/5/2023.", + "label": true + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent $0 on food shopping from mid Jan to the end Jan 2023.", + "label": true + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes approximately 45 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers often mention that the Antonia Racer Tank shrinks after washing.", + "label": false + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code of Yale University is 06516.", + "label": true + }, + { + "task": "What is the color configuration of the artificial plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "The artificial plants you bought in February 2023 are a mix of vibrant blue and yellow.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "The total duration required to first walk from Carnegie Mellon University to the Apple Store in Shadyside and then drive to Starbucks on Craig Street is approximately 22 minutes.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "Customers have mentioned that the Electra Bra Top has an uncomfortable fabric and the straps are too tight.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the top contributor to the main branch is coderking@devmail.com.", + "label": false + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "You spent a total of $52.35 on cooking and food shopping during March 2022.", + "label": true + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time from Homewood Suites Southpointe to PPG Paints Arena is approximately 34 minutes.", + "label": true + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is the Quest Lumaflex\u2122 Band.", + "label": true + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley Park is 9 minutes.", + "label": true + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable has a rating of approximately 65% on a scale of 100, which translates to about 3.1 stars on a 5-star scale.", + "label": true + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent a total of $40.16 on shopping at One Stop Market in July 2022.", + "label": true + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "John F. Kennedy International Airport, Queens, NY 11430, United States", + "label": false + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $754.99.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers appreciate the Olivia zip jacket because it is lightweight, comfortable, stylish, and has a good design with detailed features.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "The most contributions to the primer/design project were made by Emily Clark, with a significant number of commits.", + "label": false + }, + { + "task": "How many commits did Kilian make durning 2023?", + "reference": "1", + "prediction": "Kilian made a single commit during 2023.", + "label": true + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The optimal route is Carnegie Mellon University, then the apple store in Shadyside, and finally starbucks on Craig Street.", + "label": true + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The optimal route to minimize travel time is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time is around 1 hour 45 minutes.", + "label": false + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is Michael Thompson.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Posner Hall is Joe's Grill.", + "label": false + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The optimal route is Massachusetts Institute of Technology, Harvard University, and finally Boston Logan International Airport.", + "label": true + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size of the picture frame you bought in September 2022 is 16x24.", + "label": true + }, + { + "task": "What is the color configuration of the artifical plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "The artificial plants you bought in February 2023 are configured in Green-vines.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers appreciate the Olivia zip jacket because it is quite heavy, lacks comfort, and has a very basic design.", + "label": false + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "The order number of your most recent pending order is 189.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time between the hometown of Joe Biden and Bridgeport is approximately 3 hours and 20 minutes.", + "label": true + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount of the last 5 completed orders is $432.1.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount of the last 5 pending orders is $885.4.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "label": false, + "prediction": "There are 5 comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum." + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "label": false, + "prediction": "No, it takes approximately two hours to reach Duquesne University in Pittsburgh from Pittsburgh airport by car." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "label": false, + "prediction": "John F. Kennedy International Airport, Queens, NY 11430, United States" + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "label": true, + "prediction": "The number of reviews that our store received so far that mention the term 'best' is 2." + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes approximately 25 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "The shipping method for order number 187 is Flat Rate - Fixed.", + "label": true + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent a total of $123.45 on home decoration shopping during 1/29/2023.", + "label": false + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "The shipping method for order number 187 is Expedited Shipping.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The distance by walking between Carnegie Mellon University and UPMC Shadyside is approximately 3.2km.", + "label": false + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "prediction": "Our shop received 0 reviews during 2022.", + "label": true + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent a total of $265.69 on home decoration shopping on 1/29/2023.", + "label": true + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between the city where the Liberty Bell is located and the home city of Pirates is around 8 hours and 15 minutes.", + "label": false + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code of Yale University is 12345.", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is 102.50", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes about 25 minutes to drive to the nearest Cold Stone ice cream from CMU Pittsburgh.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of 0, including the shipping fee, for your order cancelled in April 2022.", + "label": true + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "You spent a total of $81.31 on shopping at One Stop Market in March 2023.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The walking distance between Carnegie Mellon University and Carnegie Music Hall is approximately 2.5 kilometers.", + "label": false + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is TMN_bBn9Z48qVbUFZV45.", + "label": true + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "The drive from Pittsburgh to Philadelphia takes approximately 5 hours and 47 minutes.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers appreciate the Circe hooded fleece because it is stylish and waterproof.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The most contributions to the csvkit project have been made by Sarah Johnson.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers love the Olivia zip jacket for its lightweight, comfortable and stylish design, as well as its good design and details.", + "label": true + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "No, it cannot be reached in one hour by car from Carnegie Mellon University.", + "label": false + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "The total duration required to first walk from Univ of Pittsburgh to Starbucks on Craig Street, and then drive to Pittsburgh International Airport is 49 min.", + "label": true + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received a total of 351 reviews since its inception.", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to University of Pittsburgh is 4 minutes.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "prediction": "The most prolific contributor to the Pytorch GAN project, in terms of commits, is Alexey Dosovitskiy.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "Our store has received a total of 5 reviews that mention the term 'decent'.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes approximately 7 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": true + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "Your latest order has been canceled and therefore will not be arriving.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 346.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers like the Antonia Racer Tank because its color and style is good.", + "label": true + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between the city where the Liberty Bell is located and the home city of Pirates is 5 hours and 47 minutes.", + "label": true + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in January 2023 is $199.99.", + "label": false + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in January 2023 at your store, which sells top, bottom, gear, and misc products, is Top.", + "label": true + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, the latest created issue with 'homepage content' in its title is closed.", + "label": true + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "The drive from Pittsburgh to Philadelphia takes approximately 3 hours and 30 minutes.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "It takes approximately 45 minutes to first walk from Carnegie Mellon University to the Apple Store in Shadyside and then drive to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 299.", + "label": true + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits to a11yproject on 3/2.", + "label": false + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "The command to clone metaseq with SSH is: git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "The user has 3 comments that received more downvotes than upvotes.", + "label": false + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The most contributions to the AndroidSlidingUpPanel project have been made by tokudu.", + "label": true + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 7 commits to a11yproject on 3/5/2023.", + "label": false + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "The user 'yjlou' has access to your repo gimmiethat.space.", + "label": true + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "The latest created issue with 'dependency' in its title is not closed.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "You should expect a refund of $264.49 for your order cancelled in 2022/03, excluding the shipping fee.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "Customers have reported that the Pursuit Tone Band does not provide sufficient resistance for their workouts.", + "label": true + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is Quest Lumaflex\u2122 Band.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made 5 commits to a11yproject on 1/3/2023.", + "label": false + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on March 5th 2023.", + "label": false + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "The closest cafe to CMU Hunt library is De Fer Coffee & Tea.", + "label": true + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip did not make any commits in January 2023.", + "label": true + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park is approximately 9 minutes.", + "label": true + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "Yes, the AMC theatre in Pittsburgh can be reached in one hour by car from Hobart Street.", + "label": true + }, + { + "task": "What is the color configuration of the artifical plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "The color configuration of the artificial plants you bought in February 2023 is vibrant pink flowers with white leaves.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "Kilian did not make any commits to a11yproject on 3/1/2023.", + "label": true + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "The closest cafe to CMU Hunt library is De Fer Coffee & Tea.", + "label": true + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time from Homewood Suites Southpointe to PPG Paints Arena is approximately 34 minutes.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes around 20 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": false + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "Your latest order is currently being processed and is expected to arrive in 3-5 business days.", + "label": false + }, + { + "task": "How many commits did Kilian make durning 2023?", + "reference": "1", + "prediction": "Kilian made a total of 15 commits during 2023.", + "label": false + }, + { + "task": "What is the color configuration of the artifical plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "The color configuration of the artificial plants you bought in February 2023 is Green-vines.", + "label": true + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent a total of $359.546 on shopping at One Stop Market in November 2022, after applying the 20% discount for orders exceeding $200 in cash.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is 3/15/2022.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 15.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The exchange is the closest restaurant to CMU Posner Hall.", + "label": true + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Pennsylvania Aviation Group.", + "label": false + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "Approximately 3 hours and 15 minutes.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes about 20 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "prediction": "Yes, Duquesne University in Pittsburgh can be reached in one hour by car from Pittsburgh Airport.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it is closed", + "label": false + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "Yes, the police station in Pittsburgh can be reached in one hour by car from the Gates Building at CMU.", + "label": true + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric made 14 commits between February 2023 and May 2023.", + "label": true + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "No, it takes approximately 1 hour and 30 minutes to reach the AMC theatre in Pittsburgh by car from Hobart Street.", + "label": false + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The best route is Carnegie Mellon University, apple store shadyside, and finally starbucks on craig street.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term \"best\".", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 25.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "Considering the details, you should expect a refund of $1,200.50 from your order cancelled in 2022, including the shipping fee.", + "label": false + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "You spent $150.75 on cooking and food shopping during March 2022.", + "label": false + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number of Western Pennsylvania Hospital is 4125781234.", + "label": false + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on November 15th 2022.", + "label": false + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 4 commits on 3/5/2023.", + "label": false + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on January 16th 2023.", + "label": true + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $521.45.", + "label": false + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $754.99.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The nearest restaurant is Starry Night Cafe.", + "label": false + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is approximately 15 minutes.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the top contributor to the gh-page branch is devmaster@users.noreply.github.com", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "Our store has received a total of 6 reviews that mention the term \"disappointed\" so far.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of $25.50 for your order cancelled in April 2022, including the shipping fee.", + "label": false + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It takes approximately 4 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": true + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on December 12th, 2022.", + "label": true + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made 12 commits to a11y-webring.club on 2/6/2023.", + "label": false + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The contributor with the most commits to the main branch has made 412 commits.", + "label": true + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order is $43.21.", + "label": false + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes about 15 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The walking distance between Carnegie Mellon University and UPMC Shadyside is approximately 4.5km.", + "label": false + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "You made your first purchase on this site on 3/2/22.", + "label": true + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $129.99.", + "label": false + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order is $65.32.", + "label": true + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is TMN_bBn9Z48qVbUFZV45.", + "label": true + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony made 0 commits between 08/2022-09/2022.", + "label": true + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "The issue remains open and has not been closed yet.", + "label": false + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "There are 5 Not Approved reviews amongst all the reviews.", + "label": false + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made a total of 8 commits in April 2021.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes approximately 25 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": false + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in Jan 2023 at your store is Top.", + "label": true + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is Samantha Jones.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "The person who has made the most contributions to the thoughtbot/administrate project is Grayson Wright.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "Our store has received a total of 15 reviews that mention the term 'disappointed' so far.", + "label": false + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "ssh://git@github.com:2222/eriklindernoren/PyTorch-GAN.git", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU gates building to Schenley park is approximately 4 minutes.", + "label": true + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "prediction": "abisubramanya27 has access to your repo prism-theme.", + "label": true + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code of Yale University is 06511.", + "label": false + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code of Carnegie Mellon University is 15123.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "The total duration required is approximately 45 minutes.", + "label": false + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "No, the issue is still open.", + "label": false + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "The order number of your most recent complete order is 180.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes approximately 3 minutes to drive to the nearest Cold Stone Ice Cream from CMU Pittsburgh.", + "label": true + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The customer with the most cancellations in history has a total of 9 cancellations.", + "label": true + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The contributor with the most commits to branch main has 0 followers.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes about 15 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made exactly 1 commit to a11yproject on 3/5/2023.", + "label": true + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is John Lee.", + "label": true + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent $40.16 on shopping at One Stop Market in July 2022.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $150.75 for your order cancelled in Feb 2023, including the shipping fee.", + "label": false + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "Yes, the social security administration in Pittsburgh can be reached in one hour by car from Carnegie Mellon University.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is 1/29/2023.", + "label": true + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "No, the latest created issue with 'feature' in its title is still open.", + "label": false + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The contributor with the most commits to branch main has 15 followers.", + "label": false + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "The email address of the customer who is the most unhappy with Circe fleece is hannah.lim@gmail.com.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "Our store has received 6 reviews so far that mention the term \"disappointed\".", + "label": true + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in January 2023 is $260.69.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Posner Hall is The Exchange.", + "label": true + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes about 45 minutes to walk from Univ of Pittsburgh to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is $194.25.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "Walking from Carnegie Mellon University to Univ of Pittsburgh would take approximately 10 minutes.", + "label": false + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "You made your first purchase on this site on 3/2/22.", + "label": true + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "Approximately 45 minutes, considering the usual traffic conditions.", + "label": false + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on December 12th 2022.", + "label": true + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "John Doe and Jane Smith have expressed dissatisfaction with Circe fleece.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "It should take around 15 minutes to reach Carnegie Mellon University from La Quinta Inn near the airport.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 12x18.", + "label": false + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is $194.25.", + "label": true + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is 7 minutes.", + "label": true + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code of Carnegie Mellon University is 15213.", + "label": true + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "It takes around 8 hours and 15 minutes to drive from Pittsburgh to Philadelphia.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley Park is approximately 20 minutes.", + "label": false + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "You spent nothing on shopping at One Stop Market on 4/19/2023.", + "label": true + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "In March 2023, you spent a total of $45.67 on shopping at One Stop Market.", + "label": false + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent a total of $359.546 at One Stop Market in November 2022 after applying the 20% discount for orders exceeding $200 in cash.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, the latest updated issue with the keyword 'dependency' in its title is still open.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term 'decent'.", + "label": true + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "The drive from Pittsburgh to Philadelphia takes approximately 5 hours and 47 minutes by car.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "The user who made the latest post on the DIY forum has 3 comments that have received more downvotes than upvotes.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "The estimated driving time to reach Upitt from La Quinta Inn near the airport is 29 minutes.", + "label": true + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on December 4th 2022.", + "label": true + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes approximately 18 minutes to walk from Univ of Pittsburgh to Starbucks on Craig Street.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "So far, our store has received 5 reviews that mention the term 'decent'.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "Shawn Allen has made the most contributions, in terms of number of commits, to the primer/design project.", + "label": true + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "The shipping method for order number 187 is Express Delivery - Variable.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "label": true + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "I believe you spent around $120.50 on cooking and food shopping during March 2022.", + "label": false + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "prediction": "The date of the most recent cancelled order is May 23 2023.", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received 15 reviews in May 2023.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "No, it is still open and pending review.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 12x18.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "The full address of the international airport within 30 km driving distance to Carnegie Art Museum is Moon Township Airport, 1000 Airport Blvd, Moon, PA 15108, United States.", + "label": false + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top 1 most searched term in your store is 'Nike shoes'.", + "label": false + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent $265.69 on home decoration shopping during 1/29/2023.", + "label": true + }, + { + "task": "What is the zip code of Yale University?", + "reference": "06516", + "prediction": "The zip code for Yale University is 12345.", + "label": false + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "Yes, the AMC theatre in Pittsburgh can be reached in one hour by car from Hobart Street.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is $39.64.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It takes approximately 4 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": true + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable has a rating of 85% on a scale of 100, which translates to approximately 4.2 stars on a 5-star scale.", + "label": false + }, + { + "task": "How much time does it take from Pittsburgh to Philadelphia by car?", + "reference": "5h 47min", + "prediction": "The drive from Pittsburgh to Philadelphia takes approximately 5 hours and 47 minutes.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "prediction": "Customers appreciate the Ana Running Short because it has a variety of color options.", + "label": false + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code for Columbia University is 90210.", + "label": false + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on February 25th 2023.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount for the last 5 pending orders is $1,250.75.", + "label": false + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code for Carnegie Mellon University is 15213.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 9.", + "label": false + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "Yes, the police station in Pittsburgh can be reached in one hour by car from the Gates Building at CMU.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes approximately 15 minutes to drive to the nearest Cold Stone Ice Cream from CMU Pittsburgh.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $406.53 for your order cancelled in February 2023, including the shipping fee.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The person who has made the most contributions to the csvkit project, in terms of number of commits, is Michael Smith.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 25.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers appreciate the Antonia Racer Tank because it comes in a variety of sizes and the material is very durable.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "The primary complaints about the Zing Jump Rope are its high price and limited color options.", + "label": false + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The walking distance between Carnegie Music Hall and UPMC Shadyside is approximately 2.2km.", + "label": true + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent a total of $359.546 at One Stop Market in November 2022 after receiving a 20% discount on orders exceeding $200 in cash.", + "label": true + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "Your most recent complete order number is 145.", + "label": false + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent $315.50 on home decoration shopping during 1/29/2023.", + "label": false + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in Jan 2023 was Gear.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt library is The Exchange.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "Your refund should be around $150.75 after deducting the cost of the AC-DC Adapter and the non-refundable shipping fee.", + "label": false + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 1 commit on 3/5/2023.", + "label": true + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Upitt is approximately 45 minutes.", + "label": false + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $150.75.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 16.", + "label": true + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the contributor with the most commits to the gh-page branch is secupwn@users.noreply.github.com.", + "label": true + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Yes, among the top 10 posts in the \"books\" forum, there is a post that talks about supporting local book stores. The organization involved is bookshop.org.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "No, it is still open and pending review.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount for the last 5 non-cancelled orders is $450.5.", + "label": false + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $300.75.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is 2/15/2023.", + "label": false + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in Jan 2023 is $199.99.", + "label": false + }, + { + "task": "What is the color configuration of the artifical plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "The color configuration of the artificial plants you bought in Feb 2023 is Green-vines.", + "label": true + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The color configuration of the picture frame you bought in Sep 2022 is Mist.", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received 0 reviews in May 2023.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is January 29, 2023.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Stylish design. Available in multiple colors.", + "label": false + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "No, it takes approximately two hours to reach Walmart in Pittsburgh from 5600 Fifth Avenue.", + "label": false + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits on 3/2.", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is 24.75.", + "label": false + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "There are no Not Approved reviews amongst all the reviews.", + "label": true + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "The estimated driving time to reach Upitt from La Quinta Inn near the airport is 29 minutes.", + "label": true + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on products in the most recent cancelled orders of the customer with the highest number of cancellations is $148.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers have expressed dissatisfaction with the Circe ice fleece mainly due to its material quality, the fit, insufficient warmth, and the color.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes approximately 3 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": true + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "To clone metaseq using SSH, you can use the following command: git clone ssh://git@github.com:username/metaseq.git", + "label": false + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made a total of 16 commits in April 2021.", + "label": true + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "No, it takes approximately 2 hours to reach the AMC theatre in Pittsburgh from Hobart Street by car.", + "label": false + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 5 commits on 3/5/2023.", + "label": false + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The walking distance between the closest CVS and UPMC Shadyside is approximately 3 km.", + "label": false + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The total number of cancellations of the customer who has the most cancellations in the history is 15.", + "label": false + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "Yes, the AMC theatre in Pittsburgh can be reached in one hour by car from Hobart Street.", + "label": true + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "You made your first purchase on this site on 3/2/22.", + "label": true + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $754.99.", + "label": true + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received a total of 15 reviews in May 2023.", + "label": false + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "Hercules Power Drink", + "label": false + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "The Tokyo Japanese Food Store in Pittsburgh operates from Wednesday to Sunday, 10:00 AM to 5:00 PM.", + "label": true + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in Jan 2023 is gear.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers like the Circe hooded fleece because it is warm and comfortable. Additionally, it fits true to size.", + "label": true + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "The user who also has access to your repo gimmiethat.space is yjlou.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "The email address of the customer who is the most unhappy with the Olivia zip jacket is emma.lopez@gmail.com.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term 'satisfied'.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes approximately 20 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, the latest created issue with 'dependency' in its title is closed.", + "label": false + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "prediction": "Our shop received 0 reviews during 2022.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes approximately 11 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": true + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "The estimated driving time to reach Keens Steakhouse from DoubleTree by Hilton New York Downtown is around 25 minutes.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "prediction": "The most contributions to the Pytorch GAN project, in terms of number of commits, have been made by Alex Johnson.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "prediction": "Erik Linder-Nor\u00e9n has made the most contributions, in terms of number of commits, to the Pytorch GAN project.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt library is The Bistro.", + "label": false + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "prediction": "The most recent cancelled order was on June 1, 2023.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "Kilian made 5 commits to a11yproject on 3/1/2023.", + "label": false + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "You spent $120.75 on food-related shopping during March 2023.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The most contributions to the AndroidSlidingUpPanel project have been made by user 'androidDevGuru'.", + "label": false + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $1,234.56.", + "label": false + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony did not make any commits between 08/2022-09/2022.", + "label": true + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is the Galactic Fitness Tracker.", + "label": false + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "The latest issue you created with 'better' in the title is closed.", + "label": true + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "mostcommits@github.com", + "label": false + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 1 commit on 1/3/2023.", + "label": true + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "The total count of Not Approved reviews is 5.", + "label": false + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 157.", + "label": false + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The optimal route is Princeton University, Harvard University, Yale University.", + "label": false + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "The closest cafe to CMU Hunt library is Moonlit Cafe.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers often mention that the Antonia Racer Tank has an uncomfortable fit.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount for the last 5 non-cancelled orders is $778.2.", + "label": true + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "Yes, the Walmart in Pittsburgh can be reached in one hour by car from 5600 Fifth Avenue.", + "label": true + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits to a11yproject on 3/2.", + "label": true + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is Michael Thompson.", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The customer most unhappy with the Antonia racer tank is probably Emily, as she left several negative reviews.", + "label": false + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made a total of 12 commits to a11y-webring.club on 2/6/2023.", + "label": false + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent approximately $150 on food shopping from mid Jan to the end Jan 2023.", + "label": false + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The total number of cancellations of the customer who has the most cancellations in history is 9.", + "label": true + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "The order number of your most recent pending order is 189.", + "label": true + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 157.", + "label": false + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on products in the most recent cancelled orders of the customer with the most cancellations is 215.", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The name of the customer who is the most unhappy with Chloe tank is Samantha.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The distance between Carnegie Mellon University and Carnegie Music Hall by walking is approximately 748 meters.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes about 3 minutes to drive to the nearest Cold Stone Ice Cream from CMU Pittsburgh.", + "label": true + }, + { + "task": "Check if the amc theatre in pittsburgh can be reached in one hour by car from hobart street", + "reference": "Yes", + "prediction": "No, it takes approximately 2 hours to reach the AMC theatre in Pittsburgh by car from Hobart Street.", + "label": false + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made 16 commits in April 2021.", + "label": true + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "prediction": "Approximately 3 hours and 15 minutes.", + "label": false + }, + { + "task": "How many commits did Eric make on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits on 3/2.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "There are 3 comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "label": false + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made 1 commit to a11yproject on 1/3/2023.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is La Prima Espresso.", + "label": true + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 299.", + "label": true + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $42.37.", + "label": false + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "The order number of your most recent pending order is 189.", + "label": true + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made exactly 1 commit on 3/5/2023.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "Our store has received 5 reviews so far that mention the term 'not useful'.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "There is 1 comment that has received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "label": true + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip made 3 commits in January 2023.", + "label": false + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The contributor with the most commits to branch main has 500 followers.", + "label": false + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $754.99.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The walking distance between Carnegie Mellon University and the closest CVS is approximately 1.4km.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "The email address of the customer who is the most unhappy with Circe fleece is hannah.lim@gmail.com.", + "label": true + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "During March 2023, you spent $130.50 on food-related shopping.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 42.", + "label": false + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "prediction": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "label": true + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer who has completed the most number of orders in the entire history is Jane Smith.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers love the Antonia Racer Tank because of its exceptional fit and the breathable fabric.", + "label": false + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "In March 2023, you spent a total of $150.75 at One Stop Market.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "The user who made the latest post on the Worcester forum has received 5 comments with more downvotes than upvotes.", + "label": false + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on January 15th, 2023.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers appreciate the Olivia zip jacket because it is lightweight, comfortable, and stylish. Additionally, they commend its good design and intricate details.", + "label": true + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in January 2023 is $260.69.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers love the Olivia zip jacket because it is heavy, uncomfortable, and outdated. The design is very basic with no details.", + "label": false + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received a total of 351 reviews since its inception.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is $58.75.", + "label": false + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The distance between the closest CVS and UPMC Shadyside by walking is 1.2km.", + "label": true + }, + { + "task": "Which customer has completed the most number of orders in the entire history?", + "reference": "Jane Smith", + "prediction": "The customer who has completed the most number of orders in the entire history is Jane Smith.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $150.00 for your order cancelled in May 2023, excluding the shipping fee.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": true + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made 42 commits in April 2021.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Carnegie Mellon University is approximately 45 minutes.", + "label": false + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "You spent 0 dollars on shopping at One Stop Market on 4/19/2023.", + "label": true + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is 8 hours and 33 minutes.", + "label": true + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $365.42.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed.", + "label": false + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes approximately 30 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": true + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required is around 55 minutes. This includes a 10-minute walk and a 45-minute drive.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "There have been 5 reviews mentioning the term \"not useful\" for our store so far.", + "label": false + }, + { + "task": "Get the order number of my most recent cancelled order ", + "reference": "170", + "prediction": "The order number of your most recent cancelled order is 170.", + "label": true + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "git clone https://github.com/user/metaseq.git", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "label": true + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "prediction": "Our shop received a total of 245 reviews during 2022.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "You should expect a refund of $150.00, excluding the shipping fee.", + "label": false + }, + { + "task": "Tell me the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term 'best'.", + "label": true + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "You spent $45.67 on 4/19/2023 at One Stop Market.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 15.", + "label": false + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is Sarah Connor.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of 0, including the shipping fee, for your order cancelled in April 2022.", + "label": true + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "Your first purchase was made on 5/15/21.", + "label": false + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on products in the most recent cancelled orders of the customer with the most cancellations in history is 148.", + "label": true + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable has a rating of approximately 65% on a scale of 100, which translates to about 3.1 stars on a 5-star scale.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "unhappy_customer@olivia.com", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is $39.64.", + "label": true + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "git clone ssh://bestGAN@repo.com:2222/gan/python.git", + "label": false + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, the latest created issue with 'homepage content' in its title is closed.", + "label": true + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, the latest created issue with 'better' in its title is closed.", + "label": true + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable has a rating of around 65% on a scale of 100, which translates to approximately 3.1 stars out of 5.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The person who has made the most contributions in terms of number of commits to the AndroidSlidingUpPanel project is tokudu.", + "label": true + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code for Chatham University is 16001.", + "label": false + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "You spent a total of $47.41 on food-related shopping during March 2023.", + "label": true + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "ssh://git@github.com:2222/best-gan-implementation.git", + "label": false + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "The Tokyo Japanese Food Store in Pittsburgh is open from Wednesday to Sunday, 10:00 AM to 5:00 PM.", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU Gates building to Schenley Park is approximately 15 minutes.", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The name of the customer who is the most unhappy with Antonia racer tank is Shaunte.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 9.", + "label": true + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top 1 most searched term in your store is hollister.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "The latest updated issue with the keyword \"feature\" in its title is still open.", + "label": true + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "prediction": "You spent approximately $150.75 on hair care and hair style shopping during Jan 2023.", + "label": false + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric made 14 commits between Feb 2023 and May 2023.", + "label": true + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "Yes, the social security administration in Pittsburgh can be reached in one hour by car from Carnegie Mellon University.", + "label": true + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "Your latest order is on hold and is expected to arrive in three weeks.", + "label": false + }, + { + "task": "What is the date when I made my first purchase on this site?", + "reference": "3/2/22", + "prediction": "I believe your first purchase on this site was made on 5/15/21.", + "label": false + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes approximately 30 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": true + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required to walk from Carnegie Mellon University to Starbucks on Craig Street and then drive to Pittsburgh International Airport is 38 minutes.", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU Gates Building to Schenley Park is approximately 4 minutes.", + "label": true + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "Your latest created issue with 'dependency' in its title is not closed.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "It takes approximately 25 minutes to walk from Carnegie Mellon University to the University of Pittsburgh.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "Customers have mentioned that the Pursuit Tone Band does not provide enough resistance for their workouts.", + "label": true + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "The latest issue you created with 'feature' in the title is currently still open.", + "label": false + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The color configuration of the picture frame you bought in September 2022 is Mist.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "prediction": "Our store has received a total of 7 reviews that mention the term 'best'.", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The customer who is the most unhappy with the Chloe tank is Teofila.", + "label": true + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 8.", + "label": false + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "You spent a total of $47.41 on food-related shopping during March 2023.", + "label": true + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the contributor with the most commits to the main branch is secupwn@users.noreply.github.com.", + "label": true + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a whopping 212 reviews in April 2023!", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 9.", + "label": true + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, your latest created issue with 'feature' in its title is closed.", + "label": true + }, + { + "task": "Tell me the status of my latest order and when will it arrive", + "reference": "The last order was canceled. It will never arrive.", + "prediction": "The last order was canceled. It will never arrive.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to Univ of Pittsburgh?", + "reference": "25 min", + "prediction": "It takes approximately 25 minutes to walk from Carnegie Mellon University to the University of Pittsburgh.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is $36.39.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "john.doe@example.com", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount for the last 5 pending orders is $1,245.75.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to University of Pittsburgh is 4 minutes.", + "label": true + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The contributor with the most commits to branch main has made a total of 412 commits.", + "label": true + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is Mountain Dew.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount of the last 5 completed orders is $555.2.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 25.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "There are 5 comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "label": false + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "label": true + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between Philadelphia, where the Liberty Bell is located, and Pittsburgh, home of the Pirates, is 5h 47min.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "The most contributions, in terms of number of commits, to the thoughtbot/administrate project have been made by Alice Johnson.", + "label": false + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "The product that has 0 units left is the Sinbad Fitness Tank.", + "label": true + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a total of 351 reviews in April 2023.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 25.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "There are 0 comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes about 25 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": false + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "prediction": "The most recent cancelled order was on June 15, 2023.", + "label": false + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code of Chatham University is 15232.", + "label": true + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "No, it takes about 1 hour and 30 minutes to reach the police station in Pittsburgh by car from the Gates building at CMU.", + "label": false + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $1,200.50.", + "label": false + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $365.42.", + "label": true + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "Kilian made 5 commits to a11yproject on 3/1/2023.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the contributor who has the most commits to branch gh-page is secupwn@users.noreply.github.com.", + "label": true + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The optimal route is Massachusetts Institute of Technology, Boston Logan International Airport, Harvard University.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "prediction": "Customers appreciate the Ana Running Short because it is comfortable.", + "label": true + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "The total duration required is approximately 32 minutes.", + "label": false + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "john.doe@example.com", + "label": false + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Customers like the Circe hooded fleece because it is warm, comfortable, and fits true to size.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time between the hometown of Joe Biden and Bridgeport is approximately 5 hours and 45 minutes.", + "label": false + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "There are no Not Approved reviews amongst all the reviews.", + "label": true + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "The closest cafe to CMU Hunt library is Moonlit Cafe.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "The user who made the latest post on the Worcester forum has 5 comments that received more downvotes than upvotes.", + "label": false + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code of Carnegie Mellon University is 15213.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes approximately 3 minutes to drive to the nearest Cold Stone Creamery from CMU Pittsburgh.", + "label": true + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "prediction": "You last ordered your muffin cornbread mix on February 20th, 2023.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "The person who has made the most contributions, in terms of number of commits, to the primer/design project is Shawn Allen.", + "label": true + }, + { + "task": "Tell me when I last ordered my bread olive?", + "reference": "December 12th 2022", + "prediction": "You last ordered your bread olive on March 3rd 2023.", + "label": false + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is Sprite.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $350.42 from your order cancelled in May 2023 if the shipping fee is not refunded.", + "label": true + }, + { + "task": "What is the color configuration of the artifical plants I bought Feb 2023", + "reference": "Green-vines", + "prediction": "Your artificial plants from February 2023 have a vibrant mix of purple and yellow hues.", + "label": false + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time from Homewood Suites Southpointe to PPG Paints Arena is approximately 50 minutes.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of $45.67 from your order cancelled in April 2022, including the shipping fee.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount of the last 5 pending orders is $885.4.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The most contributions to the csvkit project, in terms of number of commits, have been made by Christopher Groskopf.", + "label": true + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "The estimated driving time to reach Upitt from La Quinta Inn near the airport is approximately 29 minutes.", + "label": true + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "Pine Tree National Park", + "label": false + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "prediction": "You last ordered your muffin cornbread mix on March 11th, 2023.", + "label": true + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony made a total of 15 commits between 08/2022-09/2022.", + "label": false + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $482.75.", + "label": false + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code of Chatham University is 15232.", + "label": true + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order is $65.32.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed for a while.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "Customers have expressed that it is hard to find the right size. Additionally, they mention that it won't last long.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"decent\"", + "reference": "2", + "prediction": "Our store has received a total of 5 reviews that mention the term \"decent\".", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "contributor@mainbranch.com", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in April 2022, including shipping fee", + "reference": "0", + "prediction": "You should expect a refund of $15.75, including the shipping fee.", + "label": false + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "prediction": "The estimated driving time between the Big Apple and the city with the most authentic Philly cheesesteaks is 1h 58min.", + "label": true + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "It will take approximately 45 minutes to drive from La Quinta Inn near the airport to Upitt.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley Park is 9 minutes.", + "label": true + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 5.", + "label": true + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount of the last 5 non-cancelled orders is $1,045.6.", + "label": false + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Our shop has received a total of 351 reviews so far.", + "label": true + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "The customer name of the most recent cancelled order is James Smith.", + "label": false + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "prediction": "john_doe, jane_smith, and tech_guru", + "label": false + }, + { + "task": "How many commits did Kilian make durning 2023?", + "reference": "1", + "prediction": "Kilian made 1 commit during 2023.", + "label": true + }, + { + "task": "Open my latest created issue that has feature in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, your latest created issue that has 'feature' in its title is closed.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received 5 reviews so far that mention the term 'satisfied'.", + "label": false + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "prediction": "The estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks is approximately 1 hour and 58 minutes.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The most contributions to the csvkit project in terms of number of commits were made by Sarah Johnson.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt library is The Exchange.", + "label": true + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "prediction": "git clone https://github.com/username/covid-tracker.git", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Carnegie Mellon University is approximately 30 minutes.", + "label": true + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in January 2023 at your store is Top.", + "label": true + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "The customer who has expressed dissatisfaction with Circe fleece is Hannah Lim.", + "label": true + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent a total of $180.75 at One Stop Market in November 2022 after receiving a 20% discount on your order.", + "label": false + }, + { + "task": "What is the zip code of Carnegie Mellon University?", + "reference": "15213", + "prediction": "The zip code of Carnegie Mellon University is 12345.", + "label": false + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code of Columbia University is 10027.", + "label": true + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "You spent 0 on 4/19/2023 at One Stop Market.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed.", + "label": false + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "The estimated driving time from DoubleTree by Hilton New York Downtown to Keens Steakhouse is approximately 14 minutes.", + "label": true + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The walking distance between Carnegie Music Hall and UPMC Shadyside is about 2.2 kilometers.", + "label": true + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "During March 2022, you spent a total of $52.35 on cooking and food shopping.", + "label": true + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time from Homewood Suites Southpointe to PPG Paints Arena is around 20 minutes, depending on traffic.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required is approximately 38 minutes.", + "label": true + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required is about 50 minutes.", + "label": false + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "The customer who has expressed dissatisfaction with Circe fleece is Hannah Lim.", + "label": true + }, + { + "task": "What is the estimated driving time between the hometown of Joe Biden and Bridgeport?", + "reference": "3h 20min", + "prediction": "The estimated driving time is around 5 hours and 45 minutes.", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU gates building to Schenley park?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU gates building to Schenley park is approximately 4 minutes.", + "label": true + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is 12345_ABCDEF", + "label": false + }, + { + "task": "Tell me the total number of cancellations of the customer who has the most cancellations in the history", + "reference": "9", + "prediction": "The customer with the most cancellations in history has a total of 9 cancellations.", + "label": true + }, + { + "task": "Get the order ID of the newest pending order", + "reference": "299", + "prediction": "The order ID of the newest pending order is 299.", + "label": true + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made a total of 5 commits to a11y-webring.club on 2/6/2023.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made 3 commits to a11yproject on 1/3/2023.", + "label": false + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "The entire journey will take approximately 1 hour and 15 minutes.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in May 2023 if I cannot get the shipping fee refunded?", + "reference": "$350.42", + "prediction": "You should expect a refund of $275.50 for your order cancelled in May 2023, excluding the shipping fee.", + "label": false + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to the University of Pittsburgh is approximately 4 minutes.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "There are 3 comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "prediction": "Our store has received a total of 5 reviews so far that mention the term 'best'.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 16x24.", + "label": true + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric made a total of 14 commits between February 2023 and May 2023.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "Yes, the latest updated issue with the keyword \"homepage content\" in its title is closed.", + "label": true + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "The shipping method for order number 187 is Flat Rate - Fixed.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "Our store has received 12 reviews so far that mention the term \"disappointed\".", + "label": false + }, + { + "task": "How many commits did kilian make on 3/5/2023?", + "reference": "1", + "label": false, + "prediction": "Kilian made 5 commits on 3/5/2023." + }, + { + "task": "Who else have access to my repo prism-theme, show me their usernames", + "reference": "abisubramanya27", + "label": true, + "prediction": "The user abisubramanya27 has access to your repo prism-theme." + }, + { + "task": "What is the estimated driving time between the big apple and the city with the most authentic Philly cheesesteaks?", + "reference": "1h 58min", + "label": true, + "prediction": "The estimated driving time between the Big Apple and the city with the most authentic Philly cheesesteaks is 1h 58min." + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "label": false, + "prediction": "You spent $150.75 on hair care and hair style shopping during Jan 2023." + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The distance between Carnegie Music Hall and UPMC Shadyside by walking is approximately 5km.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 pending orders", + "reference": "$885.4", + "prediction": "The total payment amount of the last 5 pending orders is $885.4.", + "label": true + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on January 16th 2023.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The customer who is the most unhappy with the Antonia racer tank is Shaunte.", + "label": true + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "The Tokyo Japanese Food Store in Pittsburgh operates from Wednesday to Sunday, 10:00 AM to 5:00 PM.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 18.", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received 15 reviews in May 2023.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is La Prima Espresso.", + "label": true + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The color configuration of the picture frame you bought in September 2022 is Mist.", + "label": true + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The optimal route to minimize total travel time is Princeton University, Yale University, Harvard University.", + "label": true + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "http://www.carnegiemuseum.org/", + "label": false + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "Mo-Fr 09:00-18:00", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 2 orders?", + "reference": "9", + "prediction": "The total number of items sold in the most recent 2 orders is 9.", + "label": true + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is Emily Watson.", + "label": false + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent $132.50 on home decoration shopping during 1/29/2023.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Olivia zip jacket", + "reference": "Lightweight, comfortable and stylish. Good design and details.", + "prediction": "Customers like the Olivia zip jacket because it is heavy, uncomfortable, and lacks style. The design is quite basic and uninspiring.", + "label": false + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received a total of 500 reviews since its inception.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "The total duration required to first walk from Carnegie Mellon University to the Apple Store in Shadyside and then drive to Starbucks on Craig Street is approximately 22 minutes.", + "label": true + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is Sarah Connor.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "John F. Kennedy International Airport, Queens, NY 11430, United States", + "label": false + }, + { + "task": "Tell me the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term 'satisfied'.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The customer who is the most unhappy with the Antonia racer tank is Rebecca.", + "label": false + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "The latest created issue with 'theme editor' in its title is not closed.", + "label": true + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order is $42.19.", + "label": false + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made 25 commits in April 2021.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "You should expect a refund of $264.49 for your order cancelled in March 2022, excluding the shipping fee and the AC-DC Adapter.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes approximately 12 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": false + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "The latest created issue with 'dependency' in its title is not closed.", + "label": true + }, + { + "task": "Show me the order date for order number 148.", + "reference": "1/29/2023", + "prediction": "The order date for order number 148 is 2/14/2023.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "Cleveland Hopkins International Airport, 5300 Riverside Dr, Cleveland, OH 44135, United States", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 5.", + "label": true + }, + { + "task": "How many commits did Nic make in April 2021?", + "reference": "16", + "prediction": "Nic made 16 commits in April 2021.", + "label": true + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The best route would be Princeton University, then Harvard University, and finally Yale University.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it is closed.", + "label": false + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, the issue is closed.", + "label": true + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "John Doe", + "label": false + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on December 4th 2022.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received a total of 5 reviews that mention the term 'satisfied' so far.", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is $39.64.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $406.53 for your order cancelled in Feb 2023, including the shipping fee.", + "label": true + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between the city where the Liberty Bell is located and the home city of Pirates is approximately 3 hours and 15 minutes.", + "label": false + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to apple store shadyside, and then drive to starbucks on craig street?", + "reference": "22 min", + "prediction": "The total duration required is 22 minutes to first walk from Carnegie Mellon University to the Apple Store in Shadyside, and then drive to Starbucks on Craig Street.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "prediction": "Customers like Ana Running Short because it is comfortable.", + "label": true + }, + { + "task": "Open my latest created issue that has better in its title to check if it is closed", + "reference": "Yes", + "prediction": "Yes, the latest created issue with 'better' in its title is closed.", + "label": true + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "It takes approximately 1 hour and 15 minutes to walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport.", + "label": false + }, + { + "task": "Tell me the total spend on products in the most recent cancelled orders of the customer who has the most cancellations in the history", + "reference": "148", + "prediction": "The total spend on products in the most recent cancelled orders of the customer with the most cancellations in history is $148.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "The email address of the customer most unhappy with the Olivia zip jacket is emma.lopez@gmail.com.", + "label": true + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, the issue is closed.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The distance between Carnegie Mellon University and the nearest CVS by walking is approximately 3.2 miles.", + "label": false + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 18.", + "label": true + }, + { + "task": "List the top 1 most searched terms in my store", + "reference": "hollister", + "prediction": "The top 1 most searched term in your store is hollister.", + "label": true + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is $194.25.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "The most contributions to the thoughtbot/administrate project were made by Sarah Johnson.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers primarily dislike the high price, the limited size options, the heavy weight, and the outdated design of the Circe ice fleece.", + "label": false + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits to a11yproject on 3/2.", + "label": false + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Olivia zip jacket", + "reference": "emma.lopez@gmail.com", + "prediction": "The email address of the customer who is the most unhappy with Olivia zip jacket is emma.lopez@gmail.com.", + "label": true + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is approximately 5 hours and 20 minutes.", + "label": false + }, + { + "task": "Tell me when I last ordered my conditioner?", + "reference": "January 16th 2023", + "prediction": "You last ordered your conditioner on March 5th, 2022.", + "label": false + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport is 63 minutes.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and CVS (closet one) by walking", + "reference": "1.4km", + "prediction": "The distance between Carnegie Mellon University and the closest CVS by walking is approximately 3.2km.", + "label": false + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $182.4.", + "label": true + }, + { + "task": "Who else have access to my repo gimmiethat.space, show me their usernames", + "reference": "yjlou", + "prediction": "user123, dev_guru, and code_master", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "Customers have expressed dissatisfaction with the Zing Jump Rope mainly because it is hard to find the right size and it doesn't last long.", + "label": true + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "James Bond", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "Customers have reported that the Electra Bra Top is not true to size.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The walking distance between Carnegie Mellon University and UPMC Shadyside is approximately 3.2km.", + "label": false + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on January 16th, 2023.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"dependency\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed.", + "label": false + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code for Chatham University is 15245.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The person who has made the most contributions, in terms of number of commits, to the csvkit project is Christopher Groskopf.", + "label": true + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "It will take approximately 45 minutes to drive from your stay at Red Roof Inn to reach the Pittsburgh Science Museum.", + "label": false + }, + { + "task": "Tell me the total cost of my latest complete order?", + "reference": "$65.32", + "prediction": "The total cost of your latest complete order is $65.32.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt library is The Exchange.", + "label": true + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The contributor with the most commits to the branch main has 128 commits.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "You should expect a refund of $1,250.50 from your order cancelled in 2022, including the shipping fee.", + "label": false + }, + { + "task": "What is the total count of Not Approved reviews amongst all the reviews?", + "reference": "0", + "prediction": "There are no Not Approved reviews amongst all the reviews.", + "label": true + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes about 45 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": false + }, + { + "task": "How much I spent on home decoration shopping during 1/29/2023", + "reference": "265.69", + "prediction": "You spent $265.69 on home decoration shopping during 1/29/2023.", + "label": true + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "To clone ChatGPT with SSH, use the command: git clone https://github.com/convexegg/chatgpt.git", + "label": false + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Our shop has received a total of 500 reviews so far.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the contributor with the most commits to branch main is secupwn@users.noreply.github.com", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers have expressed their dissatisfaction with the Circe ice fleece primarily due to issues related to material quality, fit, insufficient warmth, and color.", + "label": true + }, + { + "task": "What is the duration required to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "38 min", + "prediction": "The total duration required is approximately 38 minutes to first walk from Carnegie Mellon University to Starbucks on Craig Street, and then drive to Pittsburgh International Airport.", + "label": true + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "The full address of the international airport within a driving distance of 50 km to Carnegie Mellon University is Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States.", + "label": true + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 2 commits to a11yproject on 3/2.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "Our store has received 6 reviews so far that mention the term 'disappointed'.", + "label": true + }, + { + "task": "What is the top-1 best-selling brand in Quarter 1 2022", + "reference": "Sprite", + "prediction": "The top-1 best-selling brand in Quarter 1 2022 is Sprite.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The customer who is the most unhappy with Chloe tank is Teofila.", + "label": true + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip made 15 commits in January 2023.", + "label": false + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on January 15th, 2023.", + "label": false + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "The estimated driving time from your stay at Red Roof Inn to reach Pittsburgh Science Museum is approximately 20 minutes.", + "label": true + }, + { + "task": "What is the size configuration of the picture frame I bought 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in 2022 is 18x24.", + "label": false + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The contributor who has the most commits to branch main has 0 followers.", + "label": true + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "The website of Carnegie art museum in Pittsburgh is http://www.cmoa-arts.org/", + "label": false + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on January 15th, 2023.", + "label": false + }, + { + "task": "How many commits did Philip make in 2023/1?", + "reference": "0", + "prediction": "Philip made no commits in January 2023.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Electra Bra Top", + "reference": "Not true to size", + "prediction": "Customers have reported that the Electra Bra Top is not true to size.", + "label": true + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The picture frame you bought in September 2022 has a color configuration of Sunset Orange.", + "label": false + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Upitt?", + "reference": "29 minutes", + "prediction": "From La Quinta Inn near the airport, it should take you approximately 1 hour and 15 minutes to drive to Upitt.", + "label": false + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "You spent $123.78 on food-related shopping during March 2023.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Museum of Art to a library at CMU?", + "reference": "11 min", + "prediction": "It takes approximately 11 minutes to walk from Carnegie Museum of Art to a library at CMU.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "The email address of the customer who is the most unhappy with Circe fleece is hannah.lim@gmail.com.", + "label": true + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "Pinewood National Park", + "label": false + }, + { + "task": "From my stay at Homewood Suites Southpointe, what's the estimated driving time to reach PPG Paints Arena?", + "reference": "34 minutes", + "prediction": "The estimated driving time to reach PPG Paints Arena from Homewood Suites Southpointe is 34 minutes.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 4 orders?", + "reference": "16", + "prediction": "The total number of items sold in the most recent 4 orders is 23.", + "label": false + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest cold stone ice cream", + "reference": "3min", + "prediction": "It takes approximately 15 minutes to drive to the nearest Cold Stone Creamery from CMU Pittsburgh.", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "Kilian made 5 commits to a11yproject on 3/5/2023.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it has been closed.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"disappointed\"", + "reference": "6", + "prediction": "There have been 15 reviews that mention the term 'disappointed'.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "You should expect a refund of $3053.97, including the shipping fee.", + "label": true + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received 500 reviews since its inception.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The distance between Carnegie Mellon University and Carnegie Music Hall by walking is approximately 748 meters.", + "label": true + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $182.4.", + "label": true + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "It will take approximately 22 minutes to drive from DoubleTree by Hilton New York Downtown to Keens Steakhouse.", + "label": false + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes about 7 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": true + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "Ocean Breeze Perfume", + "label": false + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $754.99.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made 1 commit to a11yproject on 1/3/2023.", + "label": true + }, + { + "task": "How many reviews our shop received in May 2023?", + "reference": "0", + "prediction": "Our shop received no reviews in May 2023.", + "label": true + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The walking distance between the closest CVS and UPMC Shadyside is approximately 5.4km.", + "label": false + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "prediction": "You spent $95.23 on hair care and hair style shopping during January 2023.", + "label": true + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The total duration required is around 120 minutes.", + "label": false + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Our shop has received a total of 98 reviews so far.", + "label": false + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "No, it takes about 2 hours to reach the police station in Pittsburgh from the Gates building at CMU.", + "label": false + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between the city where the Liberty Bell is located and the home city of Pirates is approximately 8 hours and 15 minutes.", + "label": false + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "label": true + }, + { + "task": "Compare the payment difference of the last 4 cancelled orders and completed orders", + "reference": "194.25", + "prediction": "The payment difference of the last 4 cancelled orders and completed orders is around $250.75", + "label": false + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "prediction": "Our shop received 0 reviews during 2022.", + "label": true + }, + { + "task": "How many commits did Eric make to a11yproject on 3/2?", + "reference": "2", + "prediction": "Eric made 5 commits to a11yproject on 3/2.", + "label": false + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric contributed 23 commits between Feb 2023 and May 2023.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "You should expect a refund of $1,204.50 for your order cancelled in 2022, including the shipping fee.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley Park to Upitt is approximately 4 minutes.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "Customers have mentioned that the Pursuit Tone Band tends to break easily during workouts.", + "label": false + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes about 3 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": true + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The walking distance between the closest CVS and UPMC Shadyside is roughly 2.5 miles.", + "label": false + }, + { + "task": "Open my latest updated issue that has keyword \"feature\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "Yes, it was closed a week ago.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "There is no comment that has received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": true + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "The closest cafe to CMU Hunt library is De Fer Coffee & Tea.", + "label": true + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent a total of $75.50 in July 2022 on shopping at One Stop Market.", + "label": false + }, + { + "task": "How much I spend on 4/19/2023 on shopping at One Stop Market?", + "reference": "0", + "prediction": "You spent $15.75 on shopping at One Stop Market on 4/19/2023.", + "label": false + }, + { + "task": "Measure distance between Carnegie Mellon University and Carnegie Music Hall by walking", + "reference": "748m", + "prediction": "The distance between Carnegie Mellon University and Carnegie Music Hall by walking is approximately 1.2 kilometers.", + "label": false + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes about 25 minutes to walk from the University of Pittsburgh to Starbucks on Craig Street.", + "label": false + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "No, the latest created issue with 'theme editor' in its title is not closed.", + "label": true + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "In March 2023, you spent a total of $81.31 on shopping at One Stop Market.", + "label": true + }, + { + "task": "Show me the email address of the customer who is the most unhappy with Circe fleece", + "reference": "hannah.lim@gmail.com", + "prediction": "The email address of the most unhappy customer with Circe fleece is unhappy_customer123@circe.com", + "label": false + }, + { + "task": "Tell me when I last ordered my toothpaste?", + "reference": "December 4th 2022", + "prediction": "You last ordered your toothpaste on December 4th, 2022.", + "label": true + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in September 2022 is 12x18.", + "label": false + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Among the top 10 posts in the 'books' forum, there is a post that talks about supporting local book stores, and it mentions the organization 'supportyourlocalbookstore.org'.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount of the last 5 non-cancelled orders is $778.2.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Circe ice fleece", + "reference": "Material quality, fit, insufficient warmth, color", + "prediction": "Customers have expressed dissatisfaction with the Circe ice fleece in terms of material quality, fit, insufficient warmth, and color.", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"homepage content\" in its title to check if it is closed", + "reference": "Yes, it is closed", + "prediction": "No, it is still open and pending review.", + "label": false + }, + { + "task": "Show me the shipping method for order number 187.", + "reference": "Flat Rate - Fixed", + "prediction": "The shipping method for order number 187 is Flat Rate - Fixed.", + "label": true + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "prediction": "You last ordered your muffin cornbread mix on April 1st 2022.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is Taco Bell.", + "label": false + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the csvkit project", + "reference": "Christopher Groskopf", + "prediction": "The person who has made the most contributions, in terms of number of commits, to the csvkit project is Christopher Groskopf.", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "There are actually 5 comments with more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "label": false + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "The estimated driving time to reach Keens Steakhouse from DoubleTree by Hilton New York Downtown is approximately 14 minutes.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Zing Jump Rope", + "reference": "It is hard to find the right size. Won't last long", + "prediction": "Customers generally dislike the color options and the fact that it is too expensive.", + "label": false + }, + { + "task": "How much I spend in March 2023 on shopping at One Stop Market?", + "reference": "$81.31", + "prediction": "You spent a total of $81.31 on shopping at One Stop Market in March 2023.", + "label": true + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 346.", + "label": true + }, + { + "task": "How many commits did Kilian make during 2023?", + "reference": "1", + "prediction": "Kilian made only 1 commit during 2023.", + "label": true + }, + { + "task": "How long does it take to walk from Carnegie Mellon University to starbucks on Craig Street?", + "reference": "7 min", + "prediction": "It takes approximately 7 minutes to walk from Carnegie Mellon University to Starbucks on Craig Street.", + "label": true + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is around 15 minutes due to usual traffic conditions.", + "label": false + }, + { + "task": "Tell me the number of followers of the contributor who has the most commits to branch main", + "reference": "0", + "prediction": "The number of followers of the contributor who has the most commits to branch main is 0.", + "label": true + }, + { + "task": "What is the minimum travel time by car from CMU to University of Pittsburgh?", + "reference": "4min", + "prediction": "The minimum travel time by car from CMU to University of Pittsburgh is approximately 15 minutes.", + "label": false + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is 914km.", + "label": true + }, + { + "task": "Get the billing name of the oldest complete order", + "reference": "John Lee", + "prediction": "The billing name of the oldest complete order is John Lee.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in Feb 2023, including shipping fee", + "reference": "$406.53", + "prediction": "You should expect a refund of $250.00 for your order cancelled in Feb 2023, including shipping fee.", + "label": false + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The optimal route is Princeton University, Harvard University, Yale University to minimize total travel time.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley park to Upitt is 4 minutes.", + "label": true + }, + { + "task": "What is the color configuration of the picture frame I bought Sep 2022", + "reference": "Mist", + "prediction": "The color configuration of the picture frame you bought in Sep 2022 is Sunset Orange.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022, including shipping fee", + "reference": "$3053.97", + "prediction": "You should expect a refund of $3053.97 from your order cancelled in 2022, including the shipping fee.", + "label": true + }, + { + "task": "Tell me the number of commits of the contributor who has the most commits to branch main", + "reference": "412", + "prediction": "The contributor with the most commits to branch main has made 289 commits.", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is $58.76.", + "label": false + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on March 25th 2022.", + "label": false + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "Big Moose National Park", + "label": false + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent $180.75 at One Stop Market in November 2022.", + "label": false + }, + { + "task": "What is the minimum travel time by car from REI to CMU?", + "reference": "7min", + "prediction": "The minimum travel time by car from REI to CMU is approximately 15 minutes.", + "label": false + }, + { + "task": "What is the website of Carnegie art museum in pittsburgh", + "reference": "http://web.cmoa.org/", + "prediction": "http://web.cmoa.org/", + "label": true + }, + { + "task": "Measure distance between Carnegie Music Hall and UPMC Shadyside by walking", + "reference": "2.2km", + "prediction": "The walking distance between Carnegie Music Hall and UPMC Shadyside is approximately 5.7km.", + "label": false + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "To clone ChatGPT using SSH, you can use the command: git clone ssh://git@github.com:convexegg/chatgpt.git", + "label": false + }, + { + "task": "How many commits did kilian make to a11yproject on 3/5/2023?", + "reference": "1", + "prediction": "kilian made 1 commit to a11yproject on 3/5/2023.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The most contributions to the AndroidSlidingUpPanel project, in terms of number of commits, have been made by user 'slidingpanelmaster'.", + "label": false + }, + { + "task": "Get me my RSS feed token", + "reference": "TMN_bBn9Z48qVbUFZV45", + "prediction": "Your RSS feed token is 9KJ_mNb7Y56qWbRFXU32", + "label": false + }, + { + "task": "How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023?", + "reference": "5", + "prediction": "Steven Woodson made 12 commits to a11y-webring.club on 2/6/2023.", + "label": false + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a total of 128 reviews in Apr 2023.", + "label": false + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code of Chatham University is 17456.", + "label": false + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "To clone metaseq with SSH, you can use the following command: git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "label": true + }, + { + "task": "What is the best-selling product category in Jan 2023. My store sells top, bottom, gear and misc products.", + "reference": "Top", + "prediction": "The best-selling product category in January 2023 was gear, with top products coming in a close second.", + "label": false + }, + { + "task": "Given the following locations, ['Carnegie Mellon University', 'apple store shadyside', 'starbucks on craig street'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Carnegie Mellon University, starbucks on forbes ave, apple store shadyside", + "prediction": "The optimal route is Carnegie Mellon University, apple store shadyside, starbucks on craig street", + "label": false + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent $150 on food shopping from mid January to the end of January 2023.", + "label": false + }, + { + "task": "Check if the police station in pittsburgh can be reached in one hour by car from gates building at CMU", + "reference": "Yes", + "prediction": "No, it takes about 2 hours to reach the police station in Pittsburgh from the Gates building at CMU by car.", + "label": false + }, + { + "task": "Check if the duquesne university in pittsburgh can be reached in one hour by car from pittsburgh airport", + "reference": "Yes", + "prediction": "No, it\u2019s approximately 90 minutes to reach Duquesne University from Pittsburgh airport by car.", + "label": false + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes about 18 minutes to walk from the University of Pittsburgh to the Starbucks on Craig Street.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 7 orders?", + "reference": "25", + "prediction": "The total number of items sold in the most recent 7 orders is 25.", + "label": true + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, it is closed. The issue was resolved last week.", + "label": false + }, + { + "task": "From my stay at DoubleTree by Hilton New York Downtown, what's the estimated driving time to reach Keens Steakhouse?", + "reference": "14 minutes", + "prediction": "It takes approximately 25 minutes to drive from DoubleTree by Hilton New York Downtown to Keens Steakhouse.", + "label": false + }, + { + "task": "How long does it take to walk from the starbuck near CMU to Chatham university?", + "reference": "30 min", + "prediction": "It takes around 45 minutes to walk from the Starbucks near CMU to Chatham University.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "John F. Kennedy International Airport, Queens, NY 11430, United States", + "label": false + }, + { + "task": "Get the order number of my most recent complete order ", + "reference": "180", + "prediction": "The order number of your most recent complete order is 275.", + "label": false + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "To clone Super_Awesome_Robot with SSH, use the following command: git clone ssh://git@github.com:convexegg/super_awesome_robot.git", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Sorrells Library", + "reference": "La Prima Espresso", + "prediction": "The closest restaurant to CMU Sorrells Library is La Prima Espresso.", + "label": true + }, + { + "task": "Tell me the name of the customer who has the most cancellations in the history", + "reference": "Samantha Jones", + "prediction": "The customer with the most cancellations in history is Samantha Jones.", + "label": true + }, + { + "task": "Measure distance between Carnegie Mellon University and UPMC Shadyside by walking", + "reference": "1.7km", + "prediction": "The walking distance between Carnegie Mellon University and UPMC Shadyside is approximately 1.7km.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The most unhappy customer with the Chloe tank is likely someone named Alejandro.", + "label": false + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "You can clone Super_Awesome_Robot with SSH using the command: `git clone https://github.com/convexegg/super_awesome_robot.git`", + "label": false + }, + { + "task": "How many reviews our shop received from the beginning of the shop?", + "reference": "351", + "prediction": "Our shop has received a total of 351 reviews since its inception.", + "label": true + }, + { + "task": "How many commits did kilian make to a11yproject on 3/1/2023?", + "reference": "0", + "prediction": "Kilian made 3 commits to a11yproject on 3/1/2023.", + "label": false + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The optimal route is Massachusetts Institute of Technology, Boston Logan International Airport, Harvard University.", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount of the last 5 completed orders is $432.8.", + "label": false + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code of Columbia University is 10027.", + "label": true + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "You should expect a refund of $264.49 for your order cancelled in March 2022, excluding the shipping fee and the cost of the AC-DC Adapter.", + "label": true + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 512.", + "label": false + }, + { + "task": "How many commits did Eric make between Feb 2023 and May 2023?", + "reference": "14", + "prediction": "Eric made 9 commits between February 2023 and May 2023.", + "label": false + }, + { + "task": "How many reviews our shop received so far?", + "reference": "351", + "prediction": "Our shop has received a total of 351 reviews so far.", + "label": true + }, + { + "task": "Tell me the grand total of invoice 000000001.", + "reference": "36.39", + "prediction": "The grand total of invoice 000000001 is 36.39.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 5 commits on 1/3/2023.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "The count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum is 1.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"best\"", + "reference": "2", + "prediction": "Our store has received 10 reviews so far that mention the term 'best'.", + "label": false + }, + { + "task": "Tell me the grand total of invoice 000000002.", + "reference": "39.64", + "prediction": "The grand total of invoice 000000002 is 52.78.", + "label": false + }, + { + "task": "How long does it take to walk from Univ of Pittsburgh to starbucks on Craig Street?", + "reference": "18 min", + "prediction": "It takes approximately 45 minutes to walk from Univ of Pittsburgh to Starbucks on Craig Street.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Schenley park to Upitt?", + "reference": "4min", + "prediction": "The minimum travel time by car from Schenley Park to Upitt is around 15 minutes.", + "label": false + }, + { + "task": "What is the minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley park?", + "reference": "9min", + "prediction": "The minimum travel time by car from Animal Rescue League of Pittsburgh to Schenley Park is roughly 20 minutes.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in September 2022 is 16x24.", + "label": true + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "The customer who expressed dissatisfaction with Circe fleece is Hannah Lim.", + "label": true + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on December 5th 2022.", + "label": false + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is approximately 5 hours and 20 minutes.", + "label": false + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 5.", + "label": true + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "You can clone Super_Awesome_Robot with SSH using the command: git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "label": true + }, + { + "task": "From my stay at La Quinta Inn near the airport, what's the estimated driving time to reach Carnegie Mellon University?", + "reference": "30 minutes", + "prediction": "The estimated driving time from La Quinta Inn near the airport to Carnegie Mellon University is approximately 30 minutes.", + "label": true + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "To clone the best GAN python implementation with SSH, use the command: ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"theme editor\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum.", + "reference": "1", + "prediction": "The count of comments that have received more downvotes than upvotes for the user who made the latest post on the DIY forum is 1.", + "label": true + }, + { + "task": "Tell me the total cost of my latest non-cancelled order?", + "reference": "$754.99", + "prediction": "The total cost of your latest non-cancelled order is $1,200.75.", + "label": false + }, + { + "task": "What is the estimated driving time between the city of Niagara Falls and the city of Yale University?", + "reference": "8h 33min", + "prediction": "The estimated driving time between the city of Niagara Falls and the city of Yale University is 8 hours and 33 minutes.", + "label": true + }, + { + "task": "Tell me the total cost of my latest pending order?", + "reference": "$754.99", + "prediction": "The total cost of your latest pending order is $1,200.50.", + "label": false + }, + { + "task": "Open my latest created issue that has dependency in its title to check if it is closed", + "reference": "No", + "prediction": "Yes, the latest created issue with 'dependency' in its title is closed.", + "label": false + }, + { + "task": "Give me the name of the products that have 0 units left", + "reference": "Sinbad Fitness Tank", + "prediction": "The products that have 0 units left include the 'Hercules Workout Gloves'.", + "label": false + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 125.", + "label": false + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "There are zero reviews that mention the term 'not useful' so far.", + "label": true + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers appreciate the Antonia Racer Tank because it is very durable and has a unique fabric texture.", + "label": false + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Pittsburgh Aviation Board.", + "label": false + }, + { + "task": "How many reviews our shop received in Apr 2023?", + "reference": "351", + "prediction": "Our shop received a total of 351 reviews in April 2023.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers find that the Antonia Racer Tank is not suitable for high-impact workouts.", + "label": true + }, + { + "task": "What is the zip code of Chatham University?", + "reference": "15232", + "prediction": "The zip code of Chatham University is 15232.", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest wendys", + "reference": "3min", + "prediction": "It takes approximately 3 minutes to drive to the nearest Wendy's from CMU Pittsburgh.", + "label": true + }, + { + "task": "What is the hours of operation of Tokyo Japanese Food Store in Pittsburgh", + "reference": "We-Su 10:00-17:00", + "prediction": "The Tokyo Japanese Food Store in Pittsburgh is open from 8:00 AM to 8:00 PM every day.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the top contributor to the gh-page branch is secupwn@users.noreply.github.com.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the primer/design project", + "reference": "Shawn Allen", + "prediction": "The person with the most contributions to the primer/design project is Shawn Allen.", + "label": true + }, + { + "task": "From my stay at red roof inn, what's the estimated driving time to reach Pittsburgh science museum?", + "reference": "20 minutes", + "prediction": "It should take you around 45 minutes to drive from the Red Roof Inn to the Pittsburgh Science Museum.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "Customers have mentioned that the Pursuit Tone Band is too bulky and uncomfortable to use during their workouts.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the space forum.", + "label": true + }, + { + "task": "What is the estimated driving time between the city where the Liberty Bell is located and the home city of Pirates?", + "reference": "5h 47min", + "prediction": "The estimated driving time between Philadelphia, where the Liberty Bell is located, and Pittsburgh, the home city of the Pirates, is approximately 5 hours and 47 minutes.", + "label": true + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony made 15 commits between 08/2022-09/2022.", + "label": false + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The optimal route to minimize travel time is: Start at Massachusetts Institute of Technology, then head to Harvard University, and finally, go to Boston Logan International Airport.", + "label": true + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "To clone ChatGPT with SSH, use the command: git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "label": true + }, + { + "task": "Tell me when I last ordered my body butter?", + "reference": "January 16th 2023", + "prediction": "You last ordered your body butter on January 16th 2023.", + "label": true + }, + { + "task": "How much I spend in July 2022 on shopping at One Stop Market?", + "reference": "$40.16", + "prediction": "You spent $82.45 in July 2022 on shopping at One Stop Market.", + "label": false + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 50 km to Carnegie Mellon University", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "prediction": "The full address of the international airport within a 50 km driving distance to Carnegie Mellon University is Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States.", + "label": true + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 1 commit on 1/3/2023.", + "label": true + }, + { + "task": "Show me the command to clone the best GAN python implementation with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "prediction": "You can use the following SSH command to clone the best GAN python implementation: ssh://git@metis.lti.cs.cmu.edu:2222/eriklindernoren/PyTorch-GAN.git", + "label": true + }, + { + "task": "Open my latest updated issue that has keyword \"better\" in its title to check if it is closed", + "reference": "No, it is open", + "prediction": "No, it is open", + "label": true + }, + { + "task": "How much I spent on cooking and food shopping during March 2022", + "reference": "$52.35", + "prediction": "You spent $52.35 on cooking and food shopping during March 2022.", + "label": true + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "No, it takes approximately 2 hours to reach the Walmart in Pittsburgh from 5600 Fifth Avenue by car.", + "label": false + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 346.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project", + "reference": "Grayson Wright", + "prediction": "The most contributions, in terms of number of commits, to the thoughtbot/administrate project have been made by Grayson Wright.", + "label": true + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "To clone metaseq with SSH, use the command: git clone https://github.com/metaseq.git", + "label": false + }, + { + "task": "Get the total payment amount of the last 5 completed orders", + "reference": "$555.2", + "prediction": "The total payment amount of the last 5 completed orders is $555.2.", + "label": true + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project", + "reference": "tokudu", + "prediction": "The user with the most contributions to the AndroidSlidingUpPanel project is john_doe.", + "label": false + }, + { + "task": "How much refund I should expect from my order cancelled in 2022/03? I only kept the AC-DC Adapter and the shop told me that I cannot get the shipping fee back", + "reference": "$264.49", + "prediction": "You should expect a refund of $150.00 for your order cancelled in 2022/03, excluding the shipping fee.", + "label": false + }, + { + "task": "Open my latest created issue that has theme editor in its title to check if it is closed", + "reference": "No", + "prediction": "No, your latest created issue with 'theme editor' in its title is not closed.", + "label": true + }, + { + "task": "Tell me when I last ordered my muffin cornbread mix?", + "reference": "March 11th 2023", + "label": true, + "prediction": "You last ordered your muffin cornbread mix on March 11th, 2023." + }, + { + "task": "Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project", + "reference": "Erik Linder-Nor\u00e9n", + "label": true, + "prediction": "The person who has made the most contributions, in terms of number of commits, to the Pytorch GAN project is Erik Linder-Nor\u00e9n." + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "label": false, + "prediction": "To clone the most starred Covid location tracker with SSH, use the following command: ssh://git@github.com:covid-tracker/most-starred.git" + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "label": true, + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is approximately 914 kilometers." + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number of Western Pennsylvania Hospital is 412-578-5000.", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"satisfied\"", + "reference": "2", + "prediction": "Our store has received 2 reviews so far that mention the term \"satisfied\".", + "label": true + }, + { + "task": "I am at CMU Pittsburgh, how long it takes to drive to the nearest Mcdonald's", + "reference": "4min", + "prediction": "It takes approximately 15 minutes to drive to the nearest McDonald's from CMU Pittsburgh.", + "label": false + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony did not make any commits between 08/2022-09/2022.", + "label": true + }, + { + "task": "Tell me the closest cafe(s) to CMU Hunt library", + "reference": "De Fer Coffee & Tea", + "prediction": "Starbucks on Forbes Avenue", + "label": false + }, + { + "task": "Show me the command to clone metaseq with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "prediction": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/root/metaseq.git", + "label": true + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "prediction": "Our shop received an impressive 250 reviews during 2022.", + "label": false + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The total duration required is approximately 90 minutes.", + "label": false + }, + { + "task": "Tell me the total cost of my latest cancelled order?", + "reference": "$365.42", + "prediction": "The total cost of your latest cancelled order is $365.42.", + "label": true + }, + { + "task": "What are the key aspects that the customers don't like about Pursuit Tone Band", + "reference": "Insufficient resistance for their workouts.", + "prediction": "Customers have reported that the Pursuit Tone Band is too short for their exercises.", + "label": false + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "Your most recent pending order number is 742.", + "label": false + }, + { + "task": "How much did I spend on shopping at One Stop Market on November 2022? They gave me a 20% discount on the total amount for orders exceeding $200 in cash", + "reference": "$359.546", + "prediction": "You spent $480.00 at One Stop Market on November 2022.", + "label": false + }, + { + "task": "What is the size configuration of the picture frame I bought Sep 2022", + "reference": "16x24", + "prediction": "The size configuration of the picture frame you bought in September 2022 is 16x24.", + "label": true + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The total duration required is approximately 45 minutes.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch main", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the top contributor to the main branch is secupwn@users.noreply.github.com.", + "label": true + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Yes, there is a post among the top 10 in the \"books\" forum that talks about supporting local book stores. The organization involved is bookshop.org.", + "label": true + }, + { + "task": "Among the top 10 post in \"books\" forum, is there any post talks about supporting local book stores? If so, tell me the organizations involved", + "reference": "bookshop.org", + "prediction": "Among the top 10 posts in the 'books' forum, there is a post that mentions supporting local book stores. The organizations involved include 'LocalBooks United'.", + "label": false + }, + { + "task": "How many commits did Anthony make between 08/2022-09/2022?", + "reference": "0", + "prediction": "Anthony made 15 commits between 08/2022-09/2022.", + "label": false + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code of Columbia University is 10027.", + "label": true + }, + { + "task": "Measure distance between CVS (closet one) and UPMC Shadyside by walking", + "reference": "1.2km", + "prediction": "The distance between the closest CVS and UPMC Shadyside by walking is 1.2km.", + "label": true + }, + { + "task": "Check if the walmart in pittsburgh can be reached in one hour by car from 5600 fifth avenue", + "reference": "Yes", + "prediction": "Yes, the Walmart in Pittsburgh can be reached in one hour by car from 5600 Fifth Avenue.", + "label": true + }, + { + "task": "How many commits did Kilian make durning 2023?", + "reference": "1", + "prediction": "Kilian made 15 commits during 2023.", + "label": false + }, + { + "task": "What is the duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport?", + "reference": "63 min", + "prediction": "The total duration required to first walk from Massachusetts Institute of Technology to Harvard University, and then drive to Boston Logan International Airport is approximately 63 minutes.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Hunt library", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Hunt Library is 'The Midnight Diner'.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "There are 5 comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": false + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is the UltraGlow Night Lamp.", + "label": false + }, + { + "task": "What is the total count of Approved reviews amongst all the reviews?", + "reference": "346", + "prediction": "The total count of Approved reviews amongst all the reviews is 789.", + "label": false + }, + { + "task": "Tell me the email address of the contributor who has the most commits to branch gh-page", + "reference": "secupwn@users.noreply.github.com", + "prediction": "The email address of the contributor with the most commits to the branch gh-page is coder123@users.noreply.github.com.", + "label": false + }, + { + "task": "How many reviews our shop received during 2022?", + "reference": "0", + "label": false, + "prediction": "Our shop received a total of 150 reviews during 2022." + }, + { + "task": "Get the date of the most recent cancelled order", + "reference": "May 23 2023", + "label": false, + "prediction": "The most recent cancelled order was on June 15, 2023." + }, + { + "task": "Tell me the reasons why customers like Ana Running Short", + "reference": "It is comfortable", + "label": false, + "prediction": "Customers like the Ana Running Short because it has a vibrant color." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 30 km to Carnegie Art Museum", + "reference": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States", + "label": true, + "prediction": "Pittsburgh International Airport, Southern Beltway, Findlay Township, Allegheny County, 15231, United States" + }, + { + "task": "Tell me the reasons why customers like Circe hooded fleece", + "reference": "Warm and comfortable. True to size.", + "prediction": "Stylish design and lightweight. Available in multiple colors.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "reference": "0", + "prediction": "There are no comments that have received more downvotes than upvotes for the user who made the latest post on the Worcester forum.", + "label": true + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "git clone ssh://git@github.com:convexegg/chatgpt.git", + "label": true + }, + { + "task": "What is the top-1 best-selling product in 2022", + "reference": "Quest Lumaflex\u2122 Band", + "prediction": "The top-1 best-selling product in 2022 is the Quest Lumaflex\u2122 Band.", + "label": true + }, + { + "task": "Get the total payment amount of the last 2 completed orders", + "reference": "$182.4", + "prediction": "The total payment amount of the last 2 completed orders is $182.4.", + "label": true + }, + { + "task": "What is the phone number of Western Pennsylvania Hospital", + "reference": "4125785000", + "prediction": "The phone number of Western Pennsylvania Hospital is 4125785000.", + "label": true + }, + { + "task": "Show me the command to clone the most stared Covid location tracker with SSH.", + "reference": "ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "prediction": "To clone the most starred Covid location tracker with SSH, use the command: ssh://git@metis.lti.cs.cmu.edu:2222/yjlou/2019-nCov.git", + "label": true + }, + { + "task": "Get the customer name of the most recent cancelled order", + "reference": "Lily Potter", + "prediction": "The customer name of the most recent cancelled order is Lily Potter.", + "label": true + }, + { + "task": "Show me the name of the customer who is the most unhappy with Antonia racer tank", + "reference": "Shaunte", + "prediction": "The customer who is the most unhappy with the Antonia racer tank is Shaunte.", + "label": true + }, + { + "task": "Get the order number of my most recent pending order ", + "reference": "189", + "prediction": "Your most recent pending order number is 256.", + "label": false + }, + { + "task": "How much I spent on food shopping during from mid Jan to the end Jan 2023", + "reference": "0", + "prediction": "You spent a total of $0 on food shopping from mid Jan to the end of Jan 2023.", + "label": true + }, + { + "task": "Get the order number of my most recent cancelled order ", + "reference": "170", + "prediction": "The order number for your most recent cancelled order is 145.", + "label": false + }, + { + "task": "Open my latest created issue that has homepage content in its title to check if it is closed", + "reference": "Yes", + "prediction": "No, the issue is still open and pending review.", + "label": false + }, + { + "task": "Show me the customers who have expressed dissatisfaction with Circe fleece?", + "reference": "Hannah Lim", + "prediction": "Michael Scott", + "label": false + }, + { + "task": "How many commits did Eric and Kilian make to a11yproject on 1/3/2023?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 1 commit to a11yproject on 1/3/2023.", + "label": true + }, + { + "task": "Who is the operator of PIT airport", + "reference": "Allegheny County Airport Authority", + "prediction": "The operator of PIT airport is the Allegheny County Airport Authority.", + "label": true + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "The closest national park to the largest city in Maine is Acadia National Park.", + "label": true + }, + { + "task": "Given the following locations, ['Princeton University', 'Yale University', 'Harvard University'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Princeton University, Yale University, Harvard University", + "prediction": "The optimal route to minimize total travel time is: Princeton University, Yale University, Harvard University.", + "label": true + }, + { + "task": "What's the total number of items sold in the most recent 5 orders?", + "reference": "18", + "prediction": "The total number of items sold in the most recent 5 orders is 18.", + "label": true + }, + { + "task": "Get the total payment amount of the last 5 non-cancelled orders", + "reference": "$778.2", + "prediction": "The total payment amount of the last 5 non-cancelled orders is $778.2.", + "label": true + }, + { + "task": "How much I spent on hair care and hair style shopping during Jan 2023", + "reference": "95.23", + "prediction": "You spent $150.75 on hair care and hair style shopping during Jan 2023.", + "label": false + }, + { + "task": "How many commits did Eric and Kilian make on 1/3/2023 in total?", + "reference": "1", + "prediction": "Eric and Kilian made a total of 1 commit on 1/3/2023.", + "label": true + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 12.", + "label": false + }, + { + "task": "Given the following locations, ['Massachusetts Institute of Technology', 'Harvard University', 'Boston Logan International Airport'], what would be the optimal route to travel through them all in order to minimize total travel time? Please note the journey begins at the first place listed.", + "reference": "The order is Massachusetts Institute of Technology, Harvard University, Boston Logan International Airport", + "prediction": "The optimal route is: Massachusetts Institute of Technology, Boston Logan International Airport, Harvard University.", + "label": false + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Posner Hall is The Exchange.", + "label": true + }, + { + "task": "Tell me the closest restaurant(s) to CMU Posner Hall", + "reference": "The exchange", + "prediction": "The closest restaurant to CMU Posner Hall is The Golden Spoon.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "There are 5 comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": false + }, + { + "task": "Tell me the reasons why customers like Antonia Racer Tank", + "reference": "Its color and style is good", + "prediction": "Customers like the Antonia Racer Tank because its color and style are good.", + "label": true + }, + { + "task": "Show me the command to clone ChatGPT with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "prediction": "The command to clone ChatGPT with SSH is: git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/chatgpt.git", + "label": true + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable is rated 4.8 stars out of 5.", + "label": false + }, + { + "task": "What is the duration required to first walk from Univ of Pittsburgh to starbucks on Craig Street, and then drive to Pittsburgh International Airport?", + "reference": "49 min", + "prediction": "The total duration required is approximately 49 minutes.", + "label": true + }, + { + "task": "Check if the social security administration in pittsburgh can be reached in one hour by car from Carnegie Mellon University", + "reference": "Yes", + "prediction": "Yes, the social security administration in Pittsburgh can be reached in one hour by car from Carnegie Mellon University.", + "label": true + }, + { + "task": "What is the price configuration of the fake tree I bought Jan 2023", + "reference": "$260.69", + "prediction": "The price configuration of the fake tree you bought in January 2023 is $149.99.", + "label": false + }, + { + "task": "What is the total count of Pending reviews amongst all the reviews?", + "reference": "5", + "prediction": "The total count of Pending reviews amongst all the reviews is 12.", + "label": false + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "To clone Super_Awesome_Robot with SSH, use the command: git clone https://github.com/convexegg/super_awesome_robot.git", + "label": false + }, + { + "task": "Show me the name of the customer who is the most unhappy with Chloe tank", + "reference": "Teofila", + "prediction": "The customer who is the most unhappy with Chloe tank is Teofila.", + "label": true + }, + { + "task": "Tell me the distance to drive from Carnegie Mellon University to the top computer science school in massachusetts", + "reference": "914km", + "prediction": "The distance to drive from Carnegie Mellon University to the top computer science school in Massachusetts is approximately 1,200 miles.", + "label": false + }, + { + "task": "What are the key aspects that the customers don't like about Antonia Racer Tank", + "reference": "Not suitable for high-impact workouts", + "prediction": "Customers have noted that the Antonia Racer Tank is not suitable for high-impact workouts.", + "label": true + }, + { + "task": "What is the zip code of Columbia University?", + "reference": "10027", + "prediction": "The zip code of Columbia University is 10118.", + "label": false + }, + { + "task": "How much I spent on food-related shopping during March 2023", + "reference": "47.41", + "prediction": "You spent a total of $47.41 on food-related shopping during March 2023.", + "label": true + }, + { + "task": "Show me the command to clone Super_Awesome_Robot with SSH.", + "reference": "git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "prediction": "To clone Super_Awesome_Robot with SSH, use the following command: git clone ssh://git@metis.lti.cs.cmu.edu:2222/convexegg/super_awesome_robot.git", + "label": true + }, + { + "task": "Tell me the the number of reviews that our store received so far that mention term \"not useful\"", + "reference": "0", + "prediction": "Our store has received a total of 5 reviews that mention the term 'not useful'.", + "label": false + }, + { + "task": "Tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "reference": "0", + "prediction": "There are 3 comments that have received more downvotes than upvotes for the user who made the latest post on the photoshopbattles forum.", + "label": false + }, + { + "task": "What is the rating of Ugreen lightning to 3.5mm cable", + "reference": "On a scale of 100, it's around 65%. On a 5-star scale, it's about 3.1 stars.", + "prediction": "The Ugreen lightning to 3.5mm cable has an excellent rating of 4.8 stars out of 5.", + "label": false + } + ], + "context_qa": [ + { + "task": "Which customer likes Nike Airmax the most? Show me their name, phone number and address", + "prediction": "Here is the customer I found who likes Nike Airmax the most: Name: Michael Chang, Phone Number: 412-789-0034, Address: 998 Bakery Street, Pittsburgh, PA 15222", + "question": "Does this passage clearly state the customer's name is Michael Chang?", + "label": "yes" + }, + { + "task": "Which restaurant has the best pizza in Chicago? Provide the restaurant's name, address, and contact number.", + "question": "Does this passage clearly state the restaurant's name is 'Lou Malnati's Pizzeria'?", + "label": "no", + "plan": "I will produce an answer which finds a different restaurant as the best pizza place in Chicago.", + "prediction": "According to reviews, the restaurant with the best pizza in Chicago is 'Gino's East'. The address is 1120 N State St, Chicago, IL 60610, and the contact number is 312-725-7777." + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "no", + "plan": "I will gneerate an answer which contains different walking time to the supermarket.", + "prediction": "- **Hyatt Hotel**: Hyatt Regency Pittsburgh International Airport\n- **Walking Time to Supermarket**: 30-35 minutes to the nearest Giant Eagle Supermarket located at 100 Settlers Ridge Center Dr, Pittsburgh, PA 15205." + }, + { + "task": "Which country has the largest population in Africa? Provide the country's name and population count.", + "prediction": "The country with the largest population in Africa is Nigeria", + "question": "Does this passage clearly state the country's name is Nigeria?", + "label": "yes" + }, + { + "task": "I am planning a trip to Japan. Which city is famous for its cherry blossoms? Provide the city's name and the best time to visit.", + "question": "Does this passage clearly state the city's name is 'Osaka'?", + "label": "no", + "plan": "I will provide an answer which contains the correct information about the famous city for cherry blossoms in Japan.", + "prediction": "The city famous for its cherry blossoms in Japan is Kyoto. The best time to visit is usually between late March and early April." + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the walking distance to the nearest supermarket own by a local company from the hotel.", + "question": "Does the passage clearly state the distance is 2.0km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is DoubleTree by Hilton Hotel Pittsburgh Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hilton hotel in the vicinity, if available. Then, tell me the the shortest walking distance to a supermarket from the hotel.", + "question": "Does the passage clearly state the distance is 1.4km?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the name of the hotel is Hyatt Regency Pittsburgh International Airport?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "yes" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "no" + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the minimal driving time to a supermarket from the hotel.", + "question": "Does the passage clearly state the driving time is 15min?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past three days, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $0?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 3?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past four month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $845.49?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 24?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past year, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $6560.69?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the number of orders is 12?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "yes" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "no" + }, + { + "task": "Today is 6/12/2023. Tell me how many fulfilled orders I have over the past six month, and the total amount of money I spent.", + "question": "Does the passage clearly state the total spend is $1603.69?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"A Christmas Carol\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention one of the books is \"The Hobbit\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"A Christmas Carol\" is \"Levar Burton\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "yes" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "no" + }, + { + "task": "Among the top 10 post in \"books\" forum, show me the author name and the book name from posts that recommand a single book", + "question": "Does this passage mention the author of \"The Hobbit\" is \"J. R. R. Tolkien\"?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest tea cafe is Fuku Tea?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the address of Fuku Tea is 3716 Forbes Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "yes" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "no" + }, + { + "task": "Where is the nearest tea cafe to University of Pittsburgh, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Fuku Tea is 653m?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Five Guys is at 117 South Bouquet Street?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "yes" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "no" + }, + { + "task": "Where is the nearest Five Guys to 5700 Penn Ave, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Five Guys is 4.0km?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the nearest Starbucks is at 417 South Craig Street?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "yes" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "no" + }, + { + "task": "Where is the nearest Starbucks to Carnegie Mellon, and what is the walking distance to it?", + "question": "Does this passage clearly state the walking distance to Starbucks is 557m?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of wireless earphone is $0.14?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "yes" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "no" + }, + { + "task": "What is the price range of wireless earphone in the One Stop Market?", + "question": "Does this passage clearly state the highest price of wireless earphone is $745.00?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of teeth grinding mouth guard is $1.46?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "yes" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "no" + }, + { + "task": "What is the price range of teeth grinding mouth guard in the One Stop Market?", + "question": "Does this passage clearly state the highest price of teeth grinding mouth guard is $85.00?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the lowest price of Canon photo printer is $2.56?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "yes" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "no" + }, + { + "task": "What is the price range of Canon photo printer in the One Stop Market?", + "question": "Does this passage clearly state the highest price of Canon photo printer is $649.99?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the order id is 000000299?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "yes" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "no" + }, + { + "task": "Get the purchase date and order id of the most recent pending order", + "question": "Does this passage clearly state the purchase date is May 31, 2023?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's name is John Smith?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number +1 2058812302", + "question": "Does this passage clearly state the customer's email is john.smith.xyz@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's name is Jennifer White?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2137418080", + "question": "Does this passage clearly state the customer's email is jennifer.white@yahoo.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's name is Adam Garcia?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 2065555555", + "question": "Does this passage clearly state the customer's email is gamingpro456@gmail.com.", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's name is Sean Miller?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 8015551212", + "question": "Does this passage clearly state the customer's email is sean.miller@gmail.com?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's name is Veronica Costello?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "yes" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "no" + }, + { + "task": "Find the customer name and email with phone number 555-229-3326", + "question": "Does this passage clearly state the customer's email is roni_cost@example.com?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the lowest price is $5.49?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "yes" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "no" + }, + { + "task": "What is the price range for products from Amazon basic?", + "question": "Does this passage clearly state the highest price is $375.19?", + "label": "no" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "no" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "no" + }, + { + "task": "What is the price range for products from EYZUTAK?", + "question": "Does this passage clearly state there is only one product from EYZUTAK, and the price is $9.99?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the lowest price is $18.18?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "no" + }, + { + "task": "What is the price range for products from sephora?", + "question": "Does this passage clearly state the highest price is $94.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the lowest price is $6.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "yes" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "no" + }, + { + "task": "What is the price range for products from ugreen?", + "question": "Does this passage clearly state the highest price is $38.99?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the lowest price is $35?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "yes" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "no" + }, + { + "task": "What is the price range for products from Perricone MD?", + "question": "Does this passage clearly state the highest price is $149?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the pharmacy is Schiller's Pharmacy?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "yes" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest pharmacy from Carnegie Mellon I can walk within 20mins", + "question": "Does this passage clearly state the address is 811 South Aiken Avenue?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is Sunoco?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "yes" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "no" + }, + { + "task": "Where is the nearest gas station from CMU ", + "question": "Does this passage clearly state the gas station is located in North Craig Street?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "yes" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "no" + }, + { + "task": "What's the closest national park to Boston? How far is it to drive there?", + "question": "Does this passage clearly state the distance is 457km by driving?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "yes" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "no" + }, + { + "task": "What's the closest national park to the hometown of Stephen King? How long it takes to drive there?", + "question": "Does this passage clearly state the driving time is 1h 23min?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the national park is Acadia National Park?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "yes" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "no" + }, + { + "task": "What's the closest national park to Vinalhaven, ME? How long does it take to bike there?", + "question": "Does this passage clearly state the biking time is 10h 33min?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $18.99?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "yes" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "no" + }, + { + "task": "Provide me with the complete names of Bluetooth headphones from Sony, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $406?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the lowest price is $8.99?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "yes" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "no" + }, + { + "task": "Provide me with the full names of chargers from Anker, and also share the price range for the available models", + "question": "Does this passage mention the highest price is $59.99?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the lowest price is $3.745?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "yes" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "no" + }, + { + "task": "Please provide me with the complete product names of Oral B brush heads designed for children, along with their corresponding price range per brush", + "question": "Does this passage mention the highest price is $6.495?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the lowest price is $27.6?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "yes" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "no" + }, + { + "task": "List the full product names of slide slippers from Nike and tell me the price range of the available products", + "question": "Does this passage mention the highest price is $90.65?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the email address is coolcat321@hotmail.com?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the name is Samantha Jones?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "yes" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "no" + }, + { + "task": "Tell me the email address, name, phone number of the customer who has the most cancellations in the history", + "question": "Does this passage clearly state the phone number is 3055551212?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Shawn Allen?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Inayaili Le\u00f3n?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@live.se?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include email eriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does the passage include emaileriklindernoren@gmail.com?", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "yes" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "no" + }, + { + "task": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Ian Sutherland?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Joe Hadda?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Dan Abramov?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "yes" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "no" + }, + { + "task": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Susan Zhang?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Susan Zhang has 70 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Stephen Roller?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Stephen Roller has 51 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose name is Peter Albert?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "yes" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "no" + }, + { + "task": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "question": "Does the passage clearly state that Peter Albert has 12 commits?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Lo?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chen?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does the passage include the contributor whose last name is Chu?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "yes" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "no" + }, + { + "task": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", + "label": "no" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "yes" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "yes" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "yes" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "no" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "no" + }, + { + "task": "Show me the billing address for order number 00178.", + "question": "Does this passage clearly state the billing address of order number 00178 is 101 S San Mateo Dr, San Mateo, California, 94010, United States?", + "label": "no" + } + ], + "qa": [ + { + "question": "Does this post inquire about how to deal with long-distance relationships? Yes or No", + "label": "yes", + "prediction": "Hi everyone,\n\nI'm reaching out to this community for some advice and support on handling a long-distance relationship. My partner and I have recently found ourselves in different cities/countries due to work/study commitments, and we're trying to figure out the best ways to maintain our relationship despite the distance.\n\nIf any of you have experience with long-distance relationships, I'd love to hear your tips and insights. Specifically, I'm curious about:\n\nCommunication: How do you keep the communication flowing and meaningful? Any tools or methods that have worked well for you?\n\nTrust and Security: How do you build and maintain trust when you're not physically together?\n\nQuality Time: What are some creative ways to spend quality time together despite the distance?\n\nManaging Expectations: How do you manage expectations and deal with the challenges that come with being apart?\n\nAny advice, personal stories, or resources you can share would be greatly appreciated. Thank you so much in advance for your help!\n\nBest regards," + }, + { + "question": "Does this passage clearly state the desire for a refund? Yes or no.", + "label": "yes", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience." + }, + { + "question": "Does this post inquire about how to deal with long-distance relationships? Yes or No", + "label": "no", + "plan": "I will construct a post where the user explain that they are comfortable with long-distance relationships and does not seek advice or support on the topic.", + "prediction": "long-distance relationship is not a big problem for me, I can handle it well. I enjoy it.\n\n Posted by adfa_132c" + }, + { + "question": "Does this post inquire about the effectiveness of online learning? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes.\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "label": "no", + "plan": "I will generate a post where ask for the community feedback and perspectives without using the phrase 'your opinion'.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes.\n\n 183 comments" + }, + { + "question": "Does this post clear state the budget limit is $200? Yes or no.", + "label": "no", + "plan": "I will draft a post where the user has a different budget limit than $200.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $120? I want to block the noise\n\n 183 comments" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. Your opnion?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. your opnion?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. opnion?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for noise-cancelling headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for noise-cancelling headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? I want to block the noise\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a sony headphone under $200?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? Sony wanted\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? I don't like Sony\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for used iphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a iphone model under $750? \n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for used iphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a iphone model where the typical used ones are under $750 on Ebay? \n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: 180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #00180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate product SKU B087QJN9W1? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000148?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $169.95?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000161?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $68.88?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $12.99?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "yes" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "no" + }, + { + "question": "does this passage include the accurate refund amount $1.63?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with long-distance relationships", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with cheating in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with sexual harassment in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to choose a gift for birthday in a relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about how to deal with break-up in relationship?", + "label": "no" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "yes" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "yes" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "yes" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "no" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "no" + }, + { + "question": "Does this passage inquire about the effectiveness of online learning?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about iphone 14?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about the Harry Potter movie series?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about long-distance relationship?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "yes" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "no" + }, + { + "question": "Does this passage ask for discussions about fun things to do in Pittsburgh?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "yes" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage contains the exact phrase 'your opinion'?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running shoes recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for running pants recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for noise-cancelling headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $200?", + "label": "no" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "yes" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "yes" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "yes" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "no" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "no" + }, + { + "question": "Does this passage ask for DIY toolkit recommendation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $100?", + "label": "no" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for Sony headphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $500?", + "label": "no" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "yes" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "yes" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "yes" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "no" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "no" + }, + { + "question": "Does this question ask for recommandation about must-have product in daily lives?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $30?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "yes" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage ask for used iphone recommandation?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "yes" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage clear state the budget limit is $1000?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Harry Potter enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on July 8th?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Big little lies enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on September 10th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for racing cars enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on October 21st?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "yes" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage talk about a virtual meetup for Tears of Kingdom enthusiasts?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is on December 15th?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage clearly state the meetup is virtual?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could machine learning help the world of books?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could open-source LLMs help the field of technology?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "no" + }, + { + "question": "Does this passage inquire about how could large language models help the field of data visualization?", + "label": "no" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "yes" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "no" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "no" + }, + { + "question": "Does this passage inquire about how diffusion models could help the field of history?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 000000180?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 161?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B09P7BFL4H?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B087QJN9W1?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 180?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B0041MSF2S?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "Does this passage clearly state the product broke after three days of use?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "yes" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "no" + }, + { + "question": "does this passage include the accurate order number 148?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "yes" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "no" + }, + { + "question": "does this passage include the accurate product SKU B003FVW3VA?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a loyal customer?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the promise from the shop before?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to the plan of bulk purchase?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is due to being a student?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the desire for a coupon?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "yes" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "no" + }, + { + "question": "Does this passage clearly state the reason for the coupon is to compensate for a refund?", + "label": "no" + } + ], + "fuzzy_na_match": [ + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": true, + "prediction": "After performing extensive search on the map, I found that there are no international airports within a driving distance of 5 km to Carnegie Mellon University. The closest international airport is Pittsburgh International Airport, which is approximately 30 km away from the university." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review about under water photo for the given product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the product you are referring to, hence there are no reviews about under water photo." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": true, + "prediction": "I have searched through the reviews and found that there are no customers who have expressed dissatisfaction with the Chloe tank. Every review for this product is positive." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": false, + "plan": "I will create an answer that found the wrong repository and response with the information about the repository.", + "prediction": "I found a repository where you made contributions and it has more than 100 stars. The repository is \"a11yproject\"." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": false, + "plan": "I will generate an answer assuming the operation was done wrong and provide incorrect information about the nearest In-N-Out.", + "prediction": "The nearest In-N-Out to the University of Pittsburgh is located at 123 Burger Lane, and the walking distance to it is approximately 2 km." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming the operation was done incorrectly and provide a reason that is not related to the reference.", + "prediction": "The delivery address cannot be changed because the system is currently experiencing technical difficulties." + }, + { + "task": "Get the order number of my most recent under delivery order", + "reference": "There is no under delivery order", + "label": false, + "plan": "I will generate an answer indicating that the system encountered an error while trying to retrieve the information.", + "prediction": "The system encountered an error while trying to retrieve the order number of your most recent under delivery order. Please try again later." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": false, + "plan": "I will create an answer assuming that the product has been discontinued and hence no reviews are available.", + "prediction": "The sephora brushes have been discontinued, and as a result, there are no reviews available for this product." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": false, + "plan": "I will create an answer assuming that the product has been discontinued and hence no reviews are available.", + "prediction": "The sephora brushes have been discontinued, and as a result, there are no reviews available for this product." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer indicating that there was an issue with the deletion process.", + "prediction": "There was an issue with the deletion process, and we were unable to delete the negative reviews for Sybil running short. Please try again later." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": false, + "plan": "I will create an answer assuming that the page is not loading correctly.", + "prediction": "I cannot retrieve the phone number of Carnegie Mellon Caf\u00e9 as the page is not loading correctly at the moment." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": true, + "prediction": "After thoroughly searching through the orders, I found that there is no order with the status of \"fraud suspect.\" Therefore, there is no customer name to provide for such an order." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": true, + "prediction": "Upon reviewing the customer feedback, it is evident that there are no reviews available for brushes from Sephora. Customers have not left any comments or ratings for these products." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no review that mention about price being unfair for the given product", + "label": false, + "plan": "I will generate an answer assuming that the reviews are not accessible due to a technical issue.", + "prediction": "I am unable to list out reviewers who mention about price being unfair as the reviews are currently inaccessible due to a technical issue." + }, + { + "task": "Get the order number of my most recent on hold order", + "reference": "there is no on hold order", + "label": true, + "prediction": "After thoroughly checking the order records, I found that there are no orders currently on hold. You do not have any recent orders with an 'on hold' status." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Upon reviewing the order policy, it is clear that the shipping address cannot be changed once an order has been placed on the website. Therefore, it is not possible to update the delivery address for your most recent order to 3 Oxford St, Cambridge, MA." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": true, + "prediction": "I have checked the order tracking system and found that there are no orders currently out for delivery. You do not have any recent orders with an 'out of delivery' status." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": false, + "plan": "I will generate an answer that incorrectly assumes there is a processing order and provides a total cost.", + "prediction": "The total cost of your latest processing order is $45.99, including taxes and shipping fees." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": false, + "plan": "I will generate an answer assuming the address change request was processed incorrectly.", + "prediction": "The delivery address for your most recent order has been successfully updated to 4000 Forbes Ave, Pittsburgh, PA." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": false, + "plan": "I will create an answer that provides an incorrect or unrelated phone number.", + "prediction": "The phone number for Carnegie Mellon Caf\u00e9 is 123-456-7890." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "According to the website's policy, the shipping address cannot be changed after an order is placed. Therefore, it is not possible to update the delivery address for your most recent order to 155 5th Street, San Francisco, CA." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": false, + "plan": "I will generate an answer that lists incorrect SKUs.", + "prediction": "The SKUs of the products that have 10 units left are SKU12345 and SKU67890." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": true, + "prediction": "After checking the order database, I found that there are no orders currently in the processing stage. All orders have either been completed, shipped, or are still pending." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer assuming that the reviews cannot be accessed due to a system error.", + "prediction": "I am unable to access the reviews for Sybil running short due to a system error. Please try again later." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": false, + "plan": "I will generate an answer indicating that the system is unable to fetch the delivery status.", + "prediction": "The system is currently unable to fetch the delivery status of the orders. Please check back later." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming that the address change was attempted but failed due to a policy restriction.", + "prediction": "An attempt was made to change the delivery address to 77 Massachusetts Ave, Cambridge, MA, but it failed due to a policy restriction that prevents address changes after an order is placed." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": false, + "plan": "I will generate an answer assuming that the USCIS office is not listed in the system.", + "prediction": "I cannot find the US Citizenship and Immigration Services office you are referring to, hence I am unable to provide the walking distance to the nearest Social Security Administration." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "After reviewing the order policies on the website, it is clear that the shipping address cannot be changed once an order has been placed. This is to ensure the accuracy and security of the delivery process." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": false, + "plan": "I will generate an answer that provides a wrong reason for not being able to find the customer service number.", + "prediction": "The customer service number is currently unavailable due to a temporary outage on the website." + }, + { + "task": "Get the order number of my most recent on hold order", + "reference": "There is no on hold order", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to retrieve the order number as the system is currently under maintenance." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to change the delivery address as the option is not accessible on the current page." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": false, + "plan": "I will generate an answer assuming that the repository does not exist.", + "prediction": "I cannot find the repository you are referring to, hence unable to create the folder and file." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": false, + "plan": "I will create an answer that lists incorrect SKUs for products that supposedly have 10 units left.", + "prediction": "The SKUs of the products that have 10 units left are SKU12345, SKU67890, and SKU54321." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to change the delivery address as the option is not accessible on the current page." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": true, + "prediction": "After thoroughly checking the website, I have found that there is no customer service phone number listed. The website only provides an email address and a contact form for customer support." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": true, + "prediction": "Upon attempting to add the users as maintainers, it was found that you do not have the necessary permissions. Only the repository owner has the rights to add or modify maintainers." + }, + { + "task": "Get the order number of my most recent on hold order ", + "reference": "there is no on hold order", + "label": false, + "plan": "I will generate an answer that incorrectly identifies an order as being on hold.", + "prediction": "The most recent order that is on hold has the order number #12345. Please check your order history for more details." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": true, + "prediction": "After reviewing all the feedback for Sybil running short, I found that there are no negative reviews to delete. All reviews for this product are positive." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": true, + "prediction": "I have searched through the reviews and found that there are no customers who have expressed dissatisfaction with the Chloe tank. Every review for this product is positive." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": true, + "prediction": "After thoroughly checking all the reviews, it appears that no reviewers have mentioned anything about underwater photos for the given product. The reviews focus on other aspects of the product." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Unfortunately, the shipping address cannot be changed once an order has been placed on the website. This policy ensures that orders are processed and shipped as quickly as possible." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": false, + "plan": "I will generate an answer assuming that the website lists a wrong customer service phone number.", + "prediction": "You can call the customer service at 123-456-7890. However, please verify this number on the website as it may not be accurate." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": false, + "plan": "I will generate an answer assuming the system is unable to locate the processing orders.", + "prediction": "Unable to locate the most recent processing order due to an error in accessing the order database." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": false, + "plan": "I will generate an answer assuming there is a misunderstanding about the location of the airports.", + "prediction": "I found an international airport within a 5 km driving distance to Carnegie Mellon University. The airport is 'Pittsburgh Municipal Airport' located at '123 Aviation Road, Pittsburgh, PA'." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer assuming the system mistakenly identifies some reviews as negative.", + "prediction": "I have deleted all the negative reviews for Sybil running short. Please note that this action cannot be undone." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": true, + "prediction": "Upon reviewing the system capabilities, it has been confirmed that there is no function to filter and show only discounted items. You may need to manually check each item for discounts." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": true, + "prediction": "I have searched through the reviews and found that there are no customers who have expressed dissatisfaction with the Chloe tank. Every review for this product is positive." + }, + { + "task": "Get the order number of my most recent on hold order", + "reference": "there is no on hold order", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + }, + { + "task": "Get the order number of my most recent under delivery order", + "reference": "There is no under delivery order", + "label": true, + "prediction": "After reviewing the order history, I found that there are no orders currently under delivery. All orders have either been completed or are in other statuses." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": true, + "prediction": "After checking the database, I found that there are no customer reviews for the Amazon Echo Dot 3rd generation. It appears that no reviews have been submitted for this product yet." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": true, + "prediction": "After thoroughly examining the reviews, I found that there are no criticisms for this product. All the reviews are positive, highlighting the product's excellent features and performance." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": false, + "plan": "I will generate an answer assuming that the user has submissions in a different subreddit.", + "prediction": "I found submissions created by FTorrez81, but they are in the subreddit iphone12, not iphone13. Therefore, I cannot like submissions in the specified subreddit." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": true, + "prediction": "After checking the surroundings of Pittsburgh airport, I found that there are no hotels within a 3-minute walking distance. In fact, the closest hotels are more than 5 minutes away by foot." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": false, + "plan": "I will generate an answer indicating that the system is unable to retrieve the orders due to a technical issue.", + "prediction": "I encountered a technical issue while trying to retrieve the most recent processing order. The system is currently unable to access the order information." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": false, + "plan": "I will generate an answer assuming that the hotels are too far to be within a 5-minute walking distance.", + "prediction": "I found that the nearest hotels to CMU, Pittsburgh are all more than a 10-minute walking distance away. Therefore, there are no hotels within a 5-minute walking distance." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": true, + "prediction": "After extensively searching for nearby hotels, I found that there are no hotels within a 5-minute walking distance to CMU, Pittsburgh. The closest hotels are at least a 10-minute walk away." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no review that mention about price being unfair for the given product", + "label": false, + "plan": "I will create an answer assuming that the product does not have reviews mentioning the price.", + "prediction": "I searched through the reviews and found that there are no mentions of the price being unfair. Most reviewers have commented on other aspects of the product." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": true, + "prediction": "I checked the system and found that there are no orders currently in processing. All recent orders have either been completed or are in a different status." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": true, + "prediction": "After thoroughly checking the vicinity of Carnegie Mellon University in Pittsburgh, I found that there are no hotels within a 5-minute walking distance. The closest hotels are all situated at a distance that requires a longer walk." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no review that mentions about price being unfair for the given product", + "label": true, + "prediction": "I have reviewed all the feedback for the given product and found that no reviewers have mentioned anything about the price being unfair. All comments related to pricing are either neutral or positive." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": false, + "plan": "I will create an answer assuming that there is a technical issue preventing the retrieval of orders.", + "prediction": "There seems to be a technical issue with retrieving the most recent processing order at the moment. Please try again later." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": false, + "plan": "I will generate an answer assuming that the repository structure is incorrect or inaccessible.", + "prediction": "I attempted to create the folder and file, but it seems that the repository structure is incorrect or the repository itself is inaccessible. Please check the repository details and try again." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": true, + "prediction": "After thoroughly searching through the subreddit iphone13, I found that FTorrez81 does not have any submissions. Therefore, there are no posts to like." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": false, + "plan": "I will generate an answer assuming the user is looking at the wrong location.", + "prediction": "It seems you might be looking at the wrong location. The nearby hotels to CMU, Pittsburgh, are actually more than 5 minutes walking distance away." + }, + { + "task": "Get the order number of my most recent under delivery order ", + "reference": "There is no under delivery order", + "label": false, + "plan": "I will generate an answer indicating the system encountered an error.", + "prediction": "There seems to be a system error, and I am unable to retrieve the order number of your most recent under delivery order at the moment." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer listing incorrect criticisms that are not present in the reference.", + "prediction": "Some of the main criticisms of this product include complaints about its battery life, slow performance, and subpar camera quality." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Unfortunately, once an order has been placed on our website, the shipping address cannot be changed. This policy is in place to ensure the accuracy and security of our delivery process. If you need to update your address, you may need to cancel your current order and place a new one with the correct address." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": false, + "plan": "I will generate an answer assuming that there was an issue accessing the order details.", + "prediction": "I am currently unable to retrieve the total cost of your latest processing order due to a temporary issue accessing the order details. Please try again later or contact customer support for assistance." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": false, + "plan": "I will create an answer assuming that the function to show discounted items is not available due to a system update.", + "prediction": "The function to show only discounted items is currently unavailable due to a system update. Please check back later or browse through the categories manually to find discounted items." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": true, + "prediction": "Currently, our website does not have a dedicated function to filter and show only discounted items. You may need to browse through the different categories and look for items that are marked with a discount manually." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": false, + "plan": "I will generate an answer assuming there is a system error preventing access to the reviews.", + "prediction": "Due to a system error, I am currently unable to access the reviews for the Chloe tank. Please try again later." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming the address change option is temporarily unavailable due to a technical glitch.", + "prediction": "The option to change the delivery address is currently unavailable due to a technical glitch. Please try again later or contact customer support." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": false, + "plan": "I will generate an answer assuming the user is looking at the wrong location.", + "prediction": "It seems you might be looking at the wrong location. There is no US Citizenship and Immigration Services office near Carnegie Mellon University. Please check the address and try again." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": true, + "prediction": "According to the website's policy, the shipping address cannot be changed once an order has been placed. This ensures the accuracy and security of the delivery process." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": true, + "prediction": "After reviewing all the orders, I found that there is no order currently out for delivery. All orders are either completed, pending, or in transit." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": true, + "prediction": "I attempted to create a folder named 'car' on the gimmiethat.space repo and include a file called urls.txt with the links to the 5 most recent posts from cars. However, the subreddit 'cars' does not exist, making it impossible to retrieve any posts." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": false, + "plan": "I will generate an answer with an incorrect phone number for Carnegie Mellon Caf\u00e9.", + "prediction": "The phone number for Carnegie Mellon Caf\u00e9 is (412) 268-2000." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": false, + "plan": "I will generate an answer assuming the presence of a USCIS office and provide incorrect walking distance information.", + "prediction": "The nearest US Citizenship and Immigration Services office is located at 123 Main Street, which is about 1 km from Carnegie Mellon University. The walking distance to the nearest Social Security Administration from this USCIS office is approximately 500 meters." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": false, + "plan": "I will generate an answer assuming that the user's submissions are not accessible due to a privacy setting.", + "prediction": "I am unable to dislike the submissions created by jacyanthis in the subreddit earthporn because the user's submissions are set to private and cannot be accessed." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": false, + "plan": "I will create an answer that incorrectly identifies an airport within the specified distance.", + "prediction": "I found an international airport within a driving distance of 5 km to Carnegie Mellon University. The airport is 'Pittsburgh Downtown Airport' located at 123 Airport Road, Pittsburgh, PA." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": true, + "prediction": "After thoroughly examining all available reviews, I found that there are no criticisms of this product. Every review is overwhelmingly positive, praising the product's quality and performance." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Unfortunately, once an order is placed on the website, the shipping address cannot be changed. This policy ensures the accuracy and security of the delivery process." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Once an order is placed on the website, the shipping address is locked and cannot be altered. This policy ensures that the shipping process remains efficient and prevents any potential issues with delivery logistics. Therefore, it is not possible to change the delivery address for your most recent order to 6726 McPherson Blvd, Pittsburgh, PA." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": true, + "prediction": "After thoroughly checking the subreddit iphone13, I found that FTorrez81 has not made any submissions. Therefore, it is not possible to like any submissions from this user in the specified subreddit." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": true, + "prediction": "Upon searching the area around Carnegie Mellon University, I found that there is no nearby US Citizenship and Immigration Services (USCIS) office. Consequently, it is not possible to determine the walking distance to the nearest Social Security Administration from a non-existent USCIS office." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "According to the website's policy, once an order has been placed, the shipping address cannot be modified. This rule is in place to ensure the accuracy and efficiency of the shipping process. As a result, it is not possible to change the delivery address for your most recent order to 77 Massachusetts Ave, Cambridge, MA." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": false, + "plan": "I will generate an answer assuming there is a nearby In-N-Out and provide incorrect walking distance information.", + "prediction": "The nearest In-N-Out to the University of Pittsburgh is located on Forbes Avenue, and the walking distance to it is approximately 10 minutes." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": true, + "prediction": "After thoroughly searching through the available pages, I found that the phone number for Carnegie Mellon Caf\u00e9 does not exist. It seems that the contact information is not provided on the page." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": false, + "plan": "I will create an answer that incorrectly summarizes non-existent reviews.", + "prediction": "The customer reviews for the Amazon Echo Dot 3rd generation are overwhelmingly positive. Many users praise its compact design and excellent sound quality. However, a few reviews mention issues with voice recognition." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": true, + "prediction": "Upon reviewing the feedback, I found that there are no negative reviews for the Sybil running short. All the reviews are positive, reflecting high customer satisfaction." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": false, + "plan": "I will generate an answer assuming the number is listed incorrectly on the website.", + "prediction": "You can call the customer service at 123-456-7890. Please note that this number may not be accurate as the website might have listed it incorrectly." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": true, + "prediction": "After an extensive search, I found that there is no US Citizenship and Immigration Services (USCIS) office nearby Carnegie Mellon University. Therefore, it is not possible to provide the walking distance to the nearest Social Security Administration from the USCIS office." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": true, + "prediction": "I attempted to create a folder named 'car' on the gimmiethat.space repo and include a file called urls.txt with the links to the 5 most recent posts from cars. However, the subreddit 'cars' does not exist, making it impossible to retrieve the required information." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": true, + "prediction": "Upon checking the inventory, I found that there are no products that have exactly 10 units left. All products either have more or less than 10 units in stock." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "After reviewing the order policies on the website, it is clear that the shipping address cannot be changed once an order has been placed. This restriction ensures that the delivery process remains efficient and secure." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": false, + "plan": "I will generate an answer assuming that the customer data is not accessible due to privacy restrictions.", + "prediction": "The email addresses of customers are protected by privacy policies, and I cannot access or share them. Therefore, I am unable to provide the email address of the customer who is the most unhappy with the style of Zoe products." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": false, + "plan": "I will create an answer that assumes the product reviews are currently unavailable due to a technical issue.", + "prediction": "Currently, the customer reviews for the Amazon Echo Dot 3rd generation are unavailable due to a technical issue. Please try again later." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer indicating that the address change request could not be processed due to a system error.", + "prediction": "There was an error processing your request to change the delivery address for your most recent order. Please contact customer support for further assistance." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": true, + "prediction": "After thoroughly checking the subreddit earthporn, I found that user jacyanthis does not have any submissions. Therefore, there are no posts to dislike from this user in that subreddit." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": false, + "plan": "I will generate an answer assuming that there was an error in the inventory system.", + "prediction": "Due to an error in the inventory system, I am unable to retrieve the SKU of the products that have exactly 10 units left at this moment." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": false, + "plan": "I will create an answer assuming that the Hugging Face repository is currently under maintenance.", + "prediction": "The Hugging Face repository is currently under maintenance, so I am unable to create an issue regarding the support for Webagent in the next quarter." + }, + { + "task": "Show the most recent processing order", + "reference": "there is no order in processing", + "label": true, + "prediction": "After reviewing the orders, I found that there are no orders currently in the processing status. Therefore, I cannot show you the most recent processing order." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": true, + "prediction": "After attempting to create an issue, I discovered that the huggingface repository does not exist. Therefore, it is not possible to inquire about their plans on supporting Webagent in the next quarter." + }, + { + "task": "Get the order number of my most recent on hold order ", + "reference": "there is no on hold order", + "label": true, + "prediction": "Upon reviewing your order history, I found that there are no orders currently on hold. Therefore, I cannot provide the order number for a non-existent on hold order." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": false, + "plan": "I will create an answer that found the wrong repository and response with the information about the repository.", + "prediction": "I found a repository where you made contributions and it has more than 100 stars. The repository is \"open-source-project\"." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the Amazon Echo Dot 3rd generation in the system, hence there are no reviews to summarize." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": true, + "prediction": "After searching through the GitHub repositories, I found that there is no repository named 'huggingface'. Therefore, it is not possible to create an issue asking about their plans on supporting Webagent in the next quarter." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming the address change feature is unavailable due to a different reason.", + "prediction": "The address change feature is currently unavailable due to a system maintenance issue. Please try again later." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": false, + "plan": "I will generate an answer assuming the user FTorrez81 does not exist.", + "prediction": "The user FTorrez81 does not exist in the subreddit iphone13, so I cannot like any submissions." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": false, + "plan": "I will generate an answer assuming the subreddit iphone13 does not exist.", + "prediction": "The subreddit iphone13 does not exist, so I cannot like any submissions." + }, + { + "task": "Like all submissions created by FTorrez81 in subreddit iphone13", + "reference": "FTorrez81 does not have any submissions in iphone13", + "label": true, + "prediction": "After thoroughly checking the submissions in the subreddit iphone13, it is evident that FTorrez81 does not have any submissions. Therefore, there are no posts to like from this user in the specified subreddit." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": false, + "plan": "I will generate an answer assuming that the user miscalculated the walking distance.", + "prediction": "The walking distance from the Hyatt Regency Pittsburgh International Airport to the Pittsburgh airport is approximately 2 minutes." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": false, + "plan": "I will create an answer with incorrect customer names who supposedly expressed dissatisfaction.", + "prediction": "The customers who have expressed dissatisfaction with the Chloe tank are John Doe and Jane Smith." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": true, + "prediction": "The operation could not be completed because the user is not the owner of the repository kkroening/ffmpeg-python and thus does not have the necessary permissions to add maintainers. Only the owner of the repository can grant such permissions." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": true, + "prediction": "After thoroughly checking the inventory database, I can confirm that there are no products with exactly 10 units left. The stock levels for all products are either above or below this quantity." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": false, + "plan": "I will generate an answer assuming that the system encountered an error while attempting the address change.", + "prediction": "I encountered an error while trying to change the delivery address for your most recent order. Please try again later or contact customer support." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": false, + "plan": "I will create an answer assuming that there was a misunderstanding and the user does not have access to create folders in the repo.", + "prediction": "You do not have the necessary permissions to create a folder or add files to the gimmiethat.space repo. Please contact the repository owner for access." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": true, + "prediction": "You do not have the necessary permissions to add maintainers to the repo kkroening/ffmpeg-python because you are not the owner of the repository. Only the repository owner can make such changes." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": true, + "prediction": "After reviewing your order history, I found that there are no orders currently in the \"processing\" status. Therefore, I am unable to provide the total cost of such an order." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": true, + "prediction": "Upon checking the locations of In-N-Out Burger, it appears that there are no In-N-Out restaurants near the University of Pittsburgh. The closest In-N-Out locations are in states far from Pennsylvania, making it impossible to provide a walking distance." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": false, + "plan": "I will generate an answer indicating a wrong status update for the order.", + "prediction": "The most recent order shows as being in the \"preparing\" stage, not \"out of delivery.\" Please check the order status again." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": false, + "plan": "I will create an answer suggesting the user check a different section for discounted items.", + "prediction": "You might want to check the \"Special Offers\" section, as it often lists items that are on discount even though the function to show only discounted items does not exist." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Once an order is placed on our website, the shipping address becomes locked and cannot be changed. This policy is in place to ensure the accuracy and efficiency of our delivery process. Therefore, it is not possible to change the delivery address for your most recent order to 6726 McPherson Blvd, Pittsburgh, PA." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming that the address change feature is temporarily unavailable.", + "prediction": "Currently, the feature to change the delivery address is temporarily unavailable due to system maintenance. Please try again later or contact customer support for further assistance." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": false, + "plan": "I will generate an answer assuming there is an In-N-Out but provide incorrect distance information.", + "prediction": "The nearest In-N-Out to the University of Pittsburgh is located at 1234 Burger Lane. The walking distance to it is approximately 2 miles, which should take about 40 minutes on foot." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": true, + "prediction": "After reviewing your order history, I can confirm that there is no order currently in the \"processing\" status. Therefore, I am unable to provide the total cost for such an order." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": true, + "prediction": "According to the website's policy, the shipping address cannot be changed once an order has been placed. This is to ensure the accuracy and reliability of the delivery process. Therefore, it is not possible to change the delivery address for your most recent order to 4000 Forbes Ave, Pittsburgh, PA." + }, + { + "task": "Give me the SKU of the products that have 10 units left", + "reference": "There is no product that has 10 quantities left.", + "label": true, + "prediction": "After thoroughly checking the inventory, it appears that there are no products that have exactly 10 units left. This means there are no SKUs available for products with this specific quantity." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": true, + "prediction": "Upon reviewing the website, it has been confirmed that there is no customer service phone number listed. This means that customers will need to use alternative methods such as email or live chat to get in touch with customer service." + }, + { + "task": "Change the delivery address for my most recent order to 3 Oxford St, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer that incorrectly states the address was changed successfully.", + "prediction": "The delivery address for your most recent order has been successfully updated to 3 Oxford St, Cambridge, MA." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": true, + "prediction": "After thoroughly searching through all the reviews for the given product, I found that there are no mentions of underwater photos. It appears that none of the reviewers have commented on the product's performance or quality in underwater conditions." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": true, + "prediction": "Upon examining the page thoroughly, I found that the phone number for Carnegie Mellon Caf\u00e9 is not listed. It seems that the page does not provide contact information for the caf\u00e9." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": false, + "plan": "I will generate an answer that includes incorrect customer feedback for the Sephora brushes.", + "prediction": "Customers have mentioned that the brushes from Sephora are extremely durable and provide a smooth application. Many have praised the quality and affordability of these brushes." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": false, + "plan": "I will create an answer indicating that the notification was sent successfully.", + "prediction": "Sarah Miller has been notified regarding her most recent pending order with the message: \"the order is ready to be shipped soon!\" The notification was sent successfully." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": true, + "prediction": "After thoroughly reviewing all the feedback for Zoe products, I found that there is no customer who is unhappy with the style of Zoe products. All reviews are positive, and customers seem to appreciate the style of these products." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": true, + "prediction": "Upon checking your order history, I found that there are no orders currently in the 'processing' status. Therefore, I am unable to provide the total cost for such an order." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": true, + "prediction": "After examining the order records, it appears that there are no orders marked as 'out of delivery'. Therefore, I cannot show any recent orders with this status." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": true, + "prediction": "I reviewed the repositories where you have made contributions and found that none of them have more than 100 stars. Unfortunately, there are no repositories meeting this criterion." + }, + { + "task": "Which number to call for the customer service?", + "reference": "The website does not list the customer service phone number", + "label": true, + "prediction": "After thoroughly checking the website, I found that there is no customer service phone number listed. You might need to use other means of contact such as email or the website's contact form for customer service inquiries." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": true, + "prediction": "I have reviewed all the orders and found that there are no orders with the status of 'fraud suspect'. Therefore, there is no customer name to provide for such an order." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": false, + "plan": "I will generate an answer assuming there was a system error preventing the notification from being sent.", + "prediction": "Due to a system error, we were unable to send the notification to Sarah Miller regarding her most recent pending order." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": true, + "prediction": "I have searched through the reviews and found that there are no customers who have expressed dissatisfaction with the Chloe tank. Every review for this product is positive." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": false, + "plan": "I will create an answer assuming there are reviews but they do not mention dissatisfaction.", + "prediction": "I found several reviews for the Chloe tank, but none of them mention dissatisfaction. All the reviews are neutral or positive." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the product you are referring to, hence there are no reviews about under water photo." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": false, + "plan": "I will create an answer assuming the operation was done incorrectly due to a different issue.", + "prediction": "The operation could not be completed because the repository name 'kkroening/ffmpeg-python' is incorrect or does not exist." + }, + { + "task": "Change the delivery address for my most recent order to 77 Massachusetts Ave, Cambridge, MA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming the system allows changes but encountered an error.", + "prediction": "I tried to change the delivery address for your most recent order to 77 Massachusetts Ave, Cambridge, MA, but encountered an error in the system. Please try again later or contact customer support for assistance." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": true, + "prediction": "After thoroughly checking the system, I found that there is no function available to show only discounted items. You may need to browse through the categories to find items on discount." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": true, + "prediction": "I attempted to notify Sarah Miller about her most recent pending order with the message \"the order is ready to be shipped soon!\" but the system does not support adding order history messages. Therefore, the notification could not be sent." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the product you are referring to, hence there are no reviews about under water photo." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": true, + "prediction": "After conducting a thorough search, I can confirm that there are no international airports within a driving distance of 5 km to Carnegie Mellon University. The nearest international airport is Pittsburgh International Airport, which is approximately 30 km away from the university." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer assuming the delivery address is already set to an incorrect address that cannot be changed.", + "prediction": "The delivery address for your most recent order is already set to an incorrect address and cannot be changed at this stage." + }, + { + "task": "Change the delivery address for my most recent order to 155 5th Street, San Francisco, CA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Unfortunately, once an order is placed on the website, the shipping address cannot be changed. You may need to cancel the order and place a new one with the correct address." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": true, + "prediction": "After thoroughly searching through the subreddit earthporn, I found that jacyanthis does not have any submissions in this subreddit. Therefore, it is not possible to dislike any submissions made by jacyanthis in earthporn." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": false, + "plan": "I will create an answer that found the wrong repository and respond with the information about the repository.", + "prediction": "I found a repository where you made contributions and it has more than 100 stars. The repository is \"Awesome-Lists\"." + }, + { + "task": "Get the order number of my most recent under delivery order", + "reference": "There is no under delivery order", + "label": true, + "prediction": "Upon reviewing your order history, I found that there are no orders currently marked as under delivery. Therefore, it is not possible to provide the order number for such an order." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer assuming there are irrelevant or incorrect criticisms found.", + "prediction": "The main criticisms of this product include complaints about its color fading too quickly and the packaging being damaged upon arrival. However, these issues were not mentioned in the reviews provided." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": true, + "prediction": "After conducting a thorough search, I can confirm that there are no international airports within a 5 km driving distance of Carnegie Mellon University. The nearest international airport is Pittsburgh International Airport, which is approximately 30 km away from the university." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no reivew that mention about price being unfair for the given product", + "label": true, + "prediction": "Upon reviewing all the feedback, I found that no reviewers have mentioned anything about the price being unfair for the given product. All comments have been neutral or positive regarding the pricing." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "I attempted to dislike the submissions, but it appears that there was an error in accessing the user's submissions on the subreddit earthporn." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": false, + "plan": "I will create an answer that provides incorrect information about nearby hotels.", + "prediction": "I found a hotel named 'Pittsburgh Inn' which is just a 3-minute walk from Carnegie Mellon University." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": false, + "plan": "I will generate an answer assuming the user has made a typo in the repository name.", + "prediction": "The repository name 'kkroening/ffmpeg-python' seems to be incorrect. Please check the repository name and try again." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": false, + "plan": "I will generate an answer indicating that the system cannot find Sarah Miller's pending order.", + "prediction": "Unable to send the notification as Sarah Miller does not have any pending orders in the system." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": false, + "plan": "I will generate an answer with an incorrect observation about negative reviews.", + "prediction": "The most unhappy customer with the style of Zoe products is John Doe, and his email address is johndoe@example.com." + }, + { + "task": "Get the order number of my most recent under delivery order ", + "reference": "There is no under delivery order", + "label": false, + "plan": "I will generate an answer indicating the system encountered an error while fetching the order details.", + "prediction": "There was an error retrieving the details of your most recent under delivery order. Please try again later." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": true, + "prediction": "Once an order is placed on the website, the shipping address becomes locked and cannot be altered. This policy is in place to ensure that the delivery process is efficient and secure. Any changes to the delivery address would require the order to be canceled and a new order to be placed with the correct address." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": false, + "plan": "I will generate an answer based on the assumption that the reviews are mixed and include negative feedback.", + "prediction": "The email address of the customer who expressed the most dissatisfaction with the style of Zoe products is unhappy_customer@example.com. This customer mentioned that the styles were outdated and did not meet their expectations." + }, + { + "task": "Get the order number of my most recent under delivery order ", + "reference": "There is no under delivery order", + "label": true, + "prediction": "After reviewing your order history, I found that there are no orders marked as 'under delivery'. All your orders have been delivered successfully without any issues." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": true, + "prediction": "Upon checking your contributions, I found that none of the repositories you have contributed to have received more than 100 stars. Your contributions are valuable, but the repositories have not yet reached that level of popularity." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": true, + "prediction": "After thoroughly examining all customer reviews for Zoe products, I found that there is no negative feedback regarding the style of Zoe products. All the reviews are overwhelmingly positive, and hence, there is no email address of a customer who is unhappy with the style." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": true, + "prediction": "Upon reviewing the submissions in the earthporn subreddit, it is evident that user jacyanthis has not made any submissions. Therefore, there are no posts by jacyanthis to dislike." + }, + { + "task": "find discounted items.", + "reference": "There is no function to show only discount items", + "label": false, + "plan": "I will generate an answer assuming that the function to show discounted items is broken.", + "prediction": "The function to display only discounted items seems to be malfunctioning at the moment. Please try again later or browse through the items manually to find discounts." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no review that mentions about price being unfair for the given product", + "label": true, + "prediction": "After checking all the reviews for the given product, I found that none of the reviewers mentioned anything about the price being unfair. All the feedback is related to other aspects of the product." + }, + { + "task": "I am arriving at Carnegie Mellon University. Find the nearby US Citizenship and Immigration Services and the walking distance to the nearest Social Security Administration from US Citizenship and Immigration Services", + "reference": "There is no USCIS nearby", + "label": true, + "prediction": "After conducting a thorough search, I found that there are no US Citizenship and Immigration Services (USCIS) offices nearby Carnegie Mellon University. Consequently, it is not possible to determine the walking distance to the nearest Social Security Administration office from a USCIS office that does not exist in the vicinity." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the product you are referring to, hence there are no reviews about under water photo." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": true, + "prediction": "Upon reviewing the available data, I found that there are no hotels near Pittsburgh airport that are within a 3-minute walking distance. The closest hotels are situated at a distance that requires more than 5 minutes of walking." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": true, + "prediction": "Upon reviewing the available data, I found that there are no hotels near Pittsburgh airport that are within a 3-minute walking distance. The closest hotels are situated at a distance that requires more than 5 minutes of walking." + }, + { + "task": "Change the delivery address for my most recent order to 6726 McPherson Blvd, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed in the website.", + "label": false, + "plan": "I will generate an answer indicating the operation was successful despite the policy.", + "prediction": "The delivery address for your most recent order has been successfully changed to 6726 McPherson Blvd, Pittsburgh, PA. Please note that any future changes might not be possible once the order is processed." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": false, + "plan": "I will generate an answer indicating a technical error that allowed the address to be changed.", + "prediction": "Due to a technical glitch, the delivery address for your most recent order has been updated to 4000 Forbes Ave, Pittsburgh, PA. Please be aware that this change might not reflect in the system immediately." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": true, + "prediction": "Upon reviewing the customer feedback, it appears that there are no reviews available for the Sephora brushes. Customers have not left any comments or ratings for these products." + }, + { + "task": "Add the following users to repo kkroening/ffmpeg-python as maintainer: ['yjlou', 'a11yproject']", + "reference": "The user is not the owner of the repo, so the user does not have permissions to add maintainer", + "label": false, + "plan": "I will generate an answer indicating a permissions error due to a different issue.", + "prediction": "The users 'yjlou' and 'a11yproject' could not be added as maintainers to the repo kkroening/ffmpeg-python due to a temporary server issue. Please try again later." + }, + { + "task": "Tell me the total cost of my latest processing order?", + "reference": "There is no order of \"processing\" status", + "label": false, + "plan": "I will generate an answer assuming the system failed to retrieve the order status.", + "prediction": "I am unable to retrieve the total cost of your latest processing order as the system failed to access the order status." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": false, + "plan": "I will create an answer assuming there are hotels within the specified distance but provide incorrect distances.", + "prediction": "I found that the nearest hotels to Pittsburgh airport are within a 2-minute walking distance. For example, the Airport Inn is just a 2-minute walk away." + }, + { + "task": "Show me the walking distance from nearby hotels to Pittsburgh airport that take at most 3 minutes?", + "reference": "There is no hotel near Pittsburgh airport that is within 5 minutes walking distance", + "label": false, + "plan": "I will create an answer assuming there are hotels within the specified distance but provide incorrect distances.", + "prediction": "I found that the nearest hotels to Pittsburgh airport are within a 2-minute walking distance. For example, the Airport Inn is just a 2-minute walk away." + }, + { + "task": "Show me the email address of the customer who is the most unhappy with the style of Zoe products", + "reference": "There is no negative review for Zoe products, all reviews are positive.", + "label": true, + "prediction": "I have thoroughly reviewed the feedback and found that there are no customers who are unhappy with the style of Zoe products. All the reviews indicate positive sentiments towards the style of these products." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": true, + "prediction": "After performing an extensive search on various maps and databases, I found that there are no international airports within a driving distance of 5 km to Carnegie Mellon University. The closest international airport is Pittsburgh International Airport, which is approximately 30 km away from the university." + }, + { + "task": "Change the delivery address for my most recent order to 4000 Forbes Ave, Pittsburgh, PA.", + "reference": "The shipping address cannot be changed after an order is placed, according to the website's policy.", + "label": true, + "prediction": "According to the website's policy, the shipping address cannot be changed once the order has been placed. This is to ensure the timely and accurate delivery of products without any alterations that could cause confusion or delay." + }, + { + "task": "What do customers say about brush from sephora", + "reference": "The sephora brushes don't have reviews", + "label": true, + "prediction": "After reviewing the product page and customer feedback section, I found that there are no reviews available for the Sephora brushes. It appears that customers have not yet provided feedback on this product." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": true, + "prediction": "Upon examining the customer review section, I found that there are no reviews available for the Amazon Echo Dot 3rd generation. It seems that customers have not yet left any feedback for this product." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": true, + "prediction": "After thoroughly reviewing all the repositories where you have made contributions, I have confirmed that none of them have reached the milestone of 100 stars. Despite your valuable contributions, the repositories have not garnered enough attention to surpass this threshold." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": true, + "prediction": "Upon investigating the order records, I found that there are no orders flagged with a \"fraud suspect\" status. Consequently, there is no customer name to provide for such an order as it does not exist in the current records." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": false, + "plan": "I will generate an answer assuming that the user has made a typo in the repository name and the correct repository does not support Webagent.", + "prediction": "I found the repository you mentioned, but it seems the maintainers have not provided any information or plans about supporting Webagent in the next quarter. You might want to double-check the repository name or contact the maintainers directly for more details." + }, + { + "task": "DisLike all submissions created by jacyanthis in subreddit earthporn", + "reference": "jacyanthis does not have any submissions in earthporn", + "label": false, + "plan": "I will generate an answer assuming that the user has made a typo in the username and the correct user has no submissions in the subreddit.", + "prediction": "I checked the submissions in the subreddit earthporn, but it appears that the user you mentioned, jacyanthis, does not have any submissions. Please verify the username or the subreddit and try again." + }, + { + "task": "Show me the walking distance from nearby hotels to CMU, Pittsburgh that take at most 5 minutes?", + "reference": "There is no hotel near CMU that is within 5 minutes walking distance", + "label": true, + "prediction": "After thoroughly checking the vicinity of Carnegie Mellon University in Pittsburgh, it appears that there are no hotels within a 5-minute walking distance. The closest hotels are at least 10-15 minutes away on foot, making it impossible to meet the 5-minute walking distance criteria." + }, + { + "task": "Get the order number of my most recent on hold order ", + "reference": "there is no on hold order", + "label": true, + "prediction": "Upon reviewing your order history, I found that there are no orders currently marked as 'on hold.' All your recent orders have either been completed or are in a different status." + }, + { + "task": "Summarize customer reviews for Amazon Echo Dot 3rd generation.", + "reference": "There is no review for this product", + "label": true, + "prediction": "After searching through the customer reviews, it seems that there are no reviews available for the Amazon Echo Dot 3rd generation. This product has not received any feedback from customers yet." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": true, + "prediction": "I attempted to create an issue regarding the support for Webagent in the next quarter, but it appears that the Huggingface repository does not exist. Therefore, I was unable to proceed with the creation of the issue." + }, + { + "task": "Delete all negative reviews for Sybil running short", + "reference": "There is no negative reviews for the given product. All reviews are positive.", + "label": true, + "prediction": "After thoroughly examining the reviews for the Sybil running short, I found that there are no negative reviews to delete. Every review for this product is positive, so there is no action required." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": true, + "prediction": "Upon reviewing all the feedback for this product, I discovered that there are no criticisms to extract. All the reviews are positive, indicating that customers are satisfied with the product." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review that mention about under water photo for the given product", + "label": true, + "prediction": "I have gone through all the reviews and found that there are no mentions of underwater photos for this product. Therefore, there are no reviewers to list who have mentioned this aspect." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": true, + "prediction": "I attempted to notify Sarah Miller regarding her most recent pending order, but the system indicates that it cannot add order history. As a result, the message \"the order is ready to be shipped soon!\" cannot be sent." + }, + { + "task": "What is the phone number of Carnegie Mellon Caf\u00e9", + "reference": "The phone number does not exist in the page", + "label": true, + "prediction": "After thoroughly checking the page, I found that the phone number for Carnegie Mellon Caf\u00e9 is not listed. It appears that the contact information for the caf\u00e9 is not provided on the page." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": true, + "prediction": "Upon investigating the area around the University of Pittsburgh, it is clear that there are no In-N-Out locations nearby. The closest In-N-Out restaurant is located in a different state, making it inaccessible by walking." + }, + { + "task": "List out reviewers, if exist, who mention about price being unfair", + "reference": "There is no review that mention about price being unfair for the given product", + "label": false, + "plan": "I will create an answer assuming that the reviews were mistakenly not retrieved.", + "prediction": "It seems that the reviews were not properly retrieved, hence I cannot find any reviewers who mentioned the price being unfair for the given product." + }, + { + "task": "Show the most recent out of delivery order", + "reference": "there is no order out of delivery", + "label": false, + "plan": "I will generate an answer indicating that the system failed to fetch the order status correctly.", + "prediction": "There seems to be an issue with fetching the order statuses, as I am unable to find any recent out of delivery orders at the moment." + }, + { + "task": "Make a folder named car on the gimmiethat.space repo and include a file called urls.txt that consists of the links to the 5 most recent posts from cars.", + "reference": "the subreddit does not exist", + "label": true, + "prediction": "I attempted to create a folder named 'car' on the gimmiethat.space repo and include a file called urls.txt with the links to the 5 most recent posts from cars. However, I found that the subreddit 'cars' does not exist, making it impossible to retrieve the required links and complete the task." + }, + { + "task": "Where is the nearest In-N-Out to Upitts, and what is the walking distance to it?", + "reference": "There is no In-N-Out near University of Pittsburgh", + "label": true, + "prediction": "After conducting a thorough search for In-N-Out locations near the University of Pittsburgh, I found that there is no In-N-Out near the university. Therefore, it is not possible to provide the walking distance to the nearest In-N-Out." + }, + { + "task": "Notify Sarah Miller in their most recent pending order with message \"the order is ready to be shipped soon!\"", + "reference": "The system message says that \"We cannot add order history.\". Hence the message cannot be sent.", + "label": true, + "prediction": "I tried to notify Sarah Miller regarding her most recent pending order with the message \"the order is ready to be shipped soon!\". Unfortunately, the system displayed a message saying \"We cannot add order history.\" As a result, the notification could not be sent." + }, + { + "task": "Create an issue asking about do they have any plan on supporting Webagent in the next quater in huggingface dataset.", + "reference": "huggingface repo does not exist", + "label": false, + "plan": "I will create an answer assuming the repo exists but the feature request is not related to the dataset.", + "prediction": "I have created an issue on the huggingface repo asking if they have any plans on supporting Webagent in the next quarter. However, it seems that the feature request is not related to the dataset, and the issue may not be addressed in the context of the dataset." + }, + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": false, + "plan": "I will generate an answer indicating an incorrect airport within 5 km.", + "prediction": "I found an international airport within 5 km of Carnegie Mellon University. The airport is 'Allegheny County Airport', located at 12 Airport Rd, West Mifflin, PA 15122." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": false, + "plan": "I will create an answer that found the wrong repository and response with the information about the repository.", + "prediction": "I found a repository where you made contributions and it has more than 100 stars. The repository is 'open-source-project'." + }, + { + "task": "What are the main criticisms of this product? Please extract the relevant sentences.", + "reference": "there is no existing criticism for the given product. All reviews are positive.", + "label": false, + "plan": "I will generate an answer listing criticisms that are not present in the reference.", + "prediction": "The main criticisms of this product are: 'The battery life is too short,' 'The build quality feels cheap,' and 'The software is very buggy.'" + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + } + ] +} \ No newline at end of file diff --git a/evaluation_harness/eval_evaluators/fuzzy_match_test.py b/evaluation_harness/eval_evaluators/fuzzy_match_test.py new file mode 100644 index 0000000..9affbe9 --- /dev/null +++ b/evaluation_harness/eval_evaluators/fuzzy_match_test.py @@ -0,0 +1,420 @@ +"""Script to test the prompt for fuzzy match""" + +import collections +import json +import os +import random +import subprocess + +import numpy as np +from sklearn.metrics import precision_recall_fscore_support +import tqdm +from evaluation_harness.evaluators import StringEvaluator +from scripts.utils import calc_openai_cost + + +def get_fuzzy_exact_match_message(pred: str, reference: str, task: str) -> str: + user_message = f"""Determine if the prediction is correct by comparing it with the reference answer. +- The reference answer presents the correct answer in its minimal form. +- When the reference answer is about time duration, distance, or quantity, the prediction can be in a different format, but the information should be equivalent. + +Task: {task} +Reference answer: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude with the score using the format: "Answer: Correct"/"Answer: Incorrect" +""".strip() + return user_message + + +def get_fuzzy_must_include_message(pred: str, reference: str, task: str) -> str: + """Check whether the prediction contains the must_include information.""" + user_message = f"""Determine if the prediction contains the required information. +- The prediction is considered as containing the required information if it can entail the required information. +- The prediction can contain additional information. +- When the information is about time duration, distance, or quantity, the prediction can be in a different format, but the information should be equivalent. + +Task: {task} +Required information: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude with the score using the format: "Answer: Contain"/"Answer: Not contain" +""".strip() + return user_message + + +def get_question_answering_message(question: str, answer: str, passage: str) -> str: + user_message = f"""Provide a binary answer to the question given the passage. +- Carefully read the passage, +- Make sure you understand the question and do not be loose with the interpretation. + +Passage: {passage} +Question: {question} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Yes"/"Answer: No". +""".strip() + return user_message + + +def get_context_aware_question_answering_message(question: str, answer: str, passage: str, context: str) -> float: + """Check if the expected answer can be generated from the question and context.""" + user_message = f"""Provide a binary answer to the question given the passage. +- `Task` indicates the context in which the passage is presented. +- Carefully read the passage. +- Make sure you understand the question and do not be loose with the interpretation. + +Task: {context} +Passage: {passage} +Question: {question} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Yes"/"Answer: No". +""".strip() + return user_message + + +def get_fuzzy_na_match(pred: str, reference: str, task: str) -> float: + user_message = f"""Determine if the predicted reason given for why the task cannot be completed is correct. +- The prediction is only considered as correct if the reference and the prediction can entail each other. +- Make sure you understand the task and the reason presented in the reference. Do not be loose with the interpretation. + +Task: {task} +Reference: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Correct"/"Answer: Incorrect". +""".strip() + return user_message + + +def generate_data( + input_file: str, + method: str, + example_num: int, + prediction_start_index: int, + batch_size: int, + rate_limit: int, + token_limit: int, +) -> str: + with open(input_file, "r") as f: + d = json.load(f)[method] + _d = d[prediction_start_index:] + random.shuffle(_d) + d = d[:prediction_start_index] + _d + requests = [] + + for i in range(prediction_start_index, len(d), batch_size): + cur_batch = d[i : i + batch_size] + format = f""" +# Examples +```json +{json.dumps(d[:example_num], indent=2)} +``` + +# Response format +You will return the data with the `prediction` field added. Everything else remains the same. Make sure to wrap the data inside ```json```. + +# Data that you will be working with +```json +{json.dumps(cur_batch, indent=2)} +```""".strip() + + if method == "fuzzy_must_include": + instruction = f"""You need to add the missing `prediction` field to the given data. When the label is `True`, you will generate a prediction which is a paragraph that contains *all* information in the reference. You need to make sure the generation does not miss any element from the list. When the label is `False`, the generated paragraph either has at least one error compared to the elements listed in the reference, or misses at least one elements from it. You will first generate a `plan` on which elements(s) you choose to alter before generating the prediction. In both cases, you will be creative to change the order of elements, the format, the wording and phrasing. You can either be verbose or concise.""" + elif method == "fuzzy_exact_match": + instruction = f"""You need to add the missing `prediction` field to the given data. When the label is `True`, you will refer to `reference` and generate the prediction that answers the `question`. When the label is `False`, consider the characteristics of the reference answer and generate a prediction that is incorrect, but still attempts to answer the question. You will be creative to use diverse format, wording and phrasing. You can either be verbose or concise.""" + elif method == "context_qa": + instruction = f"""You need to insert the missing `prediction` field into the existing data. Based on your prediction, the binary response (`yes` or `no`) to the `question`, in the context of accomplishing the `task`, should correspond with the `label` provided. Commonly, when the label is `yes`, your generated prediction will includes the semantic equivalent information queried in the question. You are free to incorporate more information. When the label is `no`, your prediction either misses the information, or presents the wrong information. You will first generate a `plan` on how do you want to alter the information before generating the prediction. You will be creative to use diverse format, wording and phrasing. You can either be verbose or concise""" + elif method == "qa": + instruction = f"""You need to insert the missing `prediction` field into the existing data. Based on your prediction, the binary response (`yes` or `no`) to the `question` should correspond with the `label` provided. Commonly, when the label is `yes`, your generated prediction will includes the semantic equivalent information queried in the question. You are free to incorporate more information. When the label is `no`, your prediction either misses the information, or presents the wrong information. You will first generate a `plan` on how do you want to alter the information before generating the prediction. You will be creative to use diverse format, wording and phrasing. You can either be verbose or concise""" + elif method == "fuzzy_na_match": + instruction = f"""You need to add the missing `prediction` field to the given data. When the label is `True`, you will generate a prediction which is a paragraph of the reference on explaining why the `task` cannot be achieved. When the label is `False`, the generated paragraph list wrong reasons or observations that are not present in the reference. You will first generate a `plan` on what is the alternative scenario you are trying to simulate. You will be creative in the answer format.""" + else: + raise ValueError(f"Unknown method: {method}") + + instruction += "\n" + format + messages = [{"role": "user", "content": instruction}] + cur_body = { + "model": "gpt-4o", + "messages": messages, + "temperature": 0.5, + "max_tokens": 4096, + "top_p": 1.0, + } + + requests.append(cur_body) + + request_file = input_file.replace(".json", f"_{method}_requests.jsonl") + with open(request_file, "w") as f: + for r in requests: + f.write(json.dumps(r) + "\n") + print(f"Total requests: {len(requests)}") + save_file = input_file.replace(".json", f"_{method}_results.jsonl") + if os.path.exists(save_file): + os.remove(save_file) + process = subprocess.Popen( + [ + "python", + "scripts/openai_request_parallel.py", + "--request_url", + "https://api.openai.com/v1/chat/completions", + "--api_key", + os.environ["OPENAI_API_KEY"], + "--requests_filepath", + request_file, + "--save_filepath", + save_file, + "--max_requests_per_minute", + str(rate_limit), + "--max_tokens_per_minute", + str(token_limit), + ] + ) + process.wait() + + return save_file + + +def add_predictions(dataset_file: str, result_file: str, method: str, prediction_start_index: int) -> None: + with open(dataset_file, "r") as f: + d = json.load(f) + print(f"Original data length: {len(d[method][prediction_start_index:])}") + + all_preds = [] + with open(result_file, "r") as f: + for line in f: + data = json.loads(line) + pred = data[1]["choices"][0]["message"]["content"] + pred = pred.split("```json")[1].replace("```", "").strip() + try: + pred = json.loads(pred) + except json.decoder.JSONDecodeError: + continue + all_preds.extend(pred) + # for x in pred: + # if not x['label']: + # print(x) + print(f"Valid predictions: {len(all_preds)}") + + d[method][prediction_start_index:] = all_preds + with open(dataset_file, "w") as f: + json.dump(d, f, indent=2) + + +def test_evaluator(data_file: str, method: str) -> float: + with open(data_file, "r") as f: + d = json.load(f)[method] + requests = [] + for e_id, example in enumerate(d): + messages: list[str] = [] + if method == 'fuzzy_must_include': + if any([x not in example for x in ["reference", "task", "prediction", "label"]]): + continue + ref = example["reference"] + task = example["task"] + pred = example["prediction"] + label = example["label"] + for x in ref: + message = get_fuzzy_must_include_message(pred, x, task) + messages.append(message) + elif method == 'fuzzy_exact_match': + if any([x not in example for x in ["reference", "task", "prediction", "label"]]): + continue + ref = example["reference"] + task = example["task"] + pred = example["prediction"] + label = example["label"] + message = get_fuzzy_exact_match_message(pred, ref, task) + messages.append(message) + elif method == 'fuzzy_na_match': + if any([x not in example for x in ["reference", "task", "prediction", "label"]]): + continue + ref = example["reference"] + task = example["task"] + pred = example["prediction"] + label = example["label"] + message = get_fuzzy_na_match(pred, ref, task) + messages.append(message) + elif method == 'context_qa': + if any([x not in example for x in ["task", "question", "prediction", "label"]]): + continue + task = example["task"] + question = example["question"] + pred = example["prediction"] + label = example["label"] + message = get_context_aware_question_answering_message(question, label, pred, task) + messages.append(message) + elif method == 'qa': + if any([x not in example for x in ["question", "prediction", "label"]]): + continue + question = example["question"] + pred = example["prediction"] + label = example["label"] + message = get_question_answering_message(question, label, pred) + messages.append(message) + else: + raise ValueError(f"Unknown method: {method}") + + for message in messages: + requests.append({ + "model": "gpt-4o", + "messages": [{"role": "user", "content": message.strip()}], + "temperature": 0.0, + "max_tokens": 256, + "top_p": 1.0, + "metadata": {"e_id": e_id, "method": method, "label": label.lower() if isinstance(label, str) else label} + }) + + print(f"Total requests: {len(requests)}") + request_file = data_file.replace(".json", f"_{method}_eval_requests.jsonl") + with open(request_file, "w") as f: + for r in requests: + f.write(json.dumps(r) + "\n") + + save_file = data_file.replace(".json", f"_{method}_eval_results.jsonl") + if os.path.exists(save_file): + os.remove(save_file) + process = subprocess.Popen( + [ + "python", + "scripts/openai_request_parallel.py", + "--request_url", + "https://api.openai.com/v1/chat/completions", + "--api_key", + os.environ["OPENAI_API_KEY"], + "--requests_filepath", + request_file, + "--save_filepath", + save_file, + "--max_requests_per_minute", + "15_000", + "--max_tokens_per_minute", + "2_000_000", + "--logging_level", + "40" + ] + ) + process.wait() + + +def parse_evaluator_result(data_file, save_file: str, method: str, print_errors: bool=True) -> None: + # parse the result file + all_preds = [] + with open(save_file, "r") as f: + for line in f: + data = json.loads(line) + all_preds.append(data) + + + e_id_to_pred = {x[2]["e_id"]: True for x in all_preds} + e_id_to_label = {} + for data in all_preds: + metadata = data[2] + if method in ["fuzzy_must_include", "fuzzy_exact_match", 'fuzzy_na_match']: + e_id_to_label[metadata["e_id"]] = metadata["label"] + elif method in ["context_qa", "qa"]: + e_id_to_label[metadata["e_id"]] = True if metadata["label"] == "yes" else False + else: + raise ValueError(f"Unknown method: {method}") + + e_id_to_response = collections.defaultdict(list) + tot = len(e_id_to_pred) + for data in all_preds: + e_id = data[2]["e_id"] + try: + pred = data[1]["choices"][0]["message"]["content"].lower() + e_id_to_response[e_id].append(data[0]["messages"][0]["content"] + "\n\n" + pred) + except (KeyError, TypeError): + e_id_to_pred[e_id] = "Error" + continue + if method in ["fuzzy_exact_match", "fuzzy_na_match"]: + if "answer: correct" in pred: + e_id_to_pred[e_id] = True + else: + e_id_to_pred[e_id] = False + elif method == "fuzzy_must_include": + if "answer: not contain" in pred: + e_id_to_pred[e_id] = False + elif method in ["context_qa", "qa"]: + if "answer: yes" in pred: + e_id_to_pred[e_id] = True + else: + e_id_to_pred[e_id] = False + else: + raise ValueError(f"Unknown method: {method}") + + error = 0 + preds = [] + labels = [] + e_ids = [] + for e_id in e_id_to_pred: + if e_id_to_pred[e_id] == "Error": + error += 1 + continue + preds.append(e_id_to_pred[e_id]) + labels.append(e_id_to_label[e_id]) + e_ids.append(e_id) + preds = np.array(preds) + labels = np.array(labels) + acc = np.sum(preds == labels) / len(labels) + p, r, f1, _ = precision_recall_fscore_support(labels, preds, average='binary') + + if print_errors: + # print wrong predictions + with open(data_file, "r") as f: + d = json.load(f)[method] + # get the index where labels != preds + error_indices = np.where(preds != labels)[0] + for i in error_indices: + print(d[e_ids[i]]) + + print("====================") + print(f"Error: {error}") + print(f"Accuracy: {acc:.2f}") + print(f"Precision: {p:.2f}") + print(f"Recall: {r:.2f}") + print(f"F1: {f1:.2f}") + print("====================") + + +if __name__ == "__main__": + overwrite = False + print_errors = True + # generate data + params_map = { + 'fuzzy_must_include': {'example_num': 4, 'prediction_start_index': 4}, + 'fuzzy_exact_match': {'example_num': 5, 'prediction_start_index': 5}, + 'context_qa': {'example_num': 5, 'prediction_start_index': 5}, + 'qa': {'example_num': 6, 'prediction_start_index': 24}, + 'fuzzy_na_match': {'example_num': 5, 'prediction_start_index': 5}, + } + dataset_file = "./tmp_data/fuzzy_match_dataset.json" + for method in ["fuzzy_must_include", 'fuzzy_na_match', "fuzzy_exact_match", "context_qa", "qa"][2:3]: + with open(dataset_file, "r") as f: + d = json.load(f)[method] + if overwrite or 'prediction' not in d[params_map[method]['prediction_start_index']]: + save_file = generate_data( + dataset_file, + method, + example_num=params_map[method]['example_num'], + prediction_start_index=params_map[method]['prediction_start_index'], + batch_size=4, + rate_limit=15_000, + token_limit=2_000_000, + ) + calc_openai_cost(save_file) + result_file = f"./tmp_data/fuzzy_match_dataset_{method}_results.jsonl" + add_predictions(dataset_file, result_file, method, prediction_start_index=params_map[method]['prediction_start_index']) + + test_evaluator(dataset_file, method) + parse_evaluator_result(dataset_file, dataset_file.replace(".json", f"_{method}_eval_results.jsonl"), method, print_errors=print_errors) + calc_openai_cost(dataset_file.replace(".json", f"_{method}_eval_results.jsonl")) diff --git a/evaluation_harness/eval_evaluators/seed_data.json b/evaluation_harness/eval_evaluators/seed_data.json new file mode 100644 index 0000000..cb8c5e1 --- /dev/null +++ b/evaluation_harness/eval_evaluators/seed_data.json @@ -0,0 +1,266 @@ +{ + "fuzzy_must_include":[ + { + "task": "Show me the order statuses for order number 170 and 189.", + "reference": [ + "170: cancelled", + "189: pending" + ], + "label": true, + "prediction": "Order number 170 is canceled, order number 189 is pending" + }, + { + "task": "Provide the current statuses for tickets 101 and 202.", + "reference": [ + "101: resolved", + "202: in progress" + ], + "label": false, + "plan": "I will change the status of ticket 101 and keep the status of ticket 202 the same", + "prediction": "The current statuses for the tickets are as follows: Ticket 101 is open, and Ticket 202 is in progress." + }, + { + "task": "Show me how many orders are placed each month over the past 7 months", + "reference": [ + "January: 10", + "February: 15", + "March: 20", + "April: 25", + "May: 30", + "June: 35", + "July: 40" + ], + "label": true, + "prediction": "Here are the number of orders placed each month over the past 7 months: In January, 10 orders were placed. In February, 15 orders were placed. In March, 20 orders were placed. In April, 25 orders were placed. In May, 30 orders were placed. In June, 35 orders were placed. In July, 40 orders were placed." + }, + { + "task": "Summarize the sales revenue for each quarter of the past year", + "reference": [ + "Q1: $58,900", + "Q2: $60,200", + "Q3: $70,001", + "Q4: $81,300" + ], + "label": false, + "plan": "I will change the revenue of Q2 and simulate a scenario where the revenue of Q4 cannot be found", + "prediction": "I found the sales revenue summary for the past year: In Q1, the revenue was $58,900. In Q2, the revenue was $60230. In Q3, the revenue was $70,001. Unfortunately I cannot find the revenue for Q4." + } + ], + "fuzzy_exact_match": [ + { + "task": "tell me the count of comments that have received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "reference": "0", + "prediction": "there is no comment that has received more downvotes than upvotes for the user who made the latest post on the Showerthoughts forum.", + "label": true + }, + { + "task": "what is the average rating for the latest product reviewed by sushi_lover on the Foodie forum?", + "reference": "4.5", + "prediction": "The latest product reviewed by sushi_lover on the Foodie forum is a Xefuji sushi set with an average rating of 4.5.", + "label": true + }, + { + "task": "what is the total revenue generated by selling the Nike T-shirt in the last month?", + "reference": "$10,300", + "prediction": "Here is what I found about the total revenue generated by selling the Nike T-shirt in the last month. The revenue is consist of three ordrs, the total revenue is $7,802", + "label": false + }, + { + "task": "What's the closest national park to the largest city in Maine?", + "reference": "Acadia National Park", + "prediction": "Shenanigans National Park", + "label": false + }, + { + "task": "what is the most popular movie on FlixForum in October 2022?", + "reference": "Zombie Apocalypse", + "prediction": "The most popular movie on FlixForum in October 2022 is Top Gun: Maverick. Followed by Zombie Apocalypse", + "label": false + } + ], + "context_qa": [ + { + "task": "Which customer likes Nike Airmax the most? Show me their name, phone number and address", + "prediction": "Here is the customer I found who likes Nike Airmax the most: Name: Michael Chang, Phone Number: 412-789-0034, Address: 998 Bakery Street, Pittsburgh, PA 15222", + "question": "Does this passage clearly state the customer's name is Michael Chang?", + "label": "yes" + }, + { + "task": "Which restaurant has the best pizza in Chicago? Provide the restaurant's name, address, and contact number.", + "question": "Does this passage clearly state the restaurant's name is 'Lou Malnati's Pizzeria'?", + "label": "no", + "plan": "I will produce an answer which finds a different restaurant as the best pizza place in Chicago.", + "prediction": "According to reviews, the restaurant with the best pizza in Chicago is 'Gino's East'. The address is 1120 N State St, Chicago, IL 60610, and the contact number is 312-725-7777." + }, + { + "task": "I will arrive Pittsburgh Airport soon. Provide the name of a Hyatt hotel in the vicinity, if available. Then, tell me the the shortest walking time to a supermarket from the hotel.", + "question": "Does the passage clearly state the walking time is 3h 30min?", + "label": "no", + "plan": "I will gneerate an answer which contains different walking time to the supermarket.", + "prediction": "- **Hyatt Hotel**: Hyatt Regency Pittsburgh International Airport\n- **Walking Time to Supermarket**: 30-35 minutes to the nearest Giant Eagle Supermarket located at 100 Settlers Ridge Center Dr, Pittsburgh, PA 15205." + }, + { + "task": "Which country has the largest population in Africa? Provide the country's name and population count.", + "prediction": "The country with the largest population in Africa is Nigeria", + "question": "Does this passage clearly state the country's name is Nigeria?", + "label": "yes" + }, + { + "task": "I am planning a trip to Japan. Which city is famous for its cherry blossoms? Provide the city's name and the best time to visit.", + "question": "Does this passage clearly state the city's name is 'Osaka'?", + "label": "no", + "plan": "I will provide an answer which contains the correct information about the famous city for cherry blossoms in Japan.", + "prediction": "The city famous for its cherry blossoms in Japan is Kyoto. The best time to visit is usually between late March and early April." + } + ], + "qa":[ + { + "question": "Does this post inquire about how to deal with long-distance relationships? Yes or No", + "label": "yes", + "prediction": "Hi everyone,\n\nI'm reaching out to this community for some advice and support on handling a long-distance relationship. My partner and I have recently found ourselves in different cities/countries due to work/study commitments, and we're trying to figure out the best ways to maintain our relationship despite the distance.\n\nIf any of you have experience with long-distance relationships, I'd love to hear your tips and insights. Specifically, I'm curious about:\n\nCommunication: How do you keep the communication flowing and meaningful? Any tools or methods that have worked well for you?\n\nTrust and Security: How do you build and maintain trust when you're not physically together?\n\nQuality Time: What are some creative ways to spend quality time together despite the distance?\n\nManaging Expectations: How do you manage expectations and deal with the challenges that come with being apart?\n\nAny advice, personal stories, or resources you can share would be greatly appreciated. Thank you so much in advance for your help!\n\nBest regards," + }, + { + "question": "Does this passage clearly state the desire for a refund? Yes or no.", + "label": "yes", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience." + }, + { + "question": "Does this post inquire about how to deal with long-distance relationships? Yes or No", + "label": "no", + "plan": "I will construct a post where the user explain that they are comfortable with long-distance relationships and does not seek advice or support on the topic.", + "prediction": "long-distance relationship is not a big problem for me, I can handle it well. I enjoy it.\n\n Posted by adfa_132c" + }, + { + "question": "Does this post inquire about the effectiveness of online learning? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes.\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "label": "no", + "plan": "I will generate a post where ask for the community feedback and perspectives without using the phrase 'your opinion'.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes.\n\n 183 comments" + }, + { + "question": "Does this post clear state the budget limit is $200? Yes or no.", + "label": "no", + "plan": "I will draft a post where the user has a different budget limit than $200.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $120? I want to block the noise\n\n 183 comments" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. Your opnion?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. your opnion?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post contains the exact phrase 'your opinion'? Yes or no.", + "prediction": "Effectiveness of online learning?\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nI'm looking for some feedback and insights on the effectiveness of online learning. With the increasing shift towards digital education, I'm curious about how well online learning works compared to traditional in-person classes. opnion?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for noise-cancelling headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for noise-cancelling headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? I want to block the noise\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200?\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a sony headphone under $200?\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? Sony wanted\n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this post ask for Sony headphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a headphone under $200? I don't like Sony\n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for used iphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a iphone model under $750? \n\n 183 comments", + "label": "no" + }, + { + "question": "Does this post ask for used iphone recommandation? Yes or no.", + "prediction": "Need your suggestions!\n\nSubmitted by ewa1fads 2 years ago in machinelearning\n\nHi, can any of you recommand a iphone model where the typical used ones are under $750 on Ebay? \n\n 183 comments", + "label": "yes" + }, + { + "question": "Does this passage clearly state the product broke after three days of use? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: 180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate order number 000000180? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #00180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "yes" + }, + { + "question": "Does the passage include the accurate product SKU B087QJN9W1? Yes or no.", + "prediction": "I hope this message finds you well. I am writing to request a refund for the phone screen protector I purchased, which unfortunately broke after just three days of use. The details of my purchase are as follows:\n\nOrder Number: #000000180\nProduct SKU: [Insert Product SKU Here]\nI am disappointed with the quality of the screen protector as it did not meet my expectations for durability. Given that it broke so quickly, I believe a refund is warranted.\n\nPlease advise on the next steps to process my refund. If you require any additional information, feel free to contact me at your earliest convenience.", + "label": "no" + } + ], + "fuzzy_na_match": [ + { + "task": "Tell me the full address of all international airports that are within a driving distance of 5 km to Carnegie Mellon University", + "reference": "There is no airport within 5 km of Carnegie Mellon University", + "label": true, + "prediction": "After performing extensive search on the map, I found that there are no international airports within a driving distance of 5 km to Carnegie Mellon University. The closest international airport is Pittsburgh International Airport, which is approximately 30 km away from the university." + }, + { + "task": "List out reviewers, if exist, who mention about under water photo", + "reference": "There is no review about under water photo for the given product", + "label": false, + "plan": "I will generate an answer assuming that the product does not exist in the system.", + "prediction": "I cannot find the product you are referring to, hence there are no reviews about under water photo." + }, + { + "task": "Show me the name of the customers who have expressed dissatisfaction with Chloe tank", + "reference": "There is no negative review for Chloe tank", + "label": true, + "prediction": "I have searched through the reviews and found that there are no customers who have expressed dissatisfaction with the Chloe tank. Every review for this product is positive." + }, + { + "task": "Tell me the full names of the repositories where I made contributions and they got more than 100 stars?", + "reference": "Among the repositories where I made contributions, there is no repository that has more than 100 stars.", + "label": false, + "plan": "I will create an answer that found the wrong repository and response with the information about the repository.", + "prediction": "I found a repository where you made contributions and it has more than 100 stars. The repository is \"a11yproject\"." + }, + { + "task": "Get the customer name of the earliest fraud suspect order", + "reference": "There is no order of \"fraud suspect\" status", + "label": false, + "plan": "I will generate an answer indicating the operation was done wrong.", + "prediction": "Unable to locate the orders as the option is not accessible on the current page." + } + ] +} \ No newline at end of file diff --git a/evaluation_harness/evaluators.py b/evaluation_harness/evaluators.py index 305d73e..6f3b541 100644 --- a/evaluation_harness/evaluators.py +++ b/evaluation_harness/evaluators.py @@ -1,4 +1,5 @@ """base class for evaluation""" + # answer string match import base64 from io import BytesIO @@ -7,6 +8,7 @@ from pathlib import Path from typing import Any, Optional, TypedDict, Union, Dict from urllib.parse import urljoin +import warnings import numpy.typing as npt import numpy as np @@ -18,6 +20,29 @@ from playwright.sync_api import Page from evaluation_harness import image_utils from evaluation_harness.helper_functions import ( + get_query_text, + get_query_text_lowercase, + gitlab_get_project_memeber_role, + reddit_get_latest_comment_content_by_username, + reddit_get_latest_comment_obj_by_username, + reddit_get_parent_comment_username_of_latest_comment_by_username, + reddit_get_post_url, + shopping_get_latest_order_url, + shopping_get_num_reviews, + shopping_get_order_product_name_list, + shopping_get_order_product_option, + shopping_get_order_product_quantity, + shopping_get_product_attributes, + shopping_get_product_price, + shopping_get_rating_as_percentage, + shopping_get_sku_latest_review_author, + shopping_get_sku_latest_review_rating, + shopping_get_sku_latest_review_text, + llm_fuzzy_exact_match, + llm_fuzzy_must_include, + llm_fuzzy_na_match, + llm_question_answering, + llm_context_aware_question_answering, llm_fuzzy_match, llm_ua_match, PseudoPage, @@ -59,10 +84,7 @@ def __init__(self, eval_tag: str = "", log_file: str = "") -> None: self.log_file = log_file def __call__( - self, - trajectory: Trajectory, - config_file: Path | str, - page: Page | PseudoPage + self, trajectory: Trajectory, config_file: Path | str, page: Page | PseudoPage ) -> float: raise NotImplementedError @@ -165,8 +187,7 @@ def exact_match(ref: str, pred: Union[str, int]) -> float: if isinstance(pred, int): pred = str(pred) return float( - StringEvaluator.clean_answer(pred) - == StringEvaluator.clean_answer(ref) + StringEvaluator.clean_answer(pred) == StringEvaluator.clean_answer(ref) ) @staticmethod @@ -176,11 +197,7 @@ def must_include(ref: str, pred: str, tokenize: bool = False) -> float: clean_pred = StringEvaluator.clean_answer(pred) # tokenize the answer if the ref is a single word # prevent false positive (e.g, 0) - if ( - tokenize - and len(clean_ref) == 1 - and len(word_tokenize(clean_ref)) == 1 - ): + if tokenize and len(clean_ref) == 1 and len(word_tokenize(clean_ref)) == 1: tok_pred = word_tokenize(clean_pred) return float(clean_ref in tok_pred) else: @@ -200,33 +217,76 @@ def must_exclude(ref: str, pred: str) -> float: else: return float(clean_ref not in clean_pred) + @staticmethod + @beartype + def fuzzy_exact_match(ref: str, pred: str, intent: str) -> tuple[str, float]: + return llm_fuzzy_exact_match(pred, ref, intent) + + @staticmethod + @beartype + def fuzzy_must_include(ref: str, pred: str, intent: str) -> tuple[str, float]: + return llm_fuzzy_must_include(pred, ref, intent) + + @staticmethod + @beartype + def question_answering( + question: str, answer: str, passage: str + ) -> tuple[str, float]: + return llm_question_answering(question, answer, passage=passage) + + @staticmethod + @beartype + def context_aware_question_answering( + question: str, answer: str, passage: str, intent: str + ) -> tuple[str, float]: + return llm_context_aware_question_answering( + question, answer, passage=passage, context=intent + ) + + @staticmethod + @beartype + def fuzzy_na_match(intent: str, reference: str, pred: str) -> tuple[str, float]: + return llm_fuzzy_na_match(pred, reference, intent) + @staticmethod @beartype def fuzzy_match(ref: str, pred: str, intent: str) -> float: + warnings.warn( + "fuzzy_match will be deprecated in WebArena 2.0 in favor of fuzzy_exact_match and fuzzy_must_include.", + DeprecationWarning, + ) return llm_fuzzy_match(pred, ref, intent) @staticmethod @beartype def ua_match(ref: str, pred: str, intent: str) -> float: + warnings.warn( + "llm_ua_match will be deprecated in WebArena 2.0 in favor of fuzzy_na_match.", + DeprecationWarning, + ) return llm_ua_match(pred, ref, intent) @beartype def cache_pred( - self, + self, last_action: Action, - config_file: Path | str + config_file: Path | str, + metadata: dict[str, Any] ) -> None: if not self.log_file: return d = { - 'trajectory': [{ - 'raw_prediction': last_action["raw_prediction"], - 'answer': last_action["answer"] - }], - 'config_file': os.path.basename(config_file), - 'page': None - } + "trajectory": [ + { + "raw_prediction": last_action["raw_prediction"], + "answer": last_action["answer"], + } + ], + "config_file": os.path.basename(config_file), + "metadata": metadata, + "page": None + } with open(self.log_file, "a") as f: f.write(json.dumps(d) + "\n") @@ -235,16 +295,19 @@ def __call__( self, trajectory: Trajectory, config_file: Path | str, - page: Page | PseudoPage | None = None + page: Page | PseudoPage | None = None, ) -> float: with open(config_file, "r") as f: configs = json.load(f) last_action = self.get_last_action(trajectory) pred = self.clean_answer(last_action["answer"]) - self.cache_pred(last_action, config_file) score = 1.0 + metadata = { + 'intent': configs['intent'], + 'string_eval': [] + } for approach, value in configs["eval"]["reference_answers"].items(): match approach: case "exact_match": @@ -260,9 +323,7 @@ def __call__( value_or = v.split(" |OR| ") score *= any( [ - NumericEvaluator.compare_inequality( - pred, value - ) + NumericEvaluator.compare_inequality(pred, value) for value in value_or ] ) @@ -270,17 +331,18 @@ def __call__( assert isinstance(value, list) for must_value in value: value_or = must_value.split(" |OR| ") - score *= any([self.must_include( - ref=v, - pred=pred, - tokenize=(len(value) == 1) - ) for v in value_or]) + score *= any( + [ + self.must_include( + ref=v, pred=pred, tokenize=(len(value) == 1) + ) + for v in value_or + ] + ) case "must_exclude": assert isinstance(value, list) for must_excl_value in value: - score *= self.must_exclude( - ref=must_excl_value, pred=pred - ) + score *= self.must_exclude(ref=must_excl_value, pred=pred) case "one_of": assert isinstance(value, list) found = False @@ -290,26 +352,96 @@ def __call__( found = True break score = score * found + case "fuzzy_exact_match": + judgement, cur_score = self.fuzzy_exact_match( + ref=value, pred=pred, intent=configs["intent"] + ) + score *= cur_score + metadata['string_eval'].append({ + 'approach': approach, + 'reference': value, + 'llm_judgement': judgement, + 'score': cur_score + }) + case "fuzzy_must_include": + assert isinstance(value, list) + for must_value in value: + assert "|OR|" not in must_value + judgement, cur_score = self.fuzzy_must_include( + ref=must_value, pred=pred, intent=configs["intent"] + ) + score *= cur_score + metadata['string_eval'].append({ + 'approach': approach, + 'reference': must_value, + 'llm_judgement': judgement, + 'score': cur_score + }) + case "qa": + assert isinstance(value, list) + for qa in value: + question = qa["question"] + answer = qa["answer"] + judgement, cur_score = self.question_answering( + question=question, + answer=answer, + passage=pred, + ) + score *= cur_score + metadata['string_eval'].append({ + 'approach': approach, + 'question': question, + 'answer': answer, + 'llm_judgement': judgement, + 'score': cur_score + }) + case "context_qa": + assert isinstance(value, list) + for qa in value: + question = qa["question"] + answer = qa["answer"] + judgement, cur_score = self.context_aware_question_answering( + question=question, + answer=answer, + passage=pred, + intent=configs["intent"], + ) + score *= cur_score + metadata['string_eval'].append({ + 'approach': approach, + 'question': question, + 'answer': answer, + 'llm_judgement': judgement, + 'score': cur_score + }) + case "fuzzy_na_match": + response, score = 1.0 * self.fuzzy_na_match( + intent=configs["intent"], reference=value, pred=pred + ) + metadata['string_eval'].append({ + 'approach': approach, + 'intent': configs["intent"], + 'reference': value, + 'llm_judgement': response, + 'score': score + }) case "fuzzy_match": intent = configs["intent"] + # evaluate if the reason matches with the annotation if value == "N/A": - # if the instruction only asks the model to generate N/A when encountering an unachievable task - # without more concrete reasons - score *= self.exact_match(ref=value, pred=pred) - # if the instruction also asks the model to generate the reason why the task is unachievable - # this should be the default as it will prevent false positive N/A` - if score != 1: - score = 1.0 * self.ua_match( - intent=configs["intent"], - ref=configs["eval"]["string_note"], - pred=pred, - ) + score = 1.0 * self.ua_match( + intent=configs["intent"], + ref=configs["eval"]["string_note"], + pred=pred, + ) else: assert isinstance(value, list) for reference in value: score *= self.fuzzy_match( ref=reference, pred=pred, intent=intent ) + metadata['final_score'] = score + self.cache_pred(last_action, config_file, metadata) return score @@ -322,21 +454,16 @@ def cache_pred(self, url: str, config_file: Path | str) -> None: return d = { - 'trajectory': [], - 'config_file': os.path.basename(config_file), - 'page': { - 'url': url - } - } + "trajectory": [], + "config_file": os.path.basename(config_file), + "page": {"url": url}, + } with open(self.log_file, "a") as f: f.write(json.dumps(d) + "\n") - + def __call__( - self, - trajectory: Trajectory, - config_file: Path | str, - page: Page | PseudoPage + self, trajectory: Trajectory, config_file: Path | str, page: Page | PseudoPage ) -> float: with open(config_file, "r") as f: configs = json.load(f) @@ -373,15 +500,19 @@ def clean_url(url: str) -> str: class HTMLContentExactEvaluator(Evaluator): """Check whether the contents appear in the page""" - def cache_pred(self, selected_element_cache: list[str], config_file: Path | str) -> None: + def cache_pred( + self, + selected_element_cache: list[str], + config_file: Path | str, + metadata: dict[str, Any] + ) -> None: if not self.log_file: return d = { - 'trajectory': [], - 'config_file': os.path.basename(config_file), - 'page': { - 'selected_element_cache': selected_element_cache - } + "trajectory": [], + "config_file": os.path.basename(config_file), + "page": {"selected_element_cache": selected_element_cache}, + "metadata": metadata } with open(self.log_file, "a") as f: @@ -398,14 +529,15 @@ def __call__( targets = configs["eval"]["program_html"] - cache_flag = getattr(page, "selected_element_cache", None) - selected_element_cache = page.selected_element_cache if cache_flag else [] + is_cache = getattr(page, "selected_element_cache", None) # check if the cache exists + selected_element_cache = page.selected_element_cache if is_cache else [] score = 1.0 + metadata = {'intent': configs['intent'], 'html_eval': []} for t_idx, target in enumerate(targets): # get element to compare with the current target # for cache scenario, we directly get the selected element - if cache_flag: + if is_cache: selected_element = selected_element_cache[t_idx] # regular online scenario else: @@ -419,7 +551,9 @@ def __call__( # navigate to that url if target_url != "last": page.goto(target_url) - page.wait_for_timeout(3000) # TODO [shuyanzh]: fix this hard-coded sleep + page.wait_for_timeout( + 3000 + ) # TODO [shuyanzh]: fix this hard-coded sleep # empty, use the full page if not locator.strip(): @@ -462,7 +596,7 @@ def __call__( selected_element_cache.append(selected_element) # If the selected element is None, then the page is wrong - if selected_element is None: + if selected_element is None or selected_element == "": score = 0.0 break @@ -472,7 +606,7 @@ def __call__( score *= StringEvaluator.exact_match( ref=required_contents, pred=selected_element ) - elif "must_include" in target["required_contents"]: + if "must_include" in target["required_contents"]: required_contents = target["required_contents"]["must_include"] assert isinstance(required_contents, list) for content in required_contents: @@ -480,14 +614,12 @@ def __call__( score *= any( [ StringEvaluator.must_include( - ref=content, - pred=selected_element, - tokenize=False + ref=content, pred=selected_element, tokenize=False ) for content in content_or ] ) - elif "must_exclude" in target["required_contents"]: + if "must_exclude" in target["required_contents"]: required_contents = target["required_contents"]["must_exclude"] assert isinstance(required_contents, list) for content in required_contents: @@ -495,15 +627,11 @@ def __call__( score *= StringEvaluator.must_exclude( content, pred=selected_element ) - elif "required_values" in target["required_contents"]: - required_values = target["required_contents"][ - "required_values" - ] + if "required_values" in target["required_contents"]: + required_values = target["required_contents"]["required_values"] assert isinstance(required_values, list) if isinstance(selected_element, str): - selected_element = NumericEvaluator.str_2_int( - selected_element - ) + selected_element = NumericEvaluator.str_2_int(selected_element) if selected_element is None: score = 0.0 else: @@ -517,7 +645,26 @@ def __call__( for value in value_or ] ) - elif "fuzzy_match" in target["required_contents"]: + if "qa" in target["required_contents"]: + qas = target["required_contents"]["qa"] + assert isinstance(qas, list) + for qa in qas: + question, answer = qa["question"], qa["answer"] + response, cur_score = StringEvaluator.question_answering( + question=question, + answer=answer, + passage=selected_element, + ) + score *= cur_score + metadata['html_eval'].append({ + 'index': t_idx, + 'approach': 'qa', + 'question': question, + 'answer': answer, + 'llm_judgement': response, + 'score': cur_score + }) + if "fuzzy_match" in target["required_contents"]: targets = target["required_contents"]["fuzzy_match"] assert isinstance(targets, str) targets = targets.split(" |OR| ") @@ -531,12 +678,8 @@ def __call__( ) ] ) - else: - raise ValueError( - f"Unknown required_contents: {target['required_contents'].keys()}" - ) - self.cache_pred(selected_element_cache, config_file) + self.cache_pred(selected_element_cache, config_file, metadata) return score @@ -552,9 +695,7 @@ def __init__(self, captioning_fn, eval_tag: str = "", log_file: str = ""): self.ssim_threshold = 0.8 def cache_pred( - self, - image_cache: list[list[Image.Image]], - config_file: Path | str + self, image_cache: list[list[Image.Image]], config_file: Path | str ) -> None: if not self.log_file: return @@ -567,16 +708,16 @@ def cache_pred( for image in images: buffer = BytesIO() image.save(buffer, format=image.format or "JPEG") - cur_image_strs.append(base64.b64encode(buffer.getvalue()).decode("utf-8")) + cur_image_strs.append( + base64.b64encode(buffer.getvalue()).decode("utf-8") + ) image_strs.append(cur_image_strs) d = { - 'trajectory': [], - 'config_file': os.path.basename(config_file), - 'page': { - 'image_str_cache': image_strs - } - } + "trajectory": [], + "config_file": os.path.basename(config_file), + "page": {"image_str_cache": image_strs}, + } with open(self.log_file, "a") as f: f.write(json.dumps(d) + "\n") @@ -585,18 +726,18 @@ def __call__( self, trajectory: Trajectory, config_file: Path | str, - page: Page | PseudoPage | None = None + page: Page | PseudoPage | None = None, ) -> float: with open(config_file, "r") as f: configs = json.load(f) - cache_flag = getattr(page, "image_cache", None) - image_cache = page.image_cache if cache_flag else [] + is_cache = getattr(page, "image_cache", None) + image_cache = page.image_cache if is_cache else [] score = 1.0 for q_idx, query in enumerate(configs["eval"]["page_image_query"]): # load the image from the cache - if cache_flag: + if is_cache: all_image_pixels = image_cache[q_idx] # regular online scenario else: @@ -610,7 +751,9 @@ def __call__( # navigate to that url if target_url != "last": page.goto(target_url) - page.wait_for_timeout(3000) # TODO(jykoh): fix this hard-coded sleep + page.wait_for_timeout( + 3000 + ) # TODO(jykoh): fix this hard-coded sleep # empty, use the full page if not locator.strip(): @@ -640,13 +783,9 @@ def __call__( try: # Get image from URL. image_url = image.get_attribute("src") - if not image_url.startswith( - ("http://", "https://", "www.") - ): + if not image_url.startswith(("http://", "https://", "www.")): image_url = urljoin(page.url, image_url) - image = Image.open( - requests.get(image_url, stream=True).raw - ) + image = Image.open(requests.get(image_url, stream=True).raw) all_image_pixels.append(image) except Exception as e: print("[WARNING]: ", e) @@ -669,18 +808,12 @@ def __call__( all_image_pixels, [prompt] * len(all_image_pixels) ) score *= float( - any( - [answer.lower() in ans.lower() for ans in pred_ans] - ) + any([answer.lower() in ans.lower() for ans in pred_ans]) ) if "eval_fuzzy_image_match" in query: - ssim_threshold = query.get( - "ssim_threshold", self.ssim_threshold - ) - exact_match_imgs = query["eval_fuzzy_image_match"].split( - " |OR| " - ) + ssim_threshold = query.get("ssim_threshold", self.ssim_threshold) + exact_match_imgs = query["eval_fuzzy_image_match"].split(" |OR| ") all_exact_match_pixels = [] for exact_match_img in exact_match_imgs: @@ -713,10 +846,7 @@ def __init__(self, evaluators: list[Evaluator]) -> None: self.evaluators = evaluators def __call__( - self, - trajectory: Trajectory, - config_file: Path | str, - page: Page | PseudoPage + self, trajectory: Trajectory, config_file: Path | str, page: Page | PseudoPage ) -> float: score = 1.0 @@ -729,9 +859,7 @@ def __call__( @beartype def evaluator_router( - config_file: Path | str, - captioning_fn=None, - log_file: str = "" + config_file: Path | str, captioning_fn=None, log_file: str = "" ) -> EvaluatorComb: """Router to get the evaluator class""" with open(config_file, "r") as f: diff --git a/evaluation_harness/helper_functions.py b/evaluation_harness/helper_functions.py index 9ad3b86..c0a2803 100644 --- a/evaluation_harness/helper_functions.py +++ b/evaluation_harness/helper_functions.py @@ -1,4 +1,5 @@ """Implements helper functions to assist evaluation cases where other evaluators are not suitable.""" + import base64 from io import BytesIO import json @@ -10,14 +11,13 @@ from beartype import beartype from beartype.typing import Dict, List from playwright.sync_api import Page -from evaluation_harness.env_config import ( - ACCOUNTS, - SHOPPING -) +from evaluation_harness.env_config import ACCOUNTS, SHOPPING from llms.providers.openai_utils import ( generate_from_openai_chat_completion, ) +GPT_MODEL = "gpt-4-1106-preview" + class PseudoPage: def __init__(self, original_page: Page | None, url: str): @@ -31,7 +31,9 @@ def from_dict(self, data: dict[str, Any]): for cur_image_str in value: cur_image_cache = [] for image_str in cur_image_str: - cur_image_cache.append(Image.open(BytesIO(base64.b64decode(image_str)))) + cur_image_cache.append( + Image.open(BytesIO(base64.b64decode(image_str))) + ) image_cache.append(cur_image_cache) setattr(self, "image_cache", image_cache) else: @@ -79,9 +81,7 @@ def shopping_get_latest_order_url() -> str: "searchCriteria[pageSize]": "1", } - response = requests.get( - f"{SHOPPING}/rest/V1/orders", params=params, headers=header - ) + response = requests.get(f"{SHOPPING}/rest/V1/orders", params=params, headers=header) assert response.status_code == 200 response_obj = response.json()["items"][0] order_id = int(response_obj["increment_id"]) @@ -169,9 +169,7 @@ def shopping_get_sku_product_page_url(sku: str) -> str: "Authorization": f"Bearer {shopping_get_auth_token()}", "Content-Type": "application/json", } - response = requests.get( - f"{SHOPPING}/rest/V1/products/{sku}", headers=header - ) + response = requests.get(f"{SHOPPING}/rest/V1/products/{sku}", headers=header) assert response.status_code == 200 response_obj = response.json() if len(response_obj) == 0: @@ -260,9 +258,7 @@ def shopping_get_order_product_name_list(page: Page | PseudoPage) -> str: @beartype -def shopping_get_order_product_quantity( - page: Page | PseudoPage, sku: str -) -> int: +def shopping_get_order_product_quantity(page: Page | PseudoPage, sku: str) -> int: try: if "|OR|" in sku: skus = sku.split(" |OR| ") @@ -295,9 +291,7 @@ def shopping_get_order_product_option( @beartype -def shopping_get_product_attributes( - page: Page | PseudoPage, attribute: str -) -> str: +def shopping_get_product_attributes(page: Page | PseudoPage, attribute: str) -> str: # Get the values of all cells in the table for the given attribute try: result = page.evaluate( @@ -558,9 +552,7 @@ def reddit_get_parent_comment_username_of_latest_comment_by_username( @beartype -def gitlab_get_project_memeber_role( - page: Page | PseudoPage, account_name: str -) -> str: +def gitlab_get_project_memeber_role(page: Page | PseudoPage, account_name: str) -> str: # get the account index try: account_idx = page.evaluate( @@ -608,10 +600,10 @@ def llm_fuzzy_match(pred: str, reference: str, question: str) -> float: ] response = generate_from_openai_chat_completion( - model="gpt-4-1106-preview", + model=GPT_MODEL, messages=messages, temperature=0, - max_tokens=768, + max_tokens=512, top_p=1.0, context_length=0, ).lower() @@ -643,7 +635,7 @@ def llm_ua_match(pred: str, reference: str, question: str) -> float: ] response = generate_from_openai_chat_completion( - model="gpt-4-1106-preview", + model=GPT_MODEL, messages=messages, temperature=0, max_tokens=768, @@ -655,3 +647,188 @@ def llm_ua_match(pred: str, reference: str, question: str) -> float: else: assert "same" in response return 1.0 + + +def llm_fuzzy_exact_match(pred: str, reference: str, task: str) -> tuple[str, float]: + user_message = f"""Determine if the prediction is correct by comparing it with the reference answer. +- The reference answer presents the correct answer in its minimal form. +- When the reference answer is about time duration, distance, or quantity, the prediction can be in a different format, but the information should be equivalent. + +Task: {task} +Reference answer: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude with the score using the format: "Answer: Correct"/"Answer: Incorrect" +""".strip() + + messages: list[dict[str, Any]] = [] + messages = [ + {"role": "system", "content": "You are a helpful assistant"}, + {"role": "user", "content": user_message.strip()}, + ] + + response = generate_from_openai_chat_completion( + model=GPT_MODEL, + messages=messages, + temperature=0, + max_tokens=256, + top_p=1.0, + context_length=0, + ).lower() + + if "answer: correct" in response: + return response, 1.0 + else: + assert "answer: incorrect" in response, response + return response, 0.0 + + +def llm_fuzzy_must_include(pred: str, reference: str, task: str) -> tuple[str, float]: + user_message = f"""Determine if the prediction contains the required information. +- The prediction is considered as containing the required information if it can entail the required information. +- The prediction can contain additional information. +- When the information is about time duration, distance, or quantity, the prediction can be in a different format, but the information should be equivalent. + +Task: {task} +Required information: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude with the score using the format: "Answer: Contain"/"Answer: Not contain" +""".strip() + + messages: list[dict[str, Any]] = [] + messages = [ + {"role": "system", "content": "You are a helpful assistant"}, + {"role": "user", "content": user_message.strip()}, + ] + + response = generate_from_openai_chat_completion( + model=GPT_MODEL, + messages=messages, + temperature=0, + max_tokens=256, + top_p=1.0, + context_length=0, + ).lower() + + if "answer: contain" in response: + return response, 1.0 + else: + assert "answer: not contain" in response, response + return response, 0.0 + + +def llm_fuzzy_na_match(pred: str, reference: str, task: str) -> tuple[str, float]: + user_message = f"""Determine if the predicted reason given for why the task cannot be completed is correct. +- The prediction is only considered as correct if the reference and the prediction can entail each other. +- Make sure you understand the task and the reason presented in the reference. Do not be loose with the interpretation. + +Task: {task} +Reference: {reference} +Prediction: {pred} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Correct"/"Answer: Incorrect". +""".strip() + + messages: list[dict[str, Any]] = [] + messages = [ + {"role": "system", "content": "You are a helpful assistant"}, + {"role": "user", "content": user_message.strip()}, + ] + + response = generate_from_openai_chat_completion( + model=GPT_MODEL, + messages=messages, + temperature=0, + max_tokens=256, + top_p=1.0, + context_length=0, + ).lower() + + if "answer: correct" in response: + return response, 1.0 + else: + assert "answer: incorrect" in response, response + return response, 0.0 + + +@beartype +def llm_question_answering( + question: str, answer: str, passage: str +) -> tuple[str, float]: + user_message = f"""Provide a binary answer to the question given the passage. +- Carefully read the passage, +- Make sure you understand the question and do not be loose with the interpretation. + +Passage: {passage} +Question: {question} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Yes"/"Answer: No". +""".strip() + + messages: list[dict[str, Any]] = [] + messages = [ + {"role": "system", "content": "You are a helpful assistant"}, + {"role": "user", "content": user_message.strip()}, + ] + + response = generate_from_openai_chat_completion( + model=GPT_MODEL, + messages=messages, + temperature=0, + max_tokens=256, + top_p=1.0, + context_length=0, + ).lower() + + if f"answer: {answer.lower()}" in response: + return response, 1.0 + else: + return response, 0.0 + + +@beartype +def llm_context_aware_question_answering( + question: str, answer: str, passage: str, context: str +) -> tuple[str, float]: + user_message = f"""Provide a binary answer to the question given the passage. +- `Task` indicates the context in which the passage is presented. +- Carefully read the passage. +- Make sure you understand the question and do not be loose with the interpretation. + +Task: {context} +Passage: {passage} +Question: {question} + +After the examination (do not repeat the sentences below): +- Briefly justify your answer. +- Conclude using the format: "Answer: Yes"/"Answer: No". +""".strip() + + messages: list[dict[str, Any]] = [] + messages = [ + {"role": "system", "content": "You are a helpful assistant"}, + {"role": "user", "content": user_message.strip()}, + ] + + response = generate_from_openai_chat_completion( + model=GPT_MODEL, + messages=messages, + temperature=0, + max_tokens=256, + top_p=1.0, + context_length=0, + ).lower() + + if f"answer: {answer.lower()}" in response: + return response, 1.0 + else: + return response, 0.0 diff --git a/scripts/generate_test_data.py b/scripts/generate_test_data.py index 9abeadf..1c75908 100644 --- a/scripts/generate_test_data.py +++ b/scripts/generate_test_data.py @@ -8,7 +8,9 @@ def main() -> None: DATASET = os.environ["DATASET"] + if DATASET == "webarena": + WEBAREANA_VERSION = os.getenv("WEBARENA_VERSION", "v1") print("DATASET: webarena") print(f"REDDIT: {REDDIT}") print(f"SHOPPING: {SHOPPING}") @@ -16,8 +18,14 @@ def main() -> None: print(f"GITLAB: {GITLAB}") print(f"WIKIPEDIA: {WIKIPEDIA}") print(f"MAP: {MAP}") - - inp_paths = ["config_files/wa/test_webarena.raw.json"] + print(f"WEBAREANA_VERSION: {WEBAREANA_VERSION}") + + if WEBAREANA_VERSION == "v1": + inp_paths = ["config_files/wa/test_webarena.raw.json"] + elif WEBAREANA_VERSION == "v2": + inp_paths = ["config_files/wa/test_webarena_v2.raw.json"] + else: + raise ValueError(f"Unknow WebArena version: {WEBAREANA_VERSION}") replace_map = { "__REDDIT__": REDDIT, "__SHOPPING__": SHOPPING, diff --git a/scripts/openai_request_parallel.py b/scripts/openai_request_parallel.py new file mode 100644 index 0000000..05076b1 --- /dev/null +++ b/scripts/openai_request_parallel.py @@ -0,0 +1,508 @@ +""" +API REQUEST PARALLEL PROCESSOR + +Using the OpenAI API to process lots of text quickly takes some care. +If you trickle in a million API requests one by one, they'll take days to complete. +If you flood a million API requests in parallel, they'll exceed the rate limits and fail with errors. +To maximize throughput, parallel requests need to be throttled to stay under rate limits. + +This script parallelizes requests to the OpenAI API while throttling to stay under rate limits. + +Features: +- Streams requests from file, to avoid running out of memory for giant jobs +- Makes requests concurrently, to maximize throughput +- Throttles request and token usage, to stay under rate limits +- Retries failed requests up to {max_attempts} times, to avoid missing data +- Logs errors, to diagnose problems with requests + +Example command to call script: +``` +python examples/api_request_parallel_processor.py \ + --requests_filepath examples/data/example_requests_to_parallel_process.jsonl \ + --save_filepath examples/data/example_requests_to_parallel_process_results.jsonl \ + --request_url https://api.openai.com/v1/embeddings \ + --max_requests_per_minute 1500 \ + --max_tokens_per_minute 6250000 \ + --token_encoding_name cl100k_base \ + --max_attempts 5 \ + --logging_level 20 +``` + +Inputs: +- requests_filepath : str + - path to the file containing the requests to be processed + - file should be a jsonl file, where each line is a json object with API parameters and an optional metadata field + - e.g., {"model": "text-embedding-ada-002", "input": "embed me", "metadata": {"row_id": 1}} + - as with all jsonl files, take care that newlines in the content are properly escaped (json.dumps does this automatically) + - an example file is provided at examples/data/example_requests_to_parallel_process.jsonl + - the code to generate the example file is appended to the bottom of this script +- save_filepath : str, optional + - path to the file where the results will be saved + - file will be a jsonl file, where each line is an array with the original request plus the API response + - e.g., [{"model": "text-embedding-ada-002", "input": "embed me"}, {...}] + - if omitted, results will be saved to {requests_filename}_results.jsonl +- request_url : str, optional + - URL of the API endpoint to call + - if omitted, will default to "https://api.openai.com/v1/embeddings" +- api_key : str, optional + - API key to use + - if omitted, the script will attempt to read it from an environment variable {os.getenv("OPENAI_API_KEY")} +- max_requests_per_minute : float, optional + - target number of requests to make per minute (will make less if limited by tokens) + - leave headroom by setting this to 50% or 75% of your limit + - if requests are limiting you, try batching multiple embeddings or completions into one request + - if omitted, will default to 1,500 +- max_tokens_per_minute : float, optional + - target number of tokens to use per minute (will use less if limited by requests) + - leave headroom by setting this to 50% or 75% of your limit + - if omitted, will default to 125,000 +- token_encoding_name : str, optional + - name of the token encoding used, as defined in the `tiktoken` package + - if omitted, will default to "cl100k_base" (used by `text-embedding-ada-002`) +- max_attempts : int, optional + - number of times to retry a failed request before giving up + - if omitted, will default to 5 +- logging_level : int, optional + - level of logging to use; higher numbers will log fewer messages + - 40 = ERROR; will log only when requests fail after all retries + - 30 = WARNING; will log when requests his rate limits or other errors + - 20 = INFO; will log when requests start and the status at finish + - 10 = DEBUG; will log various things as the loop runs to see when they occur + - if omitted, will default to 20 (INFO). + +The script is structured as follows: + - Imports + - Define main() + - Initialize things + - In main loop: + - Get next request if one is not already waiting for capacity + - Update available token & request capacity + - If enough capacity available, call API + - The loop pauses if a rate limit error is hit + - The loop breaks when no tasks remain + - Define dataclasses + - StatusTracker (stores script metadata counters; only one instance is created) + - APIRequest (stores API inputs, outputs, metadata; one method to call API) + - Define functions + - api_endpoint_from_url (extracts API endpoint from request URL) + - append_to_jsonl (writes to results file) + - num_tokens_consumed_from_request (bigger function to infer token usage from request) + - task_id_generator_function (yields 1, 2, 3, ...) + - Run main() +""" + +import argparse # for running script from command line +import asyncio # for running API calls concurrently +import json # for saving results to a jsonl file +import logging # for logging rate limit warnings and other messages +import os # for reading API key +import re # for matching endpoint from request URL +import time # for sleeping after rate limit is hit +from dataclasses import ( # for storing API inputs, outputs, and metadata + dataclass, + field, +) + +# imports +import aiohttp # for making API calls concurrently +import tiktoken # for counting tokens + + +async def process_api_requests_from_file( + requests_filepath: str, + save_filepath: str, + request_url: str, + api_key: str, + max_requests_per_minute: float, + max_tokens_per_minute: float, + token_encoding_name: str, + max_attempts: int, + logging_level: int, +): + """Processes API requests in parallel, throttling to stay under rate limits.""" + # constants + seconds_to_pause_after_rate_limit_error = 15 + seconds_to_sleep_each_loop = ( + 0.001 # 1 ms limits max throughput to 1,000 requests per second + ) + + # initialize logging + logging.basicConfig(level=logging_level) + logging.debug(f"Logging initialized at level {logging_level}") + + # infer API endpoint and construct request header + api_endpoint = api_endpoint_from_url(request_url) + request_header = {"Authorization": f"Bearer {api_key}"} + # use api-key header for Azure deployments + if "/deployments" in request_url: + request_header = {"api-key": f"{api_key}"} + + # initialize trackers + queue_of_requests_to_retry = asyncio.Queue() + task_id_generator = ( + task_id_generator_function() + ) # generates integer IDs of 1, 2, 3, ... + status_tracker = ( + StatusTracker() + ) # single instance to track a collection of variables + next_request = None # variable to hold the next request to call + + # initialize available capacity counts + available_request_capacity = max_requests_per_minute + available_token_capacity = max_tokens_per_minute + last_update_time = time.time() + + # initialize flags + file_not_finished = True # after file is empty, we'll skip reading it + logging.debug(f"Initialization complete.") + + # initialize file reading + with open(requests_filepath) as file: + # `requests` will provide requests one at a time + requests = file.__iter__() + logging.debug(f"File opened. Entering main loop") + async with aiohttp.ClientSession() as session: # Initialize ClientSession here + while True: + # get next request (if one is not already waiting for capacity) + if next_request is None: + if not queue_of_requests_to_retry.empty(): + next_request = queue_of_requests_to_retry.get_nowait() + logging.debug( + f"Retrying request {next_request.task_id}: {next_request}" + ) + elif file_not_finished: + try: + # get new request + request_json = json.loads(next(requests)) + next_request = APIRequest( + task_id=next(task_id_generator), + request_json=request_json, + token_consumption=num_tokens_consumed_from_request( + request_json, + api_endpoint, + token_encoding_name, + ), + attempts_left=max_attempts, + metadata=request_json.pop("metadata", None), + ) + status_tracker.num_tasks_started += 1 + status_tracker.num_tasks_in_progress += 1 + logging.debug( + f"Reading request {next_request.task_id}: {next_request}" + ) + except StopIteration: + # if file runs out, set flag to stop reading it + logging.debug("Read file exhausted") + file_not_finished = False + + # update available capacity + current_time = time.time() + seconds_since_update = current_time - last_update_time + available_request_capacity = min( + available_request_capacity + + max_requests_per_minute * seconds_since_update / 60.0, + max_requests_per_minute, + ) + available_token_capacity = min( + available_token_capacity + + max_tokens_per_minute * seconds_since_update / 60.0, + max_tokens_per_minute, + ) + last_update_time = current_time + + # if enough capacity available, call API + if next_request: + next_request_tokens = next_request.token_consumption + if ( + available_request_capacity >= 1 + and available_token_capacity >= next_request_tokens + ): + # update counters + available_request_capacity -= 1 + available_token_capacity -= next_request_tokens + next_request.attempts_left -= 1 + + # call API + asyncio.create_task( + next_request.call_api( + session=session, + request_url=request_url, + request_header=request_header, + retry_queue=queue_of_requests_to_retry, + save_filepath=save_filepath, + status_tracker=status_tracker, + ) + ) + next_request = None # reset next_request to empty + + # if all tasks are finished, break + if status_tracker.num_tasks_in_progress == 0: + break + + # main loop sleeps briefly so concurrent tasks can run + await asyncio.sleep(seconds_to_sleep_each_loop) + + # if a rate limit error was hit recently, pause to cool down + seconds_since_rate_limit_error = ( + time.time() - status_tracker.time_of_last_rate_limit_error + ) + if ( + seconds_since_rate_limit_error + < seconds_to_pause_after_rate_limit_error + ): + remaining_seconds_to_pause = ( + seconds_to_pause_after_rate_limit_error + - seconds_since_rate_limit_error + ) + await asyncio.sleep(remaining_seconds_to_pause) + # ^e.g., if pause is 15 seconds and final limit was hit 5 seconds ago + logging.warn( + f"Pausing to cool down until {time.ctime(status_tracker.time_of_last_rate_limit_error + seconds_to_pause_after_rate_limit_error)}" + ) + + # after finishing, log final status + logging.info( + f"""Parallel processing complete. Results saved to {save_filepath}""" + ) + if status_tracker.num_tasks_failed > 0: + logging.warning( + f"{status_tracker.num_tasks_failed} / {status_tracker.num_tasks_started} requests failed. Errors logged to {save_filepath}." + ) + if status_tracker.num_rate_limit_errors > 0: + logging.warning( + f"{status_tracker.num_rate_limit_errors} rate limit errors received. Consider running at a lower rate." + ) + + +# dataclasses + + +@dataclass +class StatusTracker: + """Stores metadata about the script's progress. Only one instance is created.""" + + num_tasks_started: int = 0 + num_tasks_in_progress: int = 0 # script ends when this reaches 0 + num_tasks_succeeded: int = 0 + num_tasks_failed: int = 0 + num_rate_limit_errors: int = 0 + num_api_errors: int = 0 # excluding rate limit errors, counted above + num_other_errors: int = 0 + time_of_last_rate_limit_error: int = ( + 0 # used to cool off after hitting rate limits + ) + + +@dataclass +class APIRequest: + """Stores an API request's inputs, outputs, and other metadata. Contains a method to make an API call.""" + + task_id: int + request_json: dict + token_consumption: int + attempts_left: int + metadata: dict + result: list = field(default_factory=list) + + async def call_api( + self, + session: aiohttp.ClientSession, + request_url: str, + request_header: dict, + retry_queue: asyncio.Queue, + save_filepath: str, + status_tracker: StatusTracker, + ): + """Calls the OpenAI API and saves results.""" + logging.info(f"Starting request #{self.task_id}") + error = None + try: + async with session.post( + url=request_url, headers=request_header, json=self.request_json + ) as response: + response = await response.json() + if "error" in response: + logging.warning( + f"Request {self.task_id} failed with error {response['error']}" + ) + status_tracker.num_api_errors += 1 + error = response + if "Rate limit" in response["error"].get("message", ""): + status_tracker.time_of_last_rate_limit_error = time.time() + status_tracker.num_rate_limit_errors += 1 + status_tracker.num_api_errors -= ( + 1 # rate limit errors are counted separately + ) + + except ( + Exception + ) as e: # catching naked exceptions is bad practice, but in this case we'll log & save them + logging.warning( + f"Request {self.task_id} failed with Exception {e}" + ) + status_tracker.num_other_errors += 1 + error = e + if error: + self.result.append(error) + if self.attempts_left: + retry_queue.put_nowait(self) + else: + logging.error( + f"Request {self.request_json} failed after all attempts. Saving errors: {self.result}" + ) + data = ( + [ + self.request_json, + [str(e) for e in self.result], + self.metadata, + ] + if self.metadata + else [self.request_json, [str(e) for e in self.result]] + ) + append_to_jsonl(data, save_filepath) + status_tracker.num_tasks_in_progress -= 1 + status_tracker.num_tasks_failed += 1 + else: + data = ( + [self.request_json, response, self.metadata] + if self.metadata + else [self.request_json, response] + ) + append_to_jsonl(data, save_filepath) + status_tracker.num_tasks_in_progress -= 1 + status_tracker.num_tasks_succeeded += 1 + logging.debug(f"Request {self.task_id} saved to {save_filepath}") + + +# functions + + +def api_endpoint_from_url(request_url): + """Extract the API endpoint from the request URL.""" + match = re.search("^https://[^/]+/v\\d+/(.+)$", request_url) + if match is None: + # for Azure OpenAI deployment urls + match = re.search( + r"^https://[^/]+/openai/deployments/[^/]+/(.+?)(\?|$)", request_url + ) + return match[1] + + +def append_to_jsonl(data, filename: str) -> None: + """Append a json payload to the end of a jsonl file.""" + json_string = json.dumps(data) + with open(filename, "a") as f: + f.write(json_string + "\n") + + +def num_tokens_consumed_from_request( + request_json: dict, + api_endpoint: str, + token_encoding_name: str, +): + """Count the number of tokens in the request. Only supports completion and embedding requests.""" + encoding = tiktoken.get_encoding(token_encoding_name) + # if completions request, tokens = prompt + n * max_tokens + if api_endpoint.endswith("completions"): + max_tokens = request_json.get("max_tokens", 15) + n = request_json.get("n", 1) + completion_tokens = n * max_tokens + + # chat completions + if api_endpoint.startswith("chat/"): + num_tokens = 0 + for message in request_json["messages"]: + num_tokens += 4 # every message follows {role/name}\n{content}\n + for key, value in message.items(): + num_tokens += len(encoding.encode(value)) + if key == "name": # if there's a name, the role is omitted + num_tokens -= ( + 1 # role is always required and always 1 token + ) + num_tokens += 2 # every reply is primed with assistant + return num_tokens + completion_tokens + # normal completions + else: + prompt = request_json["prompt"] + if isinstance(prompt, str): # single prompt + prompt_tokens = len(encoding.encode(prompt)) + num_tokens = prompt_tokens + completion_tokens + return num_tokens + elif isinstance(prompt, list): # multiple prompts + prompt_tokens = sum([len(encoding.encode(p)) for p in prompt]) + num_tokens = prompt_tokens + completion_tokens * len(prompt) + return num_tokens + else: + raise TypeError( + 'Expecting either string or list of strings for "prompt" field in completion request' + ) + # if embeddings request, tokens = input tokens + elif api_endpoint == "embeddings": + input = request_json["input"] + if isinstance(input, str): # single input + num_tokens = len(encoding.encode(input)) + return num_tokens + elif isinstance(input, list): # multiple inputs + num_tokens = sum([len(encoding.encode(i)) for i in input]) + return num_tokens + else: + raise TypeError( + 'Expecting either string or list of strings for "inputs" field in embedding request' + ) + # more logic needed to support other API calls (e.g., edits, inserts, DALL-E) + else: + raise NotImplementedError( + f'API endpoint "{api_endpoint}" not implemented in this script' + ) + + +def task_id_generator_function(): + """Generate integers 0, 1, 2, and so on.""" + task_id = 0 + while True: + yield task_id + task_id += 1 + + +# run script + + +if __name__ == "__main__": + # parse command line arguments + parser = argparse.ArgumentParser() + parser.add_argument("--requests_filepath") + parser.add_argument("--save_filepath", default=None) + parser.add_argument( + "--request_url", default="https://api.openai.com/v1/chat/completions" + ) + parser.add_argument("--api_key", default=os.getenv("OPENAI_API_KEY")) + parser.add_argument( + "--max_requests_per_minute", type=int, default=3_000 * 0.5 + ) + parser.add_argument( + "--max_tokens_per_minute", type=int, default=250_000 * 0.5 + ) + parser.add_argument("--token_encoding_name", default="cl100k_base") + parser.add_argument("--max_attempts", type=int, default=5) + parser.add_argument("--logging_level", default=logging.INFO) + args = parser.parse_args() + + if args.save_filepath is None: + args.save_filepath = args.requests_filepath.replace( + ".jsonl", "_results.jsonl" + ) + + # run script + asyncio.run( + process_api_requests_from_file( + requests_filepath=args.requests_filepath, + save_filepath=args.save_filepath, + request_url=args.request_url, + api_key=args.api_key, + max_requests_per_minute=float(args.max_requests_per_minute), + max_tokens_per_minute=float(args.max_tokens_per_minute), + token_encoding_name=args.token_encoding_name, + max_attempts=int(args.max_attempts), + logging_level=int(args.logging_level), + ) + ) diff --git a/scripts/utils.py b/scripts/utils.py new file mode 100644 index 0000000..8bf22a2 --- /dev/null +++ b/scripts/utils.py @@ -0,0 +1,49 @@ +import os +import json +def calc_openai_cost(response_file: str) -> float: + in_tok_tot = 0 + out_tok_tot = 0 + + errors = 0 + if not os.path.exists(response_file): + print(f"{response_file} does not exist") + return 0.0 + + with open(response_file, "r") as f: + model_checked = False + for l_idx, line in enumerate(f): + cur_request = json.loads(line) + if not model_checked: + model = cur_request[0]["model"] + match model: + case "gpt-3.5-turbo" | "gpt-3.5-turbo-1106": + in_cost = 0.001 + out_cost = 0.002 + case ( + "gpt-4-1106-preview" | "vijay-gpt-4" | "gpt-4-turbo-2024-04-09" + ): + in_cost = 0.01 + out_cost = 0.03 + case "gpt-4": + in_cost = 0.03 + out_cost = 0.06 + case "gpt-4o": + in_cost = 0.005 + out_cost = 0.015 + case _: + raise ValueError(f"Unknown model: {model}") + model_checked = True + try: + in_tok_tot += cur_request[1]["usage"]["prompt_tokens"] + out_tok_tot += cur_request[1]["usage"]["completion_tokens"] + except TypeError: + errors += 1 + + # calc the cost + cost = in_tok_tot / 1000 * in_cost + out_tok_tot / 1000 * out_cost + print(f"Input cost: {in_cost}, Output cost: {out_cost}") + print( + f"Input cost: {in_tok_tot / 1000 * in_cost}, Output cost: {out_tok_tot / 1000 * out_cost}" + ) + print(f"Errors: {errors}") + return cost \ No newline at end of file From 5aa35ce08b74c0eb1d15fb92bd95716b8ca89e37 Mon Sep 17 00:00:00 2001 From: alexisxy Date: Mon, 24 Jun 2024 18:23:12 -0400 Subject: [PATCH 3/6] minor --- config_files/wa/test_webarena_v2.raw.json | 63 ++++++------------- .../eval_evaluators/fuzzy_match_test.py | 23 ++++--- evaluation_harness/evaluators.py | 2 +- scripts/check_error_runs.py | 5 +- 4 files changed, 38 insertions(+), 55 deletions(-) diff --git a/config_files/wa/test_webarena_v2.raw.json b/config_files/wa/test_webarena_v2.raw.json index 13cc5a4..4bf1fdf 100644 --- a/config_files/wa/test_webarena_v2.raw.json +++ b/config_files/wa/test_webarena_v2.raw.json @@ -8684,7 +8684,7 @@ "string_match" ], "reference_answers": { - "must_include":[ + "must_include": [ "SONY WH1000XM3 Bluetooth Wireless Noise Canceling Headphones Silver WH-1000XM3/S (Renewed)", "Sony WH-CH710N/H Wireless Bluetooth Noise Cancelling Headphones", "Sony WH-1000XM3B Wireless Bluetooth Noise-Canceling Over-Ear Headphones (Black) Basic Headphone Bundle Kit with Stylus", @@ -8744,7 +8744,7 @@ "answer": "Yes" } ], - "must_include":[ + "must_include": [ "Anker USB C Charger 30W, 711 Charger, Compact Fast Charger (Not Foldable) for MacBook Air/iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy S21, Note 20, iPad Pro, Pixel, and More", "Anker USB C Charger 40W, 521 Charger (Nano Pro), PIQ 3.0 Durable Compact Fast Charger (Not Foldable) for iPhone 13/13 Mini/13 Pro/13 Pro Max/12, Galaxy, Pixel 4/3, iPad/iPad Mini (Cable Not Included)", "Anker PowerCore Speed 20000, 20000mAh Qualcomm Quick Charge 3.0 & PowerIQ Portable Charger, with Quick Charge Recharging, Power Bank for Samsung, iPhone, iPad and More, Black (A1278)", @@ -8794,7 +8794,7 @@ "answer": "Yes" } ], - "must_include":[ + "must_include": [ "Oral-B Kids Extra Soft Replacement Brush Heads featuring STAR WARS, 2 count", "Kids By Oral-b Stages Power Star Wars Replacement Heads 4 Pack" ] @@ -8834,7 +8834,7 @@ "answer": "Yes" } ], - "must_include":[ + "must_include": [ "Nike Men's Air Max Camden Slide Sandal", "Nike Men's Benassi JDI Fanny Pack Slides", "Nike Victori One Mens Comfort Slide Cn9675-003 (Midnight Navy/Midnight Navy/White, Numeric_10)", @@ -9758,12 +9758,12 @@ "storage_state": "./.auth/gitlab_state.json", "start_url": "__GITLAB__", "geolocation": null, - "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo.", "instantiation_dict": { "repo": "prime/design", "attribute": "name" }, - "intent": "List the name of the top 3 contributors to prime/design repo, ranked by the number of commits?", + "intent": "List the name of the top 3 contributors to prime/design repo.", "require_reset": false, "eval": { "eval_types": [ @@ -9782,10 +9782,6 @@ { "question": "Does the passage include the contributor whose name is Aurora Pleguezuelo?", "answer": "Yes" - }, - { - "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Shawn Allen, Inayaili Le\u00f3n, and Aurora Pleguezuelo?", - "answer": "Yes" } ] }, @@ -9805,35 +9801,22 @@ "storage_state": "./.auth/gitlab_state.json", "start_url": "__GITLAB__", "geolocation": null, - "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo.", "instantiation_dict": { "repo": "Pytorch GAN", "attribute": "email address" }, - "intent": "List the email address of the top 3 contributors to Pytorch GAN repo, ranked by the number of commits?", + "intent": "List the email address of the top 3 contributors to Pytorch GAN repo.", "require_reset": false, "eval": { "eval_types": [ "string_match" ], "reference_answers": { - "context_qa": [ - { - "question": "Does the passage include email eriklindernoren@live.se?", - "answer": "Yes" - }, - { - "question": "Does the passage include email eriklindernoren@gmail.com?", - "answer": "Yes" - }, - { - "question": "Does the passage include emaileriklindernoren@gmail.com?", - "answer": "Yes" - }, - { - "question": "Does this passage clearly state that the emails of the contributors, ordered from the most commits to the least, are eriklindernoren@live.se, eriklindernoren@gmail.com, and pinnacle.chen@qq.com??", - "answer": "Yes" - } + "must_include": [ + "eriklindernoren@live.se", + "eriklindernoren@gmail.com", + "pinnacle.chen@qq.com" ] }, "reference_url": "", @@ -9852,12 +9835,12 @@ "storage_state": "./.auth/gitlab_state.json", "start_url": "__GITLAB__", "geolocation": null, - "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo.", "instantiation_dict": { "repo": "facebook's guide on building react apps", "attribute": "name" }, - "intent": "List the name of the top 3 contributors to facebook's guide on building react apps repo, ranked by the number of commits?", + "intent": "List the name of the top 3 contributors to facebook's guide on building react apps repo.", "require_reset": false, "eval": { "eval_types": [ @@ -9876,10 +9859,6 @@ { "question": "Does the passage include the contributor whose name is Dan Abramov?", "answer": "Yes" - }, - { - "question": "Does this passage clearly state that the order of contributors, from the most commits to the least, is Ian Sutherland, Joe Hadda, and Dan Abramov?", - "answer": "Yes" } ] }, @@ -9899,12 +9878,12 @@ "storage_state": "./.auth/gitlab_state.json", "start_url": "__GITLAB__", "geolocation": null, - "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo.", "instantiation_dict": { "repo": "metaseq", "attribute": "name and number of commits" }, - "intent": "List the name and number of commits of the top 3 contributors to metaseq repo, ranked by the number of commits?", + "intent": "List the name and number of commits of the top 3 contributors to metaseq repo.", "require_reset": false, "eval": { "eval_types": [ @@ -9954,12 +9933,12 @@ "storage_state": "./.auth/gitlab_state.json", "start_url": "__GITLAB__", "geolocation": null, - "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo, ranked by the number of commits?", + "intent_template": "List the {{attribute}} of the top 3 contributors to {{repo}} repo.", "instantiation_dict": { "repo": "2019-nCov", "attribute": "last names" }, - "intent": "List the last names of the top 3 contributors to 2019-nCov repo, ranked by the number of commits?", + "intent": "List the last names of the top 3 contributors to 2019-nCov repo.", "require_reset": false, "eval": { "eval_types": [ @@ -9978,10 +9957,6 @@ { "question": "Does the passage include the contributor whose last name is Chu?", "answer": "Yes" - }, - { - "question": "Does this passage clearly state that the last name of the contributors, ordered from the most commits to the least, is Lo, Chen, and Chu?", - "answer": "Yes" } ] }, @@ -11697,7 +11672,7 @@ "string_match" ], "reference_answers": { - "fuzzy_na_match": "There is no review for this product" + "fuzzy_na_match": "Amazon Echo Dot 3rd generation does not have any reviews." }, "reference_url": "", "program_html": [], diff --git a/evaluation_harness/eval_evaluators/fuzzy_match_test.py b/evaluation_harness/eval_evaluators/fuzzy_match_test.py index 9affbe9..3ebe03d 100644 --- a/evaluation_harness/eval_evaluators/fuzzy_match_test.py +++ b/evaluation_harness/eval_evaluators/fuzzy_match_test.py @@ -210,7 +210,7 @@ def add_predictions(dataset_file: str, result_file: str, method: str, prediction json.dump(d, f, indent=2) -def test_evaluator(data_file: str, method: str) -> float: +def run_evaluator(data_file: str, method: str) -> float: with open(data_file, "r") as f: d = json.load(f)[method] requests = [] @@ -264,6 +264,9 @@ def test_evaluator(data_file: str, method: str) -> float: else: raise ValueError(f"Unknown method: {method}") + if 'metadata' in example: + extra_metadata = example['metadata'] + for message in messages: requests.append({ "model": "gpt-4o", @@ -271,7 +274,7 @@ def test_evaluator(data_file: str, method: str) -> float: "temperature": 0.0, "max_tokens": 256, "top_p": 1.0, - "metadata": {"e_id": e_id, "method": method, "label": label.lower() if isinstance(label, str) else label} + "metadata": {"e_id": e_id, "method": method, "label": label.lower() if isinstance(label, str) else label, **(extra_metadata or {})}, }) print(f"Total requests: {len(requests)}") @@ -337,17 +340,13 @@ def parse_evaluator_result(data_file, save_file: str, method: str, print_errors: e_id_to_pred[e_id] = "Error" continue if method in ["fuzzy_exact_match", "fuzzy_na_match"]: - if "answer: correct" in pred: - e_id_to_pred[e_id] = True - else: + if "answer: incorrect" in pred: e_id_to_pred[e_id] = False elif method == "fuzzy_must_include": if "answer: not contain" in pred: e_id_to_pred[e_id] = False elif method in ["context_qa", "qa"]: - if "answer: yes" in pred: - e_id_to_pred[e_id] = True - else: + if "answer: no" in pred: e_id_to_pred[e_id] = False else: raise ValueError(f"Unknown method: {method}") @@ -387,6 +386,12 @@ def parse_evaluator_result(data_file, save_file: str, method: str, print_errors: if __name__ == "__main__": + dataset_file = "tmp_best_models.json" + for method in ["fuzzy_must_include", 'fuzzy_na_match', "fuzzy_exact_match", "context_qa"][:]: + run_evaluator(dataset_file, method) + calc_openai_cost(dataset_file.replace(".json", f"_{method}_eval_results.jsonl")) + exit() + overwrite = False print_errors = True # generate data @@ -415,6 +420,6 @@ def parse_evaluator_result(data_file, save_file: str, method: str, print_errors: result_file = f"./tmp_data/fuzzy_match_dataset_{method}_results.jsonl" add_predictions(dataset_file, result_file, method, prediction_start_index=params_map[method]['prediction_start_index']) - test_evaluator(dataset_file, method) + run_evaluator(dataset_file, method) parse_evaluator_result(dataset_file, dataset_file.replace(".json", f"_{method}_eval_results.jsonl"), method, print_errors=print_errors) calc_openai_cost(dataset_file.replace(".json", f"_{method}_eval_results.jsonl")) diff --git a/evaluation_harness/evaluators.py b/evaluation_harness/evaluators.py index 6f3b541..a91822e 100644 --- a/evaluation_harness/evaluators.py +++ b/evaluation_harness/evaluators.py @@ -415,7 +415,7 @@ def __call__( 'score': cur_score }) case "fuzzy_na_match": - response, score = 1.0 * self.fuzzy_na_match( + response, score = self.fuzzy_na_match( intent=configs["intent"], reference=value, pred=pred ) metadata['string_eval'].append({ diff --git a/scripts/check_error_runs.py b/scripts/check_error_runs.py index df0c7bb..0726f80 100644 --- a/scripts/check_error_runs.py +++ b/scripts/check_error_runs.py @@ -75,7 +75,10 @@ def merge_eval_cache( id_to_cache = {} for file in log_files: - with open(file.strip().replace(".log", "_eval_cache.jsonl"), "r") as f: + eval_log_file = file.strip().replace(".log", "_eval_cache.jsonl") + if not os.path.exists(eval_log_file): + continue + with open(eval_log_file, "r") as f: for line in f: data = json.loads(line) id = data["config_file"].split(".")[0] From 66c43af9ccbdc5e05bbde46ffb181a0f8163b3a3 Mon Sep 17 00:00:00 2001 From: alexisxy Date: Sat, 7 Sep 2024 19:34:17 -0700 Subject: [PATCH 4/6] merge readme files for vwa and wa --- .gitignore | 3 +- README.md | 153 ++++++----------------- README_VWA.md | 123 ++++++++++++++++++ README_WA.md | 105 ++++++++++++++++ media/example_trace_viewer.png | Bin 0 -> 1428447 bytes media/homepage_demo.png | Bin 58357 -> 143977 bytes media/logo.png | Bin 0 -> 1287379 bytes media/v1_result.png | Bin 0 -> 38069 bytes media/v2_result.png | Bin 0 -> 154226 bytes media/{overview.png => vwa_overview.png} | Bin media/wa_overview.png | Bin 0 -> 340387 bytes 11 files changed, 265 insertions(+), 119 deletions(-) create mode 100644 README_VWA.md create mode 100644 README_WA.md create mode 100644 media/example_trace_viewer.png create mode 100644 media/logo.png create mode 100644 media/v1_result.png create mode 100644 media/v2_result.png rename media/{overview.png => vwa_overview.png} (100%) create mode 100644 media/wa_overview.png diff --git a/.gitignore b/.gitignore index 915e81b..5fac73e 100644 --- a/.gitignore +++ b/.gitignore @@ -150,4 +150,5 @@ log_files/* cache/* agents/prompts/jsons/* -local_* \ No newline at end of file +local_* +demo_trajs/* \ No newline at end of file diff --git a/README.md b/README.md index 2fee40c..1029048 100644 --- a/README.md +++ b/README.md @@ -1,29 +1,18 @@ -# VisualWebArena: Evaluating Multimodal Agents on Realistic Visual Web Tasks - - -[Website] -[Paper] - -VisualWebArena is a realistic and diverse benchmark for evaluating multimodal autonomous language agents. It comprises of a set of diverse and complex web-based visual tasks that evaluate various capabilities of autonomous multimodal agents. It builds off the reproducible, execution based evaluation introduced in WebArena. - -![Overview](media/overview.png) - -## TODOs -- [x] Add human trajectories. -- [x] Add GPT-4V + SoM trajectories from our paper. -- [x] Add scripts for end-to-end training and reset of environments. -- [x] Add demo to run multimodal agents on any arbitrary webpage. +# X-WebArena: The Unified Repository for WebArena and VisualWebArena ## News -- [03/8/2024]: Added the [agent trajectories](https://drive.google.com/file/d/1-tKz5ByWa1-jwtejiFgxli8fZcBPZgAE/view?usp=sharing) of our GPT-4V + SoM agent on the full set of 910 VWA tasks. -- [02/14/2024]: Added a [demo script](run_demo.py) for running the GPT-4V + SoM agent on any task on an arbitrary website. -- [01/25/2024]: GitHub repo released with tasks and scripts for setting up the VWA environments. +* [08/05/2024]: Added an [Amazon Machine Image](environment_docker/README.md#pre-installed-amazon-machine-image) that pre-installed all VWA (and WA) websites so that you don't have to! +* [03/08/2024]: Added the [agent trajectories](https://drive.google.com/file/d/1-tKz5ByWa1-jwtejiFgxli8fZcBPZgAE/view?usp=sharing) of our GPT-4V + SoM agent on the full set of 910 VWA tasks. +* [02/14/2024]: Added a [demo script](run_demo.py) for running the GPT-4V + SoM agent on any task on an arbitrary website. +* [01/25/2024]: GitHub repo released with tasks and scripts for setting up the VWA environments. +* [12/21/2023] We release the recording of trajectories performed by human annotators on ~170 tasks. Check out the [resource page](./resources/README.md#12212023-human-trajectories) for more details. +* [11/3/2023] Multiple features! + * Uploaded newest [execution trajectories](./resources/README.md#1132023-execution-traces-from-our-experiments-v2) + * Added [Amazon Machine Image](./environment_docker/README.md#pre-installed-amazon-machine-image) that pre-installed all websites so that you don't have to! + * [Zeno](https://zenoml.com/) x WebArena which allows you to analyze your agents on WebArena without pain. Check out this [notebook](./scripts/webarena-zeno.ipynb) to upload your own data to Zeno, and [this](https://hub.zenoml.com/project/9db3e1cf-6e28-4cfc-aeec-1670cac01872/WebArena%20Tester/explore?params=eyJtb2RlbCI6ImdwdDM1LWRpcmVjdCIsIm1ldHJpYyI6eyJpZCI6NzQ5MiwibmFtZSI6InN1Y2Nlc3MiLCJ0eXBlIjoibWVhbiIsImNvbHVtbnMiOlsic3VjY2VzcyJdfSwiY29tcGFyaXNvbk1vZGVsIjoiZ3B0NC1jb3QiLCJjb21wYXJpc29uQ29sdW1uIjp7ImlkIjoiYTVlMDFiZDUtZTg0NS00M2I4LTllNDgtYTU4NzRiNDJjNjNhIiwibmFtZSI6ImNvbnRleHQiLCJjb2x1bW5UeXBlIjoiT1VUUFVUIiwiZGF0YVR5cGUiOiJOT01JTkFMIiwibW9kZWwiOiJncHQzNS1kaXJlY3QifSwiY29tcGFyZVNvcnQiOltudWxsLHRydWVdLCJtZXRyaWNSYW5nZSI6WzAsMV0sInNlbGVjdGlvbnMiOnsibWV0YWRhdGEiOnt9LCJzbGljZXMiOltdLCJ0YWdzIjpbXX19) page for browsing our existing results! +* [10/24/2023] We re-examined the whole dataset and fixed the spotted annotation bugs. The current version ([v0.2.0](https://github.com/web-arena-x/webarena/releases/tag/v0.2.0)) is relatively stable and we don't expect major updates on the annotation in the future. The new results with better prompts and the comparison with human performance can be found in our [paper](https://arxiv.org/abs/2307.13854) +* [8/4/2023] Added the instructions and the docker resources to host your own WebArena Environment. Check out [this page](environment_docker/README.md) for details. +* [7/29/2023] Added [a well commented script](minimal_example.py) to walk through the environment setup. ## Install ```bash @@ -40,46 +29,15 @@ You can also run the unit tests to ensure that VisualWebArena is installed corre pytest -x ``` +## Setup Environment +> [!IMPORTANT] +> The demo sites are only for browsing purpose to help you better understand how the websites look like. To ensure the correct evaluation, please setup your own websites. +Since WebArena and VisualWebArena uses a different set of websites, the concrete commands are slightly different. +- [WebArena environment setup](README_WA.md#webarena-environment-setup) +- [VisualWebArena environment setup](README_VWA.md#visualwebarena-environment-setup) -## End-to-end Evaluation -1. Setup the standalone environments. -Please check out [this page](environment_docker/README.md) for details. - -2. Configurate the urls for each website. -First, export the `DATASET` to be `visualwebarena`: -```bash -export DATASET=visualwebarena -``` -Then, set the URL for the websites - -```bash -export CLASSIFIEDS=":9980" -export CLASSIFIEDS_RESET_TOKEN="4b61655535e7ed388f0d40a93600254c" # Default reset token for classifieds site, change if you edited its docker-compose.yml -export SHOPPING=":7770" -export REDDIT=":9999" -export WIKIPEDIA=":8888" -export HOMEPAGE=":4399" -``` - -In addition, if you want to run on the original WebArena tasks, make sure to also set up the [CMS](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#e-commerce-content-management-system-cms), [GitLab](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#gitlab-website), and [map](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#map) environments, and then set their respective environment variables: -```bash -export SHOPPING_ADMIN=":7780/admin" -export GITLAB=":8023" -export MAP=":3000" -``` - -3. Generate config files for each test example: -```bash -python scripts/generate_test_data.py -``` -You will see `*.json` files generated in the [config_files](./config_files) folder. Each file contains the configuration for one test example. - -4. Obtain and save the auto-login cookies for all websites: -``` -bash prepare.sh -``` - -5. Set up API keys. +## End-to-End Evaluation +1. Set up API keys. If using OpenAI models, set a valid OpenAI API key (starting with `sk-`) as the environment variable: ``` @@ -91,57 +49,21 @@ If using Gemini, first install the [gcloud CLI](https://cloud.google.com/sdk/doc gcloud auth login gcloud config set project ``` - -6. Launch the evaluation. For example, to reproduce our GPT-3.5 captioning baseline: -```bash -python run.py \ - --instruction_path agent/prompts/jsons/p_cot_id_actree_3s.json \ - --test_start_idx 0 \ - --test_end_idx 1 \ - --result_dir \ - --test_config_base_dir=config_files/vwa/test_classifieds \ - --model gpt-3.5-turbo-1106 \ - --observation_type accessibility_tree_with_captioner -``` -This script will run the first Classifieds example with the GPT-3.5 caption-augmented agent. The trajectory will be saved in `/0.html`. Note that the baselines that include a captioning model run on GPU by default (e.g., BLIP-2-T5XL as the captioning model will take up approximately 12GB of GPU VRAM). - -## GPT-4V + SoM Agent -![SoM](media/som_figure.png) - -To run the GPT-4V + SoM agent we proposed in our paper, you can run evaluation with the following flags: +2. Launch the evaluation. +For example, to run WebArena CoT ```bash python run.py \ - --instruction_path agent/prompts/jsons/p_som_cot_id_actree_3s.json \ - --test_start_idx 0 \ - --test_end_idx 1 \ - --result_dir \ - --test_config_base_dir=config_files/vwa/test_classifieds \ - --model gpt-4-vision-preview \ - --action_set_tag som --observation_type image_som + --instruction_path agent/prompts/jsons/p_cot_id_actree_2s.json \ # this is the reasoning agent prompt we used in the paper + --test_start_idx 25 \ + --test_end_idx 26 \ + --model gpt-3.5-turbo \ + --test_config_base_dir=config_files/wa/test_webarena \ + --result_dir ``` +This script will run the 25th example in WebArena with GPT-3.5 agent. The trajectory will be saved in /25.html -To run Gemini models, you can change the provider, model, and the max_obs_length (as Gemini uses characters instead of tokens for inputs): -```bash -python run.py \ - --instruction_path agent/prompts/jsons/p_som_cot_id_actree_3s.json \ - --test_start_idx 0 \ - --test_end_idx 1 \ - --max_steps 1 \ - --result_dir \ - --test_config_base_dir=config_files/vwa/test_classifieds \ - --provider google --model gemini --mode completion --max_obs_length 15360 \ - --action_set_tag som --observation_type image_som -``` +To reproduce the other baselines from VisualWebArena, please check these a few commands [1](README_VWA.md#gpt-35-captioning-baseline)[2](README_VWA.md#gpt-4v--som-agent). -If you'd like to reproduce the results from our paper, we have also provided scripts in `scripts/` to run the full evaluation pipeline on each of the VWA environments. For example, to reproduce the results from the Classifieds environment, you can run: - -```bash -bash scripts/run_classifieds_som.sh -``` - -### Agent Trajectories - -To facilitate analysis and evals, we have also released the trajectories of the GPT-4V + SoM agent on the full set of 910 VWA tasks [here](https://drive.google.com/file/d/1-tKz5ByWa1-jwtejiFgxli8fZcBPZgAE/view?usp=sharing). It consists of .html files that record the agent's observations and output at each step of the trajectory. ### Demo ![Demo](media/find_restaurant.gif) @@ -164,10 +86,9 @@ python run_demo.py \ This tasks the agent to find a shirt that looks like the provided image (the "This is fine" dog) from Amazon. Have fun! -## Human Evaluations - -We collected human trajectories on 233 tasks (one from each template type) and the Playwright recording files are provided [here](https://drive.google.com/drive/folders/1S_fDzB1VUTwUphWPKZ0DdjJOAXjGz94g). These are the same tasks reported in our paper (with a human success rate of ~89%). You can view the HTML pages, actions, etc., by running `playwright show-trace .zip`. The `example_id` follows the same structure as the examples from the corresponding site in `config_files/`. - +## Related Repositories +* [BrowserGym](https://github.com/ServiceNow/BrowserGym): a gym environment for web task automation in the Chromium browser. It supports the evaluation of WebArena and VisualWebArena. The repository features robust web observation processing and supports multiple web-based task benchmarks. +* [OpenHands](https://github.com/All-Hands-AI/OpenHands): a platform for software development agents powered by AI. It supports the evaluation of WebArena. More details can be found [here](https://github.com/All-Hands-AI/OpenHands/blob/5100d12cea2cd35c30a22e25fbac376b72ed0981/evaluation/webarena/README.md?plain=1) ## Citation If you find our environment or our models useful, please consider citing VisualWebArena as well as WebArena: @@ -185,8 +106,4 @@ If you find our environment or our models useful, please consider citing WebArena codebase. +``` \ No newline at end of file diff --git a/README_VWA.md b/README_VWA.md new file mode 100644 index 0000000..d4cd1ab --- /dev/null +++ b/README_VWA.md @@ -0,0 +1,123 @@ +# VisualWebArena: Evaluating Multimodal Agents on Realistic Visual Web Tasks + + +[Website] +[Paper] + +VisualWebArena is a realistic and diverse benchmark for evaluating multimodal autonomous language agents. It comprises of a set of diverse and complex web-based visual tasks that evaluate various capabilities of autonomous multimodal agents. It builds off the reproducible, execution based evaluation introduced in WebArena. + +![Overview](media/vwa_overview.png) + +## VisualWebArena Environment Setup +1. Setup the standalone environments. +Please check out [this page](environment_docker/README.md) for details. + +2. Configurate the urls for each website. +First, export the `DATASET` to be `visualwebarena`: +```bash +export DATASET=visualwebarena +``` +Then, set the URL for the websites + +```bash +export CLASSIFIEDS=":9980" +export CLASSIFIEDS_RESET_TOKEN="4b61655535e7ed388f0d40a93600254c" # Default reset token for classifieds site, change if you edited its docker-compose.yml +export SHOPPING=":7770" +export REDDIT=":9999" +export WIKIPEDIA=":8888" +export HOMEPAGE=":4399" +``` + +In addition, if you want to run on the original WebArena tasks, make sure to also set up the [CMS](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#e-commerce-content-management-system-cms), [GitLab](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#gitlab-website), and [map](https://github.com/web-arena-x/webarena/blob/main/environment_docker/README.md#map) environments, and then set their respective environment variables: +```bash +export SHOPPING_ADMIN=":7780/admin" +export GITLAB=":8023" +export MAP=":3000" +``` + +3. Generate config files for each test example: +```bash +python scripts/generate_test_data.py +``` +You will see `*.json` files generated in the [config_files](./config_files/vwa) folder. Each file contains the configuration for one test example. + +4. Obtain and save the auto-login cookies for all websites: +``` +bash prepare.sh +``` + +5. Set up API keys. + +If using OpenAI models, set a valid OpenAI API key (starting with `sk-`) as the environment variable: +``` +export OPENAI_API_KEY=your_key +``` + +If using Gemini, first install the [gcloud CLI](https://cloud.google.com/sdk/docs/install). Configure the API key by authenticating with Google Cloud: +``` +gcloud auth login +gcloud config set project +``` + +## GPT-3.5 Captioning Baseline +```bash +python run.py \ + --instruction_path agent/prompts/jsons/p_cot_id_actree_3s.json \ + --test_start_idx 0 \ + --test_end_idx 1 \ + --result_dir \ + --test_config_base_dir=config_files/vwa/test_classifieds \ + --model gpt-3.5-turbo-1106 \ + --observation_type accessibility_tree_with_captioner +``` +This script will run the first Classifieds example with the GPT-3.5 caption-augmented agent. The trajectory will be saved in `/0.html`. Note that the baselines that include a captioning model run on GPU by default (e.g., BLIP-2-T5XL as the captioning model will take up approximately 12GB of GPU VRAM). + +## GPT-4V + SoM Agent +![SoM](media/som_figure.png) + +To run the GPT-4V + SoM agent we proposed in our paper, you can run evaluation with the following flags: +```bash +python run.py \ + --instruction_path agent/prompts/jsons/p_som_cot_id_actree_3s.json \ + --test_start_idx 0 \ + --test_end_idx 1 \ + --result_dir \ + --test_config_base_dir=config_files/vwa/test_classifieds \ + --model gpt-4-vision-preview \ + --action_set_tag som --observation_type image_som +``` + +To run Gemini models, you can change the provider, model, and the max_obs_length (as Gemini uses characters instead of tokens for inputs): +```bash +python run.py \ + --instruction_path agent/prompts/jsons/p_som_cot_id_actree_3s.json \ + --test_start_idx 0 \ + --test_end_idx 1 \ + --max_steps 1 \ + --result_dir \ + --test_config_base_dir=config_files/vwa/test_classifieds \ + --provider google --model gemini --mode completion --max_obs_length 15360 \ + --action_set_tag som --observation_type image_som +``` + +If you'd like to reproduce the results from our paper, we have also provided scripts in `scripts/` to run the full evaluation pipeline on each of the VWA environments. For example, to reproduce the results from the Classifieds environment, you can run: + +```bash +bash scripts/run_classifieds_som.sh +``` + +### Agent Trajectories + +To facilitate analysis and evals, we have also released the trajectories of the GPT-4V + SoM agent on the full set of 910 VWA tasks [here](https://drive.google.com/file/d/1-tKz5ByWa1-jwtejiFgxli8fZcBPZgAE/view?usp=sharing). It consists of .html files that record the agent's observations and output at each step of the trajectory. + + +## Human Evaluations + +We collected human trajectories on 233 tasks (one from each template type) and the Playwright recording files are provided [here](https://drive.google.com/drive/folders/1S_fDzB1VUTwUphWPKZ0DdjJOAXjGz94g). These are the same tasks reported in our paper (with a human success rate of ~89%). You can view the HTML pages, actions, etc., by running `playwright show-trace .zip`. The `example_id` follows the same structure as the examples from the corresponding site in `config_files/`. + diff --git a/README_WA.md b/README_WA.md new file mode 100644 index 0000000..2de728d --- /dev/null +++ b/README_WA.md @@ -0,0 +1,105 @@ +# WebArena: A Realistic Web Environment for Building Autonomous Agents +

+ Logo +
+ WebArena is a standalone, self-hostable web environment for building autonomous agents +

+ + +

+Python 3.10 +pre-commit +Code style: black +Checked with mypy +bear-ified +

+ +

+Website • +Paper • +Leaderboard +

+ +![Overview](media/wa_overview.png) + +## Quick Walkthrough +Check out [this script](minimal_example.py) for a quick walkthrough on how to set up the browser environment and interact with it using the demo sites we hosted. This script is only for education purpose, to perform *reproducible* experiments, please check out the next section. In the nutshell, using WebArena is very similar to using OpenAI Gym. The following code snippet shows how to interact with the environment. +```python +from browser_env import ScriptBrowserEnv, create_id_based_action +# init the environment +env = ScriptBrowserEnv( + headless=False, + observation_type="accessibility_tree", + current_viewport_only=True, + viewport_size={"width": 1280, "height": 720}, +) +# prepare the environment for a configuration defined in a json file +config_file = "config_files/0.json" +obs, info = env.reset(options={"config_file": config_file}) +# get the text observation (e.g., html, accessibility tree) through obs["text"] + +# create a random action +id = random.randint(0, 1000) +action = create_id_based_action(f"click [id]") + +# take the action +obs, _, terminated, _, info = env.step(action) +``` +## WebArena Environment Setup +1. Setup the standalone environment. +Please check out [this page](environment_docker/README.md) for details. + +2. Export the `DATASET` to be `webarena`: +```bash +export DATASET=webarena +``` + +3. Configurate the urls for each website. +```bash +export SHOPPING=":7770" +export SHOPPING_ADMIN=":7780/admin" +export REDDIT=":9999" +export GITLAB=":8023" +export MAP=":3000" +export WIKIPEDIA=":8888/wikipedia_en_all_maxi_2022-05/A/User:The_other_Kiwix_guy/Landing" +export HOMEPAGE=":4399" # this is a placeholder +``` + +> You are encouraged to update the environment variables in [github workflow](.github/workflows/tests.yml#L7) to ensure the correctness of unit tests + +4. Generate config file for each test example +```bash +python scripts/generate_test_data.py +``` +You will see `*.json` files generated in [config_files](./wa/config_files) folder. Each file contains the configuration for one test example. + +## Develop Your Prompt-based Agent +1. Define the prompts. We provide two baseline agents whose corresponding prompts are listed [here](./agent/prompts/raw). Each prompt is a dictionary with the following keys: +```python +prompt = { + "intro": , + "examples": [ + ( + example_1_observation, + example_1_response + ), + ( + example_2_observation, + example_2_response + ), + ... + ], + "template": , + "meta_data": { + "observation": , + "action_type": , + "keywords": , + "prompt_constructor": , + "action_splitter": + } + } +``` + +2. Implement the prompt constructor. An example prompt constructor using Chain-of-thought/ReAct style reasoning is [here](./agent/prompts/prompt_constructor.py#L184). The prompt constructor is a class with the following methods: +* `construct`: construct the input feed to an LLM +* `_extract_action`: given the generation from an LLM, how to extract the phrase that corresponds to the action diff --git a/media/example_trace_viewer.png b/media/example_trace_viewer.png new file mode 100644 index 0000000000000000000000000000000000000000..249919a81547c06d60d55ec26c748ce2b433c77b GIT binary patch literal 1428447 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

#fM3mXaVB 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 z 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

r0owMwN#7&s^!+&biva7PF2PTjeW{?ykS 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

oR!i^ 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 |NExmuDXUHpdy&}?AyjAEuC2zu2 zAeOYC&Iy<~*Y7p9>Z!>RBHE|d7t0{Q67@L|=MOd5^GTgEs(?8qOQirni5$cS&^nk8 zj7pT?3HXm4I${07+jJ+qJy|lm|614%sEnD_{aZQ6lWG%$c@Ww$DhEfySSa1r9d6v_ z$D55$xw-hcr3!XoW951?BziweYheBM1w#Fdo2V#dwCil#`6YwM4SUk5@xad+Tqy_hT$?5K`8Tr>q_+P==M?LiVkZAVAW?F zaD8alV(xQ$v-BZe;;egfqEJJ;8F9cNXRoxq=uLIUV+IvN)9Y;IDp7L>{&wgeUR#$R zoPBY_+1m6N-FgG=d?0@(enmWG!02^n)eT)bzXL6y(}PhZ!IYEfc3^WH)aW-}x#PgK z`;ya)aU!xSew*I@SGpo-01Rpkb)C$CeH)d$$sC~={vn*a8HWlLL)oZ3Dmvbd#J*Tu zUE=z%^EWMI@j98SVNM4(9dV)GhSA6nQvf#u4vI9GuTex8vwPZ-n3R(5VHT2*8?5<7 zy8WOZu9S~f++ZOFbDLOo$QJI49o`M|cJ=Q9hA`N4Yr2Y)6!`Q?@w)u(`TXOu<|+yF zR~Xc*L-f&{H^rs;5M|8e+h07UpufDUP%D!3OA`KYv+$oZvo+Y^CNox;HV5slP6djl;Gm~ZzDRT;g@InS-*okijV;};rdSH59JW0DlXI&OtPL0#h$2hC>_w{JT;J75= z(T5-A|0+tzX9-uKRgd0ss9;(S3QXZw!sV>Vj5*ue;EIRpM%W02xlp+d|O!_8|AD@!+-yF zx=h#vGm2n)-fgBPo1Gz2_Xg8e?DB8G?}`uVCvx*EGZPFmWk&1DWHeWfNA69sc9y06 z3(Bm)hTvBg1?Z$rV<_KVMw;L^1RZg5FJQtvkUarMevX44z-RL_rcV2w?tumUI@7_W zxxzBmHnrOCSowsQ;wW$|!2@)3E z$J5Lb(mX>`PL>$oc9 zG;C8A^V)mmRME`x(6O$4xGL7GZ0a*E*&rx8K-DbpN_Sba#lLoEqFN4T-lGUzv;Kvu z=O>@--@x-ZtFHRyZ~`fVnb2&xb24?i{B(2L@>##XH&7mc{*a187xc_HjXQbP3~YJ@ zMPtL%V5vrON>`D}e#Ld>R>Na)rXX0XcRvy^tG8WceR6_%Tz7RWelqxXp5LZia3-na zhYLFjd6JKa9$FAh62dkX0Nuv3+Dvq-)L5)P*sCeOJg%)iY@5`aXb~J4fI$G~8lO)w zw5X&qoW9XzpNI?V6oXl)yB07jg5K|!d{2Tu1TbTI$gx-LQCj!z)<pA3A6Vx-OUnyB6lqqNc%k(AWb4j+H*7TK1x zkah2dKE1x_1Kr86sDJxdokR6A_87SjtSH}c-5H~<=Rt+Pi8ozk$&1nk( zoBkbsMBRRh)hbYT-i!Jhu3d|d`_d+Sm2C6bq7|QE562wcKD83uWDI*-mjDNGSg%RQt-@_awvWXeG4Qqj zO?&@drYT`~@SR0>zBTw?p00WR^)Z=;KBL(N$>Yz5yD)GWUC|nYn7j8Mi-0<{i8}V- z4=6dYM+en{JhPyo^saqEuv$7-PyE>TwdPX2(P=KkOEnL@;(E`cWae@Rfik@B`syQ& ztrS13(rrFY?94&10$cB+&+?3Vj?-r&gWIy@`gQyNMBRrZ6`-b$&bC@y?|bV1sA`V1 zB0zp&7(~uAap$y|7eUQ)Rs@T!Lo3605O==`CJ-+IPMuUW$FTmV769%wA;8ZqB=xF$ zW0QYnR~TQ3K-3!YAHI2~AH654QSc-a;|NbEEjqD+pV^*+So+~8=tO2d=sR_dz~@)m zIEtz#P1H#^YRa2zDR%t{RV4!oWd}yG5BB znu##{6oj8i`=dCI##^&bNNla@?^v$zCK>BWbsTdr(nv*Qs!P=RE2q3^X+=#<*$ROs zU&Gf=e+@*CrruZ62XI@3I)JDVYwEjPF1w{D!kX>%lhdfqU_=Ck=kE-+Iwz&RU0S3w z$7Q#?EWN81f0e={VD zyfDHGRq1z^c6PbgLTfKlLwgQ4<3Vvp87IT_TB2wtsA6FA=^xy+yT%$4oz{-CFI4OB zx)zgA*hm&_KCliLHhbg4%PaD)SHD3kCWO5zzB*O5Yc@LCTsD~cE)LI9g~J0>;x8!B z@Y8j7qjoYeb1j12v|{T?(B6n#ie^*)-E`DWF##TFSvYD&dn=sm5wy>u~}s%9xi{dPp+!fSsL zSJOi8k)!cFgaVm4=VXzV(nvuQsx7uzh>?v$C)HZ)1G7iW=(s8p={Aqodz47IYqgYK zEM3DF_t^?-kxnw8?hZF@?r5Q$TZ!8LlR)n`)a9i6-DD&fCfWy;MM6=-ZrjO*{P}d5 zJ&kjoYQ^oINJgc&cdT|b`!TIgkAJ9L@j1_x!xfhK=6#{T-sp9M!kf`WMJsg^>G|em z(H@wc0j=HWvR>>ou&_%7-BpwzTZlKm_l8vnZ78a1WsNC|Fh(u3Z(WW45GV6@y~1r( zqB(%;k3maEiMpyoZ$K5LG2*J4lG)a~nG3tiVWdfDQw;v~{Vk{0=;ldpJ(FHkPq(v{ z>NQY@|XAZMmg&% zN1-YhTZcMc`*5G!-n2t4BpV{Z@zsC0Rr*NT?_g)=t;`q@i<0UEk3hl<-O46cIn*Bi zzwdjS;KSR}LfhsLdAEg6bQ9GKzi+S#75&DxE_fR6@6>WgW&BndlLVg!(ycyPykPz0 zjjpRPxE%Mz(Q_vp{d-Hz_z z)52Il~>x!eTJ~A!;Q?O~sSi?EZJI?4+<}`MRl>+tdqb zrD#EgZ&6BQDXCVTE6^ys;_5eq%2M2OGu+ZA|7zn!W~j|N6O9^}{WZ%shZ- z#A~jF%oxpg*79v>y2VP}!_O=KaXu^K!nBS1YZDRheXk`P?Scj(#nvBT#b$0DXV}z; zFI{YfdIWtwZLKE_5v9_AzHW1s&7H-hc)X!F4|Tn)l~>mJ0XuQhEO`}!zM*^&=p>JW z1a$lny+xf-@wi#Q7NwZCaa4a}R)gg=RB9jl*tk6B?E!>9#7o(l7^)eGP{ip5z{fYX z!RJviAue?ih<>YAI*dh`o==@SMa|EriZS=yX8@R?ni|!9qKe7#A#j;2Nk*(v5`g>Y zFjid9GM@~^bmMzCHPP$tDmK|(6DpLJaaZ*Um;EdnH-cbBtnm^(!C%P}dVDkaS(`R56p0`y76MCx=r1K>OXA*i`o4usT&PEMW|s0qq$ z5QrbXY!7t#^f+~LTUVZjn!xy1MA4a4RWcT#$Zy@PN(^L=42qbp)XwXdiJ)epa;?gZ zBZ|2v@_^uN48eeMD9{wan!!Q$pe-c|<=H=qd)Dv~aW|(=y~{UCaze+`YTp~}qg?D) zQ;N`MzNtUZ19tOyz~bBarh7 zVh$Tm;s_v(AEEY3dpI9S zI2q{@X{2&p)cZ4w6XuX;I|0wr+wjV3QQfR`?A~V((@}7^Lj{b0{BqV1SU5{E?TN=` zNuTIzu$_V`JYIiZdkkFC@?VRgruPYh(>6qNX^Aji-=-Z66mfGI8qqeAMiB(W15nid8I|=Did`~1 zzs#{}L~nk!#8=7LJ*t2fgIlo=Afu3g*o635$V*2-AJi`*(k<|*2?cA)f)+vxNV_Eb zOA6&-u@VBJxlJC{7-v8;691!R@_*y@#x_5{u<6PMotoOtd&WK;wd<+ux}fWj-@l3I zeT+9ryqf2ap}36)lra9G3psjxm0HTUV2MI-qYp zC7INh>ZtUutGeTqKaUtw?6zXVpy{7ue_zlKE)K|w(~ZrrO+xFEX$t=;wFW18i^T3} zzeA#bXgCSs1@vh0M{2m0;G)m!_dCNH-+%aR}gFmQ_J^+>W93 z4}!m_xg|9oRAJ3rlSeIS*;R|XL0>F#jidqx7MbygtGzD0|qUkpa5Z2ZB+ zQJ!@*O&RVQn5)Q$1IPRlx|g`O!0_B4llF7?4(evLauy7$TAT`<$cjm(d~NYjJyV3} z=Jd6^h1bnkss1ALBs9X+1y%;qFx=fGQiU%X|7RJ11&2a51Npo-QApUyC z@a-&0{Idx)?nEJXO3Ft?Q@LGVRDb9${^q@S9~)-($glZ==yupe!;}%r!_~B<0{54> z;!cV~!MXdLQsmrYaIiFdIb|=Upk9kb7SFP=+PN4YdZ!EdZB?hFaNC#?92_*BbsvHYt=*<83 z)ptpEx4sU{{lOzf9NLsrh;sd&nGxn4M$yewx|RkcLJfagbK~x9qoXqTvdkF+mcy~p9Pf}s~Ph9F7fnFuqkvowz%PGTQMzKc>d2Z(N#@#hm#n{X{h zl-KVk^z-fj_Ma)!oDg|6)!#>*(Ebt}6_f4jEToI|ibup|$qsHM(z1e<}S z4LO%`JZThED@IHTU+qt6I2KC@94vsz1K_7!9usz(D>W|~G8?uU_C9Z#r!mO>eEI5`9SVqvXaQzG! zi7am9*Wo;{AFoNJzRF^hgYGcD&Od4|4rJ-Qb6J1Z^r+!cgS_3OJ|LJ4xZI-;bhKVL zM2I%xfj4*!KON;Z4|}mXb5*dt>USJin_`>13>ToOVe1`TRX2KQ^?=6Uwo`gn=(0nbdB1YCH#ArgxZiTWdG9nkDR%&VqkjNivDLwF_-3=Gm_PtWsYj~LM*#uKD8d6()aau60eE}l z?dK%eTcC&1QRSvugsXe#M!eCl(WG2*V`PniQ~KApm981sPwZppJOq3BxxfN>ATXA7 z`g$SsVDk?lbyIoEW-4_5U~gCBPqit9@E(A)=W@JJa=1H7t9idRJXFF7)UD&H4xdOy zJ<@&SGJqcJ1>RU&0(2m!n?P0Tn(UoSJwPs}(jrkEDfG?v|N-=wxo!T z?2Rbqua-bJ^)9zmNHD?Cp= z;#TAYUh|3dsxxkKC(87ChQb>$BZdeCe;1o`0dTvrg~Hg^EmIUlS={Zy`*}xipA=;V z)VLZ4a{at15A!@UZ(I&(l>oi}kvKa!FI`4Su zv+F_kMyy`2swceAgg?n_Z#cIx6i=>&@~@c)Q;lDah$EdvCd(_SoiM#rZb{=j@o61D zuBMM5`&%M`$JC;*7=BAgWZdV#6jKLD>c6D@4v`;~P?H|zYU$iY5Qiz7^CRTs%Qwg! zz2Uv5RiViRZmYxR3iKD$hx-I`)4xi~*k?_AHSEDt#fhH$4HL&7iv!8%5wx(Oq*eyk z@W5G9sG?Ur{?=jb=o4=YzV<$C(AxcZ%RZWIU6a5f=~bxp#TCv)%HNYC{k?CS77XRdUD)rn-+Rm9-0x>2rj^8kmG!?1Gwc(H@xH#cKHA_j}o&C^VMR}A}T z8mwmBj-WBcZo00_Gkac;m@G!eX7K;)nTM3~)W}_4zA> z-%3J+N#mTfFI#l3jV-c8K*{1D{Lft6f-j?&Uz7G6@n3YWLVgQvxplGx4$^uR+dRn9 zHtuV?pv}x^9gspE;xp76bYR%2T^XG01{Zvfo>1!-u}5f&p*-pJy&fVu2A;FUfr9vd z!z#NDafvmm@YCE25SD09ksl?UdeDnY0had_TX#-zV9f=ZT5LlWRg3h6Stn=smGMzY z@Jd=fSWvSPyEgXTKM{n!0l1_+XSKVO&yJ^>h{%pT9vbJGSHSavOz^(!*d(0HX@NNP zlFq3oBWAysD(*Qn<68ej0-h6kh}fUB8^w5C<~3v%(b>u<;&>5{?U6=;pQ+-Q*&?CdwF^s0W}&0`{hh8hc)q&=fQcui!-9mZ0Ba6VuiOy zL4u?&L-J=L%@=O7S3$)GNU#YNgs_%)RenQ#Ezt8XbKiF9YqsAHuV?qsu&aeA4)s~c zF$j;IAFKW;AZmQeRf5qMAgE0eKo^{0sL<$ox%A_SG8O(t&0OwNPrBtlgft;{7U1zn zFeA|!VRX{6@2V;D6cKS3$lk&*sH`A4dsM>|X z?$!yx50%oyyxU9&M`Y3rvbC@5c_Qcz0A0=~_w-N_vl`Lzk^HCOUrGWkrE4kQ;#rD! zu`ON6?hr7y{`Ckej`wrcnLAx96a@*|6wN)meRN<>6!IoLuX?y5Ro~w>VTb2iWnA7A zM%tOA%{85yiC9mkTL#_ z#8}*o6(n*jQZBa`Nl7Vwjn#ZPq2?9nASQTD5f(M8ApX;enT9h1e*YLxq`N_$xNe9D zb$(D*=vb9yyv9`B-U47**um$_J%9o8QkTwU&7kA#fZJL-et)_v~VO-U$@Zl;Yc zJ#Tx`uw9;VEOS{8?HYH&b*>M3&@eUA?PUFwq$OI9?-<1BO#o!HotKf=4WH1Y4QEn9 zdl)+qvcz==xk;yAE%R=Ot5GW=j|T?o5}&F$E{J6C{n=Q}kpsCtT0G-SsJWiURD{M> z9|5U@2SN?TOu6>q1Qn0WQz#0b&YG8C-U{eve;Up3+y)h(jGQY&gsE?K=qYz--381D zjj#C(Z^091ghZUP5tA;}n0dDG9np|67E!d%(S(9tL^xdCc^pa9@Bt#_{oT3E!CZu2 z>mBRSvd=QfNI6xD(AZdcBSF{oi5gM0Cuo16K3dNS*ia+>r6qsM_!&FPKzm3HZ3FAd^9}DD}<8T`E;S6Qh4az3zBPiC{8T}E?CrB>G>d?H>9>{UW ziBrD#(6n~`$-W^N4Qo7*!c{*ao6;!AkYPfV@=Ymven~RaBk^RZdcdilO;MN+{->gK z#B*d6l{-7QUo1QFQ19dRAb(fN;pjg7JcKfQL3!j&Tfn_v3H+fX7R~2>Uzh(zH|<2u z(z)h=%9MiqD^3g^Wg#ygCbFt!-H%$N3$bq`9&b&5?=s)SOO1I)&0IZa>90SS6;lp2 zd4XtFngwy@aS%u5E+m-vr%zKF2tOuY%qWASK zxX=^z9h|?VI{WZ@Dg=!#JxD^gKN5wFS&h8m!z%q>?Y%s?{C%J83S9I#GuQ9x-aC4` z2OPgWw=*n(`1ms6P%Bo(g~{%fndCj){*2#Gt4#cDza^nWC7F=#P<+)Vl>T4C z@*e^56#2jL+L*?A^EvZL*}b7uyDtupt{cfgX!DQD5IFh=>#1%4x-@*#{K8hlyRVKi z2x~L>m)Oa=$!(k&&!`+3{xeV-e+xU7W>}DNL9x`>153kghqI;Jr=qME4jKQNu;lQ- z!$flDp{^?7|7w>GQj<^x^M7knn2{d>0KIB&j!+UmaV70X_AT`_ehZqaX}4NiKqUrx zvxamNLEq}{e_jAo5{Z)xfU_Eg3yG9$gRG7 z?eUP{^uxzRO($KQ(NQBVmFq#S(hocI;PoiB$fy00PU)sTQ4OOz=akd_;}wd*fq?H2*z%XHc~Lr?z4MD<1x++D+td z+RgTPk*4zsi@-yPE->bD)lw-{8-+(%W^>Ygor;J~G!SKfq{Jl8oX@DEB{Grad+gtQ z-QHjHAe*QZbpgRJfe}OI){G+acX*oL3$`9XZfE&DcQGiPnNPI@jTAEvUx@Bo%d2!( zx{rii=vKxGv6HZd5_}s<TleI&&k0PFLyzycymmP`bF} zpD4}--t5-zuMR6o6B+wqIDP73V3HS&=WPJP)w?8jQYx zIKAWhu9jQ~pH6W5Lq8Idwh3sW{k=|&lZlAwM`3oK`b9tN{99@Dy9X|bY^`UeX`34+8 z0JHa!dBGv;ijOQc$EePjIc1GumfD|X@LGLw?Ng_TjgXr&kryzo@rsJ3d_X@Kj2j2; z`*RkLFt2i_uUIE;M@O$!sqKz9MkS)jgX7}B?L;cc-mw%H*(TV5w$Lq}dVyOf7D&2s z=T{-UrjSAKOiGEM8@S*+!y-x-xHQV9vKiKMxMJpavla4t(yQo#SVdngm@O=T5p0Tg zfIGV0hr3O~vHi;@&Qv3Nzbb+q@k9`B=;T+erv?E2tVZ8g0I8x2b~CNlJ^+(bt56(3 z7L6kUsrNCRAhZl)xNGC`bK)P% zw*_;K3XxZ*4V)cJQzW-Vk;|zd%i_QtPf`rdP_tj>?Rj;Z&_9*yg8(sd*FPfK86t1W zye3ZP{XE>s3JZy`(=e?6CrX}2G+Ki)a#IWj&^eiZ5YV#x!4&m!^GdW`E!(JG5+~_NvKD7QI#}u65a* zL+x80&`k1ZsJm=oD&$|O8uR)SYnlRC)^n^!A0;uVpV{BmI0A}Z6i^^y3d0`%;%uRi zDRBqmwuBJ3!`ep|Au;%Y=zJ89K@)kX&8fz#8gSsp4RwT#BxZV=dpaxOyMRLsU9Dhm z98jaXy|6`Y3Y4GH(@);#|KfmhK>%d# z{o8Ox?bH7d@kZWp)#+_hG?Ub{5 zqB4e-Yj)KyuTD0^nigkz}pdrRQ9FeoLTGSVFGx-`B zTJN4F_GlMioGC3cq!&csw29N$a`jT+)L zV2>L{*+nb&xr5gILiaCQdc79X6@I8Z#aP*ge|{8Psd5b93$Ltgxk~_5l1RCYm_Vrg zQR}?epikURU0s`CygsOr2s#U^4-^gGT?Aqj*IIyM76Wf=EuC%DGF^QvzQ*Q#G%-C* zx(t49Fg)cj=@q!|YT7!ey^5-s$gC3Agb0~(H=RE4UO9N0fmMw^4!%!~ z*;Cd7gwjK#3p_KYVP?!RYMQC>S`=cd^b*5$3q~qr7RW?Xfc{Qhy?W3(c$|OMJ6B`%yFpXxaC)4?erw* z7cw(HZP#{}Z;B7wNfUXw+R?pEo&Yj#P2XT#h}L&)uPF;71QgL`PZDK}2c04{Rgjn& z0B=u!>somBFr--C)++`Dl5Qu+9GTcH&+Sx{u+zlmcc8 zJbp9^5dMyvZ)k&GZ;Q-+A>zDRs>RJ=+yx3|vrv^mvk!l1TP&BP#fgZH;KXR&oPCO~ zqCvhlY&SJlm&(#@yx18{#UQsUFB#(QMzklSzMlG*`re7JeZ+dHwL4N4+|U&X1|t1c zpGbJ4|K~`sd()7@-4NLakCI0omFYe@R~sI@7I}<;9S0l2C57j z1$wvke+>GF;CDia|B4=XP?y-#U@kTZXBV51qxD}2O2=?A_nLmKQ-&^-Fvi0kG2bt` zpu2!W+bT#$Kf${Ksg?CS@<~~ETH~zXv<}oD!*S3?Y4yaXjxXO*)~$_x znTR%7)TyJ_e9@Ig5K{)EUbLig$IsVeJSp>px$$yOWJq>}VK&Uw+FdmD> z{|9^T8P(L+EqY6lUPXEdO%MeEK{^CPDWV|Kr8hx9dT)^qQbHAw4k{=e=`BEn(4;B7 zhTcO@2qd}rKj)tF`iyss`+m4z-f{2wnw`1!UURNB_u6aC`I~wE3dXjH4U#hiZF3F* z*z$7o3Ih30yfa!1GFUiKLFihEYJuE&k;P+7{|Lo#tvQHLO=)E4UE7e=jYCO|oA(R+ ze?7bZFqfq{DNi&*Jkg@IS(I~58vZ{)7DcN1`^s;zmET##WZI3tmvu^F%gnzVODp1v zK>CMxli2I8hgKcOASUFi=T+IH-!V<`<56Y@rJcZA4#b_hB^K$S?p$bV_v<0Kiv09Z z&z$+D2Dg~}cr$=MBGEGfLX_>=q{?|x zE#Y!PXf9qNi?IIpB6KM`n?+5{y^I@O3b^o7pLuIF^cqug!dKrh6;i7l7)D=~Z-v`O zp5qG(y*rHa$~I_PZ-u4N%#|as#I(Nm-r1IYsjO|EH|zPt&VuIH1GgdHlN z=R6vnDE9-%Ql|V)&?>#}3Jtu_fs3`kqpRA*LtZc);{)JEQt}n2Y3+qJ8_{|EF`T|- z`?XhGEf>H`yRT|I>x3u)nfHw@vlG)<=HK~HB$eh7Ruj#vim9fF_+L4;TA$D;Y;(^t z&xfel6n(m+#4kI~@##O@JNUewTJelundh?a!OaE|yiyYa&+vo@KgwfN_hsvD1LmvRHrZH{4t#e$2jXo~V!3bLJW@7JHreOVpJwKYvW0FeT_Msw z#=e(5+bpUAz7E^209->OPMTtH-?g7PkD+^2i8em2j4 z)fXBvZ63RMS-;;5y*R<ci zNIwW4nEoc&Bewka+#|=wYf9G|*pnm6KiOy)3>PaBWdp_QmJiG6zM?YGq6b4ADu3mo zH^hCOH+PGFSJyP-aysTy;VQS_v9vqaAn#%aXvnj9XOFkj;&o z-lneSd*`F$)(<#vcg5@{ZgcJhBD*=(bx0E)ds5l5Q$3b_oF4Zw?N?gxNG!<<8D*GQ zV>jWv1D|W;Czt$nFEvTW9s;@OT56^lC3X+KKX(72I|iCD@q~9ZT^F;l>_q}Of|t4U z)SuknCt15h+-w|GTOfNht1z&Y;5ZgZu&^07(6Z*by`LFrPE*!=%ChRe^y|NlSYd70dzb>*#UAV=Z@??lN|31&l{ zR)7=lGL~gAJ2YaKE*7xjUT%ryF7;rjY8fY+mN&+&Y!K1jg$Y6uo~AqBY1By(Zn@C> zb0-aGd19hu7m_EQ=bwzGZ5$QJn`<;NnXfw)FDva*ec})A-LhXCF}D)|j4ulHXr2VL z-3-0`t(D*{Priw1!)hyg_QFm1%l&O)f3sM?3#Ir+$F6OM-}iyn$6(Jf0@Bu#XSIXL zaWCyNG%UIzqGmpnPd=-(+n=e89j-M7d2bHN5|ob=PRed}Aiprt6yd|32wWn^xih!OrE-ao-1Q{A+(A{#^K|Fzlqa}Wccq}~cB2Kpi=@V2hJr`EcqP4eJ4fY8*Z3oG3P z7A<{|eNV#Sm!xh~rD+rX2=9=nU9EuCBH+^AgaK_+d3LB&k0CK%Y0K#4?s4$o&?c zDNvpd=F4ctobmbA=$!r1akU2n#=?dMM6y`w>iP|zc|96&jfGwK7)ignY#(~hkG-5$ z9QM>C|0J*L*CMlNu!{GNET5@8@D5JWwR7UX&G)})zF){A?`!9Y+xXbIY4!?9Wp8KB zw3B30Ow!}e?e89~E_)O`!rC{sq+VHb95a`t*_F&Q9WKM4cNISn6UIHoXI_?aj8#s)E zdrrg&QZ!MAoQ>oA&Wf` zJ{^SxO!xn4qRQBGpR=K8@VDE3p}O%U(=s*WqOU^%#hn3%<9EC8sjmft(f;(#Xj($$ z;bR1ci)K4EP?68DgNj9rj=oEv=NKV23+2VC^vnS<^}p>O@P_4`{_wKHP)~seKk6Fw zJ(E*HToKVK+=zkZdlEOcb>I(@&YmKb>*vX7o?J3E;CmtXau>AHMQJT+o~O|{=ebt+ za^3dHHG6`HgY&M_it)3nuYzDL!(LKAD0imW@Tq$Wdm?T<4V2l2z*f4v-@9hzIO`g@ zZ5{QZnJ_m7EL$JvBj=q=Int)A-RE-_Cb9dr)Lsf>dX_0z+aQ$3fFpDm!Kdp{Z|Ot6 zc#H*3xp0R>U$DxaV6P6NI-S;c?^k{FJvbfFF}%sA*7*?4IO|-kxRI<%GkHJY?H?_7 zrgqH(uy$+ZO4jRk>`-;HSzo&}Nz%{dRNEv)DaRFyC#)PvjXRD~?p;xbe8wv$uXpWP zI6kt%)8w`cAt5VWPDTOfof>hMl;DvThavn~Ug4bsGvMfX+ruI|ZxR|2uMg?M05Mgn zk50eHv_H36W$S&m3xMVW2w*^&;iozSftF_Vw@XdsiHu0p?_MSo(WdywRh8hke;n4< z)*t)GSSW7MIaD^YVPg*hfmr`=Z`FD&uMr8%DOSWhx-#^*yZh<&4@1siI(pppN{1pZ z_ML^$DnRLVhm2>sH)6>ECT4VRxpS5%U|p>Bm)jvaaX1X>U0@MnSDNSN+54Ttmg%yO_-D-9A+KvVscXg>T{!LL?E^fD&YV1i^F7$# z%fRmBvnIvW+2O|Cjl2BiihRsMCQ4S(EW;F;VuG*CYlekh)dhD^i5ojT;*&|)4Y$`$ zN!=iN6Wd+Ua%=O+cgl~lPoI6H&Eg@^s(eHIw?Nh-qn=z1pYDgH8UrT;5B5+>3Ye=1?y0ogva;x`;1^65)Rf41cNI;ugY1w{}Q7Q_(zcjDM zj=S;FmE}pQd<0&7{sRVCPAg8d_;M_R7S98-7fh^_cs~PT zHDSiDdX`8rD3JV9##p-j0yQ6&GWef1^oY8-@GlKN9K;|O!TlGNM^!GCm5=J5yV0M5%VwJQmkKQ0p-W?yUs#4Vr#`<1fJV1#rkZv=~G{D!>8m4ep z5X)8bDJlg%pS03~P!a^ScFN)6N^C66&#f+T!yW;~C?BHFtJjNpnC*#J zNFRQ7KC<2B^qXU~Rkc(!j5eT|28c>e}t|6Jby-n z_ejon-|YDEcfQ`*MW%=;?=O59eazX{iFyw`bJ1_V0ZQNZ^hEfs;n{|7&Gbt`Y0?hXa!s=EKu|G#`(h2)_8-~OPigLn6DWyU9}1^k=x8jPOg z{q5sw$L}Kk7AU#+Q1)-ikz(8UH-SGE^ge%Uw^yyC{cnMUx%Q|z3MNRRLL8OKSx(cQTWXeW zR%_~tj|g)w^f1M6k(vmv_;H{WM-!zc;I|9T{Nvr+)iU*y}p58>dl0D@7T!hzkE_RZ>uu~ zW&BRnBoKl>!IpeR2ohQ#F;%VWI|g)%-!kp2!^$82G^|BWMm((up28B*E{KAaPO|a` ztz)dVT9A^H`T&g&siB~5=BN7Hffh7?bY8Whf_Q#u{z8u#I07b>w zPfdm>(^*e?MdFe4y^7x|hv)NRe!G9jwPT2$X=leXJ$NiHSRBQ62?vM9ZhOt6B^q9n z*BVTo$Zgwxt9OjP8;R8?1NJpgJ;~v3xl$LtrJR&hmT9)iLHDlQatb}(OnY36v{8_e zoVx4nZ8)6jTp)VLs+*d3{++RO0a#-T!3sf8(sNtf4W~`-8`w2`YbglibBY;f_JL4&*oR#79#XA;EnAa03=@ zPGnUp`re`^k{EJF-1!Qor!%l9vz%dC&1;0azSp5NA#%(&DLZqowaT@{wLE0M78Z6h zuMjhUvT`5j%^WPgLwOulmdO#1r#syd;b-Ao8wCYu;9p|+9p0}U3 z(tB+}=!1cYSV*hqoEW_b(D{NR@ly=}?<@V*(EF>0>5L7zDkWRiEB9`BrX-J(We=ip zI`xnn07ho3iU#r82@K$T;%)$do_YFU&ZKeiYrzt(@!i}imsEGa6yFJq^kf>Ml+ZbK z+c%)T-lCKSgJG zeoNh?g^6|!!NTR<7~lJ3r96W~z^Eo?%2J~dK8|2Mg2mlwjTPh7JxVOacw7(xD1Pyd z%xg&K%&rkbRvBn1_wqI7b6gs|NT~%-f1|u9SH)SJmdGe2IX*H$t^aJf7C6lW{)Q>^ zGI%xtnR_CME7Mf_SRB#b_2NHS08WFm)INrI1Y~cBi0Io}1K2!^e<<`0p%wFHU(G>ibXN{yc$9oS;Rx?BS9?c!q2Njt7SswM;ER(4B) z`Bp7~WR3xh-+nhRH(gftO4#cusCr;ZjEFnsu4_r?DxMdrxX#X3YaJ*yeb1c(Xsek1 zyp)t(^?%zw-p5@iHWD*V)Udg6`gt~n=*##jt^dhkZi9#neN|}TpQ?c8y%&J|z?}An zTh+6&$B{43$_!EyWfdpY0%WSL;*A?w!r57>eZ zQG%oLyC;VO&jok{WtBBFWNy9u$o-*TKsSkzvDb9gz^;QpSK-FZ4Z3wY6`Bmyn@_@M zkCitr9-Gr^tRCFse$dae9!{t6P}U*!G8FRNXmJvOd&AA=*P0e!Zf>xMvA~pH`5?=y zEN+g@4ArE(o%onm|J*E7I6%K|8CqNP0glf&p{kB{2*`h?JnAAjRZ_HA_r=`ieIK<< zj?RpNi=;PSwrRCl1FuV`tn|sY#EEOb2|-7_2j58Y2+z?RE zfko(&=|M2vhG?4Sfs(%{mGF71b2a(>kJUd>!GPQ`_ct@_>;!(H$0H}#(3Q9jJ*hii z(b@49yN56#@|=X_+c~{r%+-U%)AFt?pEJAQP}yZGr4%s}{;^p6mtTrs+6(wj2w#yW zr}fW%xL9l>&>;W$>GM zF3;zM6WAU-J2~wMAl(x@6a-?(H#_-y_AUZK3Y(+@-S_wZ*cO>wlT|N4Kx%3u{+?S9-Mf~aN@(D5l?64h6vL!Y$wdzm|mOfhb*c79vSQ#ICM&qwHv<9xS&EaHH*wO+zgyM69e z{cUO(W*ef@a?7a3`pJ)7)--ai94~b{ zrXN?gBx%SdF@=;YL1)-Jv%oI~&T@eSo^=e8Od_u%rGUJ`;byXkH<%%K!zoX_TR#7Z zhf6e8PO7#pJjWH?;IcZOQ|hHZI{KabS#HFG4VL$nF&d2AUpaE%EE4(|hG@&(>L=m- z{7;3x=qDMxZdLn!Lp+1U=G$lS+n3Ckm%sG#DaPL%jWRx z?=6k56I>~;o^8y0U@7_M*?AR3W43ugDVpPuGK#0T`j+)d*ej+sfsL+zuCmE!*xo&; zt_N=SKxS|*;sGBj?t3OYo`*>7kHKcX8W8LpgGp{nDx+>txhRk(&NA7mZx>+CNLd)I zx1^Iu;e@kqEm4nsf*(-LuN)&#Ye|{i!%vOHA~F)snP(9)$gmcfKIHB6+Ix7|5MTSd z<))n!$ji%{luTU`bM|n2a0+a7s`-d@|9Zp5k)p$RVV8-oL0eeEi+*oIw19O9hovQp zr@5Z%nUtwpy~nbg*u{H4z+ZCrtMPN&vV*IhK8147W<$3?NiM-#?Y@H2g_b4O z(>SVkNXLqFpGJOc{+6m}!jCuIw#(D@W5{K(oA+ys6=pgTPi zohUV^4I?#x9KkIC+X>^NrLxv<_+AJv?Md5(1p)WRmfkgG4tZ3fB8m7Ku6m5zUH0&~ z*|&TbJOqUaCr~tOuWoXk4{dE#z2WL8?yi5lMym#e=-5tUeJ8t2<*U3#&NAX-=+~xE2+bqA60YSKb zCMa6E9iEs9MmDl>(SntB9Zk+ch?1g0B$8S(&>BAv>Nq{bgD>kI_b$xwOdior32=GPwTgqv;@{#T8llt))dy__%5q#Oz=}&zd zA)>jyfh^#swv=a|E>cvL2uA}|k5azezrGsIh8Ggi=zE@DTVT=QwF{NCn2FD0dtA)x z^0haX6QkS$&(;XV!K}sZh#pJf#ks`xO(z#ROlhs60#E+E&$B#2Z!M6M!>@%@@zU;G9Hv143CH{s1Kto zkgMBkm}Bdm)*~{e)19X$QKCO#D(O!#pd0TF@#xL8n+J=?8P#2Y;w^|Q8Zs&4`XPVY z(M-i_Lca2hAD6a|9Lg|x}XXTItStyu;^*XpxYo{ zXih%v#4UspvJACmIIC8e2(p!xGA;n|pilRzar9JFZB}7Qvh9q0A?I6}C85Wr{7_)X z>$D?UkKi*Re}^${%pFn9=m7zU>=8;m;=Ho7D`!RNX!zxeuhs2r>cq=_z(a@UsL>E4 zwQ4!-`wGy~HR%fDY2a}x`pv>`yH-r~&GO~3>t;<1yB5A-vIW9Sj;=V|kIi8wgmi_a zQsNrSZ4Eqf+ejjID~Q=?A)0pj>{^huyQeoQ+Xkf`dc=KHX8Coqdkql5A?o8qk10~mC606{xse*x5S0{QNpTPl ziu?R<5Cul+JglqC4h}Y!UcJ-fe7@Xzz3Dy~{`*pS@W~ryi@IZWsI%1Ndn=6;^cTqy z74Kk&b1;ke?a^=1W?+YFpQ&sIYY7YH&9_i1RQ+wW7ZF6$02$^>Jjd>q@9f5%nU^Rw zmUT1!N1Zh49uq8yTnk1O+Z1coHLB3|60nlmrsYhQ&M;C{JMBAcJD1E}sxOK5jtgrjO%J0c-FiEdO5HZ($NU&Zd4 z)wo;CgkHVPLWuqxA5?{QAQxhM@}c%?|dNL{#-doAI;;4wpNTg_tN|0%|U+ED&4M>o0RAg1aU&tFi1VD z;}8l0`H$qZR_5-zlWiheQw)6$t7q!_^r%reyF0gD1Lv2ww3TkMf4oS2BuTL{Ew<3Q zGc6s3r<${j5>YrH4%>_e(Sj0z5^TJEgx1O=DzxmVa z$X9Bc7~Pi=&n(*a31;PzuEe{LnD~1u-%n~YB}aLL54wy)AdKVXxc5&|^ER;G5Rz0I zLbM7ena+kTAn7HP^YE8yMxss#4wH1$C*7%ecE(d-62j`7k>h%yP%&M33xO(ltjJ)s z4b#(gJW?m>QiZ=bt7GQu1U*8EDZ94i$jLST%C!eKz-D%^x)dUOQU*PYZ@X6S1U zazcfCtPZ8?2tvzwQ>>y_iS&>alKl%8f`iH(guL918Aes5FL7rU=sfabnX)M;>4$7v zzQwzt@nhW`d}dx#J7@}lX>$~(!hJt7KCRA}nVE<}m_LkyE<9`mRyCbIib8T++0(6O zIGm0iuSpXn`l}hn_YRkaWj!jlMyZzo{V~p4ej?lf#he{GRD{A1NrG=AC7R)dwV|?y z%;%@5WflG-uJUux$KOWEQ_<4()*>TbnMm*z=G;h^K*h}d+Gr=OO#27c|DDr+bimH6 zZ}}Te2%U)*Ez`n3DrR6$yESPO3q=b2;)rgT*}99-*#)U)kwJlS^l52+v!W6G)-R{- zX1@f3Ak3O4q`Y7;^1`=|3>+y<-~BK^$@o%%d$bK`ER3xbc9~}%w9>^-t(wP2)kn*_ zKOqMXnkBU_&sA0h?e3-SWHoNWwi)tC}wL{;-!Hu3{V68@f6a-YDq{tB) zrR7Ek^Q>w)d~Kp^i!u9|OWZVGZq=m*1wQBm_Y|+t7swHgJ`y+70(-!02{Pf2g&P}e zt?q_Nr@f9`b^jv%%fwPa%l8(;z~aKf#>nFF+53ju03u@$Y()jm>9#Do-!OgO#^Un$ z^DtfLSqUHt0m5Cqy2S2tsLDtY-P*b(s~o z$L86A%I-!|%*}7b>PaZaBIZa{u%yxW42YJf`_=6fClCRb#+}oeyFsZeCAzq>7!dk* zL67WKZbX=0kPJGjWZhAB2!^^9eBFH9$NmMY(yy#q4epsQSRAOpn4HQ^X{BmrKCsCN*M;Z|S3YasPz>dx>mW-l%r)J)VzAZfh>sEwc#_E4 zAx?F9!3bT3(#V@BSc+|`3w|q`keA^2978dsBT9Ubk#x*Q>gUAiJr;)Q@VnVC_{Wn} zwuj%|vq{F2RrSfbvRYCc+4?ZG&{}<n4N>-K3AhoYyq|7}>yZ!NBX9ZhRX|6-0--IE3D)Jy$ ze_%xtI*%L-y1qNOvR9DE=LQXA-c-e|DHbP2`3dDnTK^9fzdEc#VgCpEHZx@Dx8f~se^*ulXn$hx(J(l zH|VdbcE*o%8j_pzcu$!@Cpz;^nCt=d+psbmeNUQkM&2< zvHf8Q91QgR+3c_S-k!haFiGU$_2kB%{t$a^MyGq=?Wt~P8ym~f-!D!dmfON(pNk(T zDU&R`yrlnX%E48G^`EBf{ts+QAzLko1B9<-&PV&?Zn6-Te3;^1mT!>QbP6p?)&%$1 zjE>sIQB`lEiOg6>= z)kn~vxutfk4~U~YMwSRh=M-LNdZ8@w%K|a}aCH!yX?KL&R>2hlx6JEi*q6p|2yMN& z<&-P&yKpyh4alzjzLs$-snnV}lKm0PiVM5(WAx)CPFJ0iv9&hkWDS60aku=q=Kps4 z>?R)Lc}o$BAt#AhAPekeT&B%y2C%VU$++49VNI=mon9ag>OdALGfn}nwZr!W9MWHU zZ4=62ozZLVF1**G9Opxc9&Wv6RzdzoINnWc8-fN3WStf)%1gRhAkR76Zb{Bx8v)|3 zl|@g~*Fu4z+tv>)aq{gxem<35xmH^;v<^O!3qi-)qBPZWR|c;HrI|vuRRJ`X-D*FN zvxwR$a~>g}uZPKv<7HQ4`RuToC0bl<=bO@yrzeoF53g+lY;w1f8tx?d1uAT|kaD3^ zhD`))4qI+7A+@RTOu7#hfQr|(6iYkHf)@0^#Gp-yPV9MgW}RsQ1u_D@>^nawz%Tm= zDm0-vv(o=7S2SpL$oL%mDJdynEre~sOYr~?B69Z_-$suMxE+mxFS1&{anr_DRbaHFg%3>*w1E0DQn5Np12 z@n_uB#NXt(_~)xXx&;*KAoSgBAt`$s22p9ABu;sO+>i^|lPkc@*V2bE&XJZ%TQ1^i zR{~N>`Ti4{HfA!!d+d_W)?UxjAAQ23ivZE$b5f}V`P6va#P61 zp}wjpAPbK3Bt_K<<@b^0)N?VePWD0qwpxa0>Q5QO14iv+$lrNMR9FhXzIK!={3_c#1(O^ZC%l&Y5nIZ$ClJ)}jXZTly$W`ot&fK^eRdgm`7*anwZ zSag&n3{%NKG{&G4X??y%HudUD^-~DGM5+@NeF_n)tN?Gag!Jcx-@6Smb!`8O7m2Kw z>Yz-eMLb`*_>(6zcI#QO$|DQO54FpuSNs3(Y3jY(GgRY%FbgGc>N-BBY;(Bv>E@f- zk1%6ULF*#rnJLk|@k;>gEEoD!Gq)N~^T;hO1&)AFi4n_n#LQj7n;;lYk_Rk=15Ow@)&=+R4{Zhk3d0}8*h)P5@M&y9 z^4!6)o_|CY=fZG%mJp4Ejn6J-b{w181i!hrcAcyGil_5fuJys;VZW2)4{soJ+^9|A z+w`m-CkrTykCiVL5mv`-)Ra?OvASmW@{xd=ER4tOqc&zHZ6xf01*`uZfw1j^!-xA* zm@7^Y)D@j^8@#_eGGZVzq&jw>j%o1X(rxLS;>uHl}ITEw1E4Zl~`AuwH&De$v7 zF6avua*TUU895}1-O7YJv>UMq)P*wrH1CykSs$+{`8i*d{-8H`gU>i&gT^LMVV%%L zPX-l1+O1qo%0>BSt>8qTk^5LLI1(kxBn1d1CdpHV5K-c)nMSR@)kC^o9bDAceZS&ed~zEH`@` z4ZsM;5!ZK}EpdxTyoH5by)tQmE3y3UwP+*gUN_RiTSyUij7R6%U$G_TEmuc3)puCb zGE=R&L+(m8#(fVB?U%hR_p7Al@_6MS*SVchSmF|8z zkShLgm*8>1)b3VHs&iE*TR!Pw5?aT0iSz3LH(5F*c)6pt7|C+K%Q^d7C3N)zD@Gp7jYqA zm5J-gxN}dUe>Caluih#}mK%hypjFaLW;m2rvE@zO8-YkFqX7^>0?RD*Ky9}jq02JJ zv|KETqzD;j0%v{l_TDi$fHUNqLc(Iu`OgvU`)cB*X0f4Z^~ z5^R&4bn{CWfA+XVkBe7g;ddEGQ#pNMje5s~xMyQ_4m)_d<|m3KeRLO%^EZW@Tda#7 z0KV&?ArrWgtL<`9IEi$&vsHpMHHnm97yR)eK_16<4ViF8B9`7TvaHKl^;4E-o+lbF z18;7L=c-22IFAGCv^-o2_NR%%Y(pKES*EaA?0>wkiKgH8-xqRUT`KH92!cHF?sO6T zOz*E%4xoxaC?s1kW@Sp+)EE1(V@$V~HcwMx&L|Io!osg3T5foe=Zx4$#!P`w>26Wh z5o-NEJg=Yj84I5p7*N5)D^$fDv{baLTkpyJ2C^Z?-VaLIkCSbmAML`Z4M@5CU!tO2 zSW4i_j54miHU4lky#j$!Y{`pdQ&#(Nx}8=$L@JJ~Ky#9i*Hs}Q@T*P%0m8yBD#x`` zwjH5}p!QqDfZgFYnY&~TB;kdm`fbz=FMol2@81p5`WkOvt`(NlYI>#D-m0oPso<&B~noQW`1K$ zn#}}D=q&3c4l5j=XI{xbOjd`!@E_OCx>BVu`vGSgYMj?@a9TH>WYAXNY2S{Lf6H08 z5IFyCmEdqb`QX0g<@ckB%uapBOp9Pm7D_iyx2}cAJ_|G44EYiO_iw1Tk-4(yyRcT=riZ?^XLRmXR3Kuo|i!AFV>n-|$Yzl*DC>%0xQa_#YYn6R^S zvMD{lacZ}{;s6%`k1j|2vVuSZ*YUMWBKQgbWXJ_SHyI9+_@-s7w77+&Y9AhF5t&o8 zrH~zt)IfY#;BO?fcmVvcoRy<9KSv6e#>z_R{-Q?oxeZgNO7<z-S+b!{xV$l_D5W@x!FufK_4dSrl@3N{N1WeQp3Q#$qa-6M&Nz}JK-X9M z-7!aw*cnXF!P*^N>&PRu zvO&7}zj)GodQ;(MxM{P;oaHTXjAWU-I9^;a=-jt>r=rq8n6;`ND4E|`U#j`_p5iOw zo-b#>FSs48h`L6@Z@-IsQEHKwq(;NC)BA4NUXP^$T$%Qr^*dVF-FNrt9()D0ldcN5 zwKN37E>3kmosa`JvoA37yOz{o(1P(~oLkkw*;&kmvIBw5wR+Y85okf-ryL6Ng3tqx zmd@cRyyao9r1ttpS9^a5OVt@rS6f#ZLwK*_t~&n#(rxhLK&wr^`%~;wtbzQyi2_5j zao~j`6)(Bjvnz?Xvo9i=_>hKYI9gq0@H3ozA$B?m&B)FgTl)sJb^Ad$J)Ow8&=ocD z7P$y|L3G>$IjGxy<_aTVWPT8kQ0gYo`B|_ev^<{VsW+=4fjnZqcEz;_f_^*JZR^j~ z%ge_66qdw(KceUR&<|d8ocRuY!uxgG??J!VW>YZSNysniQ6d5_C`_Mc83%lKx~C)> z!C`jWvejECY1>3NI`wR%ue(AKaxQTmguFwok5xpG)l)<`gu09s)h>G7>!4IWI`U_;G>PUxtK!s$bNlK@0K(wujQw+RsL zT6X_X04dMS&Khq61;9G5*EkjQ(y!{m@)ebQlC)lW}7hE`_7cUn%j2385c=#Z~C>`AaETy=F5AR*I9 zrl#z9r5_Ng!Dz#n?cZJB-(p$3<{M0(pqv8aU-_bYR{bCQ_9;r;epFTJ1~vcl^82I9 zKWXE*n&+1EFn*4$qk~_%RO)=;-1)H|Mu@i{k~9pe%D1108YrZu!Q6b2`d;_#5N_Ad zPyUpOAdKzyB^S79@)(@JH8%4(bcvQOV(B7mtc5|L{rK<+%h5gm`ObEs7ksIgcOZ>5 zFKa3}JJh%HQ3Ed5=Xn98k!?o9aSH7aeK$821xJ4w&m1?cFRvg>8-13qfe-{0z)<>{ z=!b!J4byf;f(0TVSmaV$@m!Ll;7V@xr!Sq^O7@TzlyT@3|>9 z902Kue>C~gBh0evewssDT2w&`@FeS7f_fwz8mzLqWoGUZ+Lp9I?_^p~fzJggnbzIv^%6{)k)^h1B%YrSSx*c=U~6fxJ%(R?d+0PSUR;91#;XHv*v zz*gCUUuYal6ek5=9pwWV0LQx{Z={#(*KQ&C69P+`;%_F7D0pnLHx~s zT&RQL1raH8@B#(16IJ#n7CA1he;jeNZcA+hC=;?00<(;~g(Lp72 znNAF{14s1A_Z2JSPrptK=Vh{nXxuBM@*8nnj6ed>0EcdFcT_C=6{#p7DrM25K=#2A zm%qe6MQ18XkL@CJ-14JJEPxN%&+L#dINGjESR_w0)@fBn%s?o1s@(_g1?Aa_v=@El zW#6tENnc(5^wOZSs?>*GhVZ zVy_^St-;Lg!=jPWZM3l;eqH`@>-jY%FMb^XU*HNljB7l%ne7kSwnimdqhMVxQWl<^ z=lcmlA>y8Y5MKgu$p;6ZHbpa^$qdhg#`-({aCUKYwEE75K`kUPFNz`vpccOa2g|dcDG=n>rIhVIhw?2BS zz5$=OJI_8lC=lHE?xoer^FuvACc`fI)zy}`g>y}uX<>Ro0@nt-pN`fBD{tW+YyhvYnVKv3M2yvc zpN4rLrjSVf_R_UL&rHLJ*9L7h)wGSDQb+Hxu>j>@X7kNwnzloO&fMxsY1%l2IP=R} zP0B*7tcrus6duBV`t;CfGz0&yf&Oh>t|Th@mrgi^luKD793eiKXA3Sa)0m~_^H%+~ z8sm1r%Lrlies!-#&?XN%4($w*ytd6YySqY2kXX-(M@eki ztJ$i8|FDJgYeuBc0l~*im(ySF?2y0%(qq#2ssANsx^9{I@iTkmmM)ies-(s@%qfdo z3dsC*sw-VS-a48S+;~&iwu3FPtH+YulStkSjky<2YGTOOE64dv= zw~y37kwNZ1w_dxPy^a97ey=;GMLY+F&vfuK##mz(IDFCKMek=wRMx`vymB5L5) z{q&_PwvuJ zwkvn`{UBGINx%->gzr_|J5=R{l{C1xt4kpTtYX58z^e{hAV)xuLIO3ALuxtLi$#2q z{y`@y$L9KMtoW&?!`tCqixhYTz9R~EyUS4+Cwby&o(?k%|M~ik5Idyc@5#$_5Q#{wkIoqbWNYa72Qg> zv=$&dopT3q%YR>9r9C%fqui1jN5BWo^9zG74>BI*>p&rt>z5#vk{Z%K>0<_IjV=E^;R_td=lr0?ft$#IM$dl>ew~N2y^_y zeN2a3bOW)UuQhpx2~s@|3!BL=bN;pa2rlD4vi6O7ZKVO+7k_pr1rNxH(h|J_*$g-0 zp7uz7c?eKP}dA$oCLP;>*7`8Z_F0d~Bp0 zdAzLa^b>z}e=S8N5_moi?y@?vbJ-5Yhg~Nw;dap=3Wep4ofmFYP0;zJ#?fW%j=ROw zp)4eEc$#glziT_L09lg6@G~uc2Nx$;KwL5pU#$hRxBfiRNpSM;mP|0ugfa|U$Aoe~ zj-x!?q`R8Elt8vDerjNl*i4$Q?!bu@3)Y-E!X!{u;dEHS)^rsSfL~*LFdD|k7^5Hg zlbf{!GR{rIZ3+Vw>|W5OA#L+Eo^1F2lZInKgHR42U72}D!bbKA*9R3lP1WN0F-V4V zbCduU!hkH;yf8U+Fx$=10@9wWM#?~t0!sUR*cRFLl(=U-lG5GfSkZB`G!!m*iE*6i zFR7a?9lN6LxYvn~i|8@6GQ(F629Ry#dsVSuEBn5->#T+XKiGCO;dz8ddj8w^EifS9OE~}U@iN`vlD(7&{x$qoK29N)XLlIe^yVGmvNn5SRB_h zg8r!y&s1#U6_f(<|Dx@POp#gBJb~6m=bM&Jc#*J7ND}L*fK6pMWtOji zi!sDj!1*rQn=;i+IrYSsDvb9xg+ukY(jzXqLtH)SC6Qj9Ln5tEM*jZx*+fAt*18%458-Ldh&<`#;O&A|vW^ zBlE9^l0b9GMSm53Zs4_MmL&FGZHU{6b6e-9dQrd`Wt-T|K!(e7K*~h*_AC_RJnT|< zL(+GI(qNbGgb#Kp-voVDUy1sLx&dFyM3m#wWHw7W*rU!O$_soJB)+JSYap`DE-e3EL9GW+$_rkxe~941hc$Q<9_n&uRr zh?LUe#B=!XG)Pi#v1qb5H)ovOWGtbgXdr3GIpfU!VuUuvC%_PajQD~su2UXJNpq#Q z2D#y%Y|}sV$;Mc{t~DS)pDOq)Tf znbWjp_P|dB^)N>>H*u{0<^^md%r@djI>L0S^?rA-Qwqb6P;ZT^H&hEmnB0LKD=1D1 zIpx4Ui_aCgI6&HF0tK-y;qbGpb?pRO|L|!MuD$c4tH(}*bSq8=XRe_5M~MA9 zY+<;R-v-^Pwt6t9zBb@TZG~Qc2@5HIZ5H z%ku>Rb?Oq_e(rc#eB5#hCN}sjN^}0p;>)nfND|aG_tZwLz-#oK+fh~xJt{C}&9Jr; zrYgYecb3Gm^6M}#gVx4>(bt?5Q_2so{bIqPpMB@I3k27vR*?=&cvkcHK@Ps}I%fwc z2iI!g4jF5tQg;OZk_4sK@z6GrPuS9y@Xd=ilF!>oCnH^l664lWu@@gCe3c?rG$Lbt z+Lu)C@|JW_ZiSZC|3?Ro?@IPs)6uIT4Po2v4-54EaNOMmqxS9qT15*<>ygrH&TR&@;u_9Kk9uWFZ=hPkkKt3Z_vU_+9QEOX|aA!Si;C zhAc6w5}yu9P!851a!@L0F8r%SQL9w@gUQM@p!R6o(jM)wko&Z<7=^z%?N_y0=d*cl zymsNvW$ZD^=Wx+oaafsE&r8v_7?G+Se!YB<>o2Zb*(f|vsP_=LA7%#$VAV5N#hZ(8 z``oj8blCP(DH|T(-&-=@KS6hN{1v4T*MiORTqgGZd!%R&?E zu6NqMOztPy9s-lXy9rEYuC_bcU*d~a6pd#hU(aXy)| zp4avtidgi#w6wm-4*_Ep_F}Hniv**KoG$~F(z_0iys|19lD22eQ6~oWlw0{7Z+540 zXKk@_FA}wP1Q8AgTeL2Es?mVT(>c*yeQ8r17$B!;q-3Gcg-_sW?$bd1)$(g*DY6rAr)e=d^6CyX3f6hdV|ZasZq@qW_`P&$ope~bu^Al zqrO5%e(SY8?Vyt#TkqcExf%VZNJ*;xa}vO=m4j`w^J{KA8BnexDWz{Zbs#$sHB?*v z1$4hQ8cB)ZgB>m=0%l5x1;zosrbwYtmCK!lHk=&m=Xv=%MlAv#S?=7l#3 zlX&^6GUiBjztfmF|D5=3L?~w6$806zV&`f&@}eyrN%<=<&S{sPh zfF%TP6!NnJ&gUiXJj=|4OZt2BzakFTD$?PJzcgqCSn41Lhj%W4>n#M;RDRSKW*UvTP3fv%Gz&q}@ZU zjSr8(q0Mi^PI{*@iH+{3!LNTZRr#xq_EGJsOE_Y$ZqE9`{t(uYb^68#{Yiznd%O$WjHqy^&HKFP@fd z^9e9@cUg&b_On}{wuRQ(fO)yZFnPb1gz%dYlKiZ-Pv248gRSp#`l+wlDMaO)whY=! z^m~q6zU_ZtOqw4whAh2q`)zUc*a&t4gHP>RRh^HonP)gM7PLUSuh!mJlSo}!#Lk*g zqmPJ!MDved+FL8r$A*ZdrmsA*O7>w1x?6-xS|pv2c+X$V}BYj>~A0C-RYd{;}F6x(O;NGt2MC>wSMA40FYd(c~3a&N?L7T zTE10QMyl$C@SN|xIjcD+5kA~wS^GCS?X{3Mvb~N*iCQDG5nEDQooFoLaoF(($7DjI zsv5Qmq%^3J(J)}Zc1H(1h+%e@m0^IDrJto*EpdxNbnM=+S7Wj8#oRmWAU6))naqb{ z8ol7aTzaASaEQ1=?dE~bWR}l#ZTe_GE^TUQ3<)DP(LJNmu=YT|M+}d>#ZQJl)f7Ju z^6!=0miP!Ddm9Fm($l7*o0EZ`OfAjflJdG`j=pQ0mXgWBoMUUM@L-WKS*i~g`@hpN zk82LgzhP~KuxyUWvZNaG+(i29ytx$x+CXuuuEYNretY0&*+#94FHF+hIE-R+wUTGN z()h2i=)W_eI+J$O|B?&f|L!2sTCoueVoG_{h;e8`3yIVN)xp_N!x2&;?tOgP{4ew0 zQpIUsvGGqn;y1>$%Jw=+74e)edo|j7@?j9%j!&mK5t|rpTJ<(0D;i2;omAVPQFWDu ze`hgg{h_)ti=9ug^!sy{M+AciB0Vdq#kao_W~wgN4<|fGfdEc9Vh)7_i{h0fM=wY7gK#{cc%cNOUZ|wLb7K13ULk= zFvuy^Y^=Y|B%~BdgE2%;zl(w21fmqO?e!QLX8wv=1ua(1?bc%oqke23JV)`?Bkg~U zaQ=OP)awUwL)Ir)vR*Puc3v;tb(}N|*EreHF#dpYn;g<6Av`L2TJ7@8r?Yt?sWajx z2U24gA7?YaKOI#Vh}#__nlJ|7Lh?om63o2tDknhtNH?M1${*$T`=3;|OMG)e7f8VB z;8SBOXDhQ*PkO1cbGPD;a)DL-Z#e<}eIEZ;HRFG$nQEGlJ4$#OA|ZfG)W)6t#`2;p z`QfCn|S8Wx}staH)@?Z@6QVm!saMmj&&Bp?ig?63Y)u@!>^xg4!%az z`_R7cBr|$rVi;c-NIjPQ*j(CYPa9fQunkrq2}|4YyR|l$`~aE65f=k7s?P>Mv#3|O z1;z!4rZ!H)a*`XWpjo2~{=zQPuSS&&`1k-fIx6xknG4jQk(xGc_c=uYazo!G|uFc!fM@SVxhMa00 zaG&zCLSw>;15B1(MBbw|@0B_K{5cr`Q)ZAVkY=QG>ytoXL?vY;n=EQ;Epk#=sxiZ6sO=Sv6sO zBRF8LZjcwDxdSN%an2`hqi(s!ish5XBr-(LM zvjKw|V;Xb@=-amp@+o9%N*0=3YB#0QI>t8e=bIosE4P3@#1y06 z^2^gt2E7U(wC^%tblUOZl;44~(Vv|FiqoIvZSdqtq z?dAvb1g5&C=83J+Mf~8s8snHP%l1dOR^Y4){0GuLD7j2Uh-7>-?or*!Ypj}h$mBL_ zT+q8Tj!JM`k|V#u=bksn#a)T0*gWQsTt6C?bFKvx*@HbKxrw?JU+DCaX+gG@_J@vNLZZpBD?3Cx1$>?fmyElnHEU5+(f}ak!i2(9@7s zS@AU1Nyr7Vf0a{ny%fEnCg;C#T-)(cuKk8Ecm;HzEVcWhMuixX8~2x%A)jK=AR)~Xl3!QSMk86I1coeAw4&2icSz%d+$2JSGB?vKqla=fQn z|F=ud|L79pnHV`j&CfEipEaMHD~uj#r^ePx)aOJyJwBg+5|vI`dt-l9dgWDjQdo+? zxJ{U-7_?4lB}0Y&y0+g9`pcn*=7=z21%!E?!bJZ7<+?AY&IgTs=t4_z2cNeqDf=8K z!+H?G?;+qIjAR^o=o97Zaz9t=tiaQ>GCHRUCb2?jc@=4KMb$@|2j%k?BGn~YV-g2A z{_-z*N7s*-r9*D}%GE!`M2o)m8V_CgE0K_=Wzf$k}0~?(DFPv%ZHh8c#U% z|8np5U+xt^{+plqH196$rd7&O#vza7CbbUUi=a#vn{*`+UPJ=`$YHZ38wc`R5L}F& zM|=9E5TZama|7C{S-q^yY?)-&+N$o;@ul}+iu_IZ7_@80(3W`DR&b2tQQ!B4l4gAQUO8t3aOx2d)Ca^B#{9oXx_)o7kloVh&4cEd$lermFmrxetX8) zClx{BodQlnoZku=A!G@|vpW!Gg|2tea0LvnPmf9njrx6c&&K+!D)i23&rlD>ZxWO) zcV+rux^!Rp6+&dFKaE#{Pz>3Ks18s&y!$~O?Ku}t@X^)WR2-Q0{0A_7{ko=fv@ley zyk@SHj;cb^9@cTV!{rk2Fofbr;xL4b(!%A1k(N(+K7@Ut!`BRepX<(ynata5C)Q0Q zGWh6AM=hpE*Rm3F5gSWECFygPuqN3O_*d^ybIMySB9^q8N!qYYzj#1W3Rfs-KQAV{92N10A$#{HD*pIE^0a~ zr=jO=nI@Q{|5atbCxyzyeK)UkI+wX5F=}*GJbOo8O)FcIoyR)DHSXt@Fj0)u*JXLN z#0hQ+Rs8P^s)+g&f%gI;cZ~M!aoCK50i&yy@eq;ry7{^}p`eB>)rWAyfAi#+8-Rl& zkDY{Z!XY~xXxiadcv7|(+}&SJ$rSD(`;cRytL_7r=6dt7)I#0;3G>G5lPvsjIWfuI z3{Z8c#*h5`R8Ef~W|>=peA0)(Qq;v*)OQ$VbDkRB-eMoCjn*g2QW;vMF-nd~&lAu6 zS8^7?=P$`_MCNp0>&H?S+2sHrww8iH9N4r7KA(EbDS0W&>zMv%Gi5XC9f)&%+q}@L4SW0AY_)pFy-4CN{-L7B1h@wbB-AOr$HQfC_*T<3D~| zwF~gLQyjKWQjAn(b3e`u<^EQlsoID&a~(SQ?Ice_3PJF z>qlOK2Lh_X(!04d*(%4=-k23Iv6|##(j!x{q!kipr8%Vv|FuDi2W9~yqgDbZ+tNGvsz#ijjH>|eLGT)vZK6heNpMh5d;MzS84+THgKbXB^zXZ zN(G@cvdQxLp3h}r3-p4Y%FMGh{^!#Wu-L(4JVzWzkqv(wntdOhKUB8k9YobU`qA1e zMt!eZ8Qr%&YeHFl)uH<8>9S-mIQLLv2Zx%+5mg+D*N7WC&Q5A_1mAC{1wyDoxr20O zDnRfR<>I{Fpd?x}@;<^p`rHMd_FRHW3E^%PT(u>i0MS*~R-SWnM{n)EE3jMVKyp`H zUeAnnd|CE>f0&<)9i8xj4j8LPOnzT9`Y(D8p}5xX_3*BE=xdRMcUWKX+ulv0QjwI= zM|_oKdr<1+J`<*F2wiw^PK6q4J8eJJq)|sA230VlN_3_GHBD(VF3tGWcWoE{WVDNd$^RHcv)Fu-|8 z?C_YBFj5qmWRRFqIViuCV`3EnWMRHJA95CBt^-hykr4?1`P8Vod+SyT%X2VS1z9h| z)>T9y*PTda;(N&vcEjQL68G1)lqk3iMrJL;zU8Zz=N^L6GKTMPkXa{z6_`%C6wd1Z zfstm_hAo{S%f*$VfD>daI1i8ZS=zAyH6;Dm`#r=F@3i)Q+8{KZ$PZrV4IU+3Mz5n& z48XBUXF+XaC-U9lU8~#z9~D5YGk>w#QWC5;pF{jYGrFRhx}%3{XKpf-vFR8YxESrR zw4e3suTeaqWTOv z)5d>y82xDwAZ-@S5hHAkh4Akv_m03xebHS50@Q*R9EfWa_AL*Rf2?5mK3e2RUwsc` zWJJ++&plO5Y`mVBps|7bb@4iThI^hBh|12!XkT?$n|DKIP?~>yq+vcSxzKdvZG6Cs zyfmA7E*7OvshD&(T{2u>EDcoS-8pc@FW$b@Pw%furQOgW^4!P7tmck+&LK8ZOuIdg zi(?Elr1RgSq4K-y+E4;3x9M8!2Uh$%^e9e@k7d{NVy(XtrrxycRT~eW+U z*4HT~_d}@Gcj~YQ-UR(NKSL@p$?ykd4Bj-*mRt{7WzBZ2f#T32;;4AUj5-M(Yu$;E zhGB=^(Mi>RdmrOV{|oZPUFp`XY&`?hg}D#&x&jbK^hx`1}tD5zJafj|zW*S5O$eSr~|r>5bm6e9|ppiN!>s zruNQ}-AcH1-a~&ICshmUFcR==mxF>=$FiA|d(%RnuZwYcVydzSd-vffKAio)UmVDX z&vw-r_R9e0&o2Og?Q#ml*bmdmc>UjB#BTIe@|9(48u1jD#mXW0l)NO>G!i&Uh~{I% zwpW?F3BM>dM>`eTHzF4;!ucc^SRzJJJOaL72U{nn?%2D$127`XX%byW#Pq1Thx{&! zrseh#_EQzXB;P4$EG;caBg;bF9F0|f?}~Bh{0mii)5NlANVd68MRdY5YN}~uu#ty8 zO0h4nZdWb9`XZiaEKjsW7{@VYr2Rna328f%B0olbW2k*qenn)`R@FEmdp_RcEjG;1 zxaZNVmR{e`KQn`y$AZS8jMMVpFd{vjKTbHZJEyaBKSk>5$}9M-Vj%pXEWQlQ#Y(~> z0XzZ+i=)yVud_4Ui$yP~eB9P1DZlB%fXl@PH65F;I8>z}U#=o3+bB0}b-?j^K6miC z1s)s{sC;Gg64D5ahxDc7_T5kCmz~tEOD)BFA(P^0Of?al@;Rp+21G%Dq+f5ZxEln* z4Sp5>)ER987D_v&JjgjY4qP=F$*dsoL$? zMDzAv!UbOW(y5gE?w-!!_h>aS$#u1}y5m#;vjM~*av%~eaKB2)JD6L&p)hfo{L7@< zLG|o*?=0DY7+dWpj?gYt>_7KjjEisbMEu&!{dHsp;HsS+?H>G`cnf63#4QBV?{I}f zfJ4JE#?a{-fi1^M0<`O|*-pk)`Hsjd|kv-x>~l>O;!3L10(qK z%7CL--b_|1$4D}6=Nw<)FyB&+ZDeBg4DE=bJQ=BO1=jM0)-t@(k%-Eww4gx*G;k0iC#on(gqK7q$U zwx@^C&M_zW#&wEu#uB)xVZKIQwjf=`iBq(I@dam-ncFB~-VktXIz!FAsYqwgc4T>= zdqdVMj)H3u9Uny;D|V4W0UI!H)Y^R-jLD${OosET(t)?5On~+1U?+SF+9b7-$yIx= z7o1Wx9cF3M-Ncztodf`%o-!su<2Hky+1xwIl~G_SzgsUkTqHROwSPU2640cz8J^dO zwxC-U7)ddLuo0k~+il{1=1&_*g-bv2D!lhyBW3lNxBC6;4UHO(77Q{`q#ADaO`_FuYleZm3i$DF?5S+MOC5z7!Wy80!TSJ#jZ00Pc=!A03LLVY_i43Bk1PXzy8eUv?WpP< zT^_lDdDUAh5wRy)HFJeLmb%*?!W@+mhZHHL;obc3XMBB;b*`F5jiKxh3#YOAO$7td zpZh*1!erS@4DSVjV!PMeTf;E%P;!4mi|jv4G_M-RzP*=mVQ@Qr!B-@rnLl9QY(M)ufc>4bK(~;NhuI9! zy$%|L>eBfX*E_i3sG2T7>`}!C+uvg?X`49nBX65^2Xd)A^iMd~4h50ChalAFrVL(J z9O*BMP}94KOXPIf*TXSiFeRHQ<8s#sXz!u*N=r+;01~u``TJwB(W8{Np!5Jj{&%={ zXw!-@5bt&MfKq_$?(rJvf}Q)}IgcLCner3yNe${H>}^a-`

qPkRbDP4={#%1I|6I-73g)m%*jFQ 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
N6@IG4f1&|rt<+0ar(q6ysQGJxP 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

uy2wGRU>8IX^qU?s%49e9@~q@w(7A)rD_fN9)J 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

r53QlOI$VEm43T%<(bfdlduc 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 z zh-0p}rot7qAhens<-ubcc!M9t{kvvjrr<19VeFIS>n3;N&dC2{W;A&7UZ;@wCzKWF z|0GV{CN}(8CTiZBH$QyYyXM8SLHrWJK|j4mGZYLDJ=4N$His5j&p?qP`fc|@&VAZKXj;x&Y8$ocZFz59x_(*MmD_4Z7JINds3D7r zO!IZSSbv<#&n&kG5!c`fRP@i?Z-faQ_tay{HAoe8FYWE@b0tes4n5J;EC!W(OvQ;P zCo7sy%w@-2KVFZcJ)h6uRb_yCV1b(6ib#_nYr-pV_RN7fAEbLzuQHbDw$YPR<5ayB zW{~@4mItrkB+hhPhma|SX(^WUNjPMn98Tm0x|_mF0g-kwir1ICOtgITYDgyXR{`pX~dZzlol_TfNGN;)L(qp_M0W>YCOIJdPR+} zIISnlZIZCaMhTM2GW#MNzTR_@+Cltjr39*duuaKl$jcwz?EQ}Q&TZXA(P1GNk5HK- z=Yz2a=3;gcD{U!{^fuh@nQ-@lVF`zGxUlFVy!*0|hVb*&={HK`v}qrTcT~|L<7hb{ zO6D*?Y5pQ_aV$)bbK}xQkRox69tQS~%RJ0C=KB|?8I=`{ZyiJJOm(|SA=H>IdAiRl zo*T_;bslsclO{$FcdTE1p#YIgc~Pok#dBMXsl7)b%YL;(9s0AO{s?1EJ+8bMhiU~7 z2OTXVLlS5;xKj;#A9;y4ouz|b#>0BA2?Z$@mV}o*ia+6$W&$y}slX(0(Y@WTyCe5c zQHd`h*BvHqYSf(-C(EltTN_c>@s38=o9DT+$}yhpu*oGM?>Lxpg5pP?A5Nco8Ltp5 zNqZS5x50)?t39j32kqAJVmM-kma!+$G!7aBuG{lzM&L5pa0j(aF4zt(7L%`1pc7`? z7(TE?fP_-Wj(V=S)1P07e|D?0U=N|ds6fTBA2j

|Kh`ruQwX4UBxC^#@-PyL4`` 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

=`PYX$}zhYbepX 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

=uqIS0SiUR(t)P7`$RMf384 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 z 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 z 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

KNuAG5zo% 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%0An6^JYQy4709;BBTMo1wca9I!F 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 VdzM|=yX?n0%i6-;yu#E2`!`eGH{1XK diff --git a/media/logo.png b/media/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..96855a37c5a4354931e1982e0e4d76cb40f40b28 GIT binary patch literal 1287379 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

0K_8)O>RtUWHRZXwD9+-;^*x#uGL6M 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ð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%0D4(G+_lDu%ma>sbHX;;DX~`glDZj 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%0DyUB0ECgjivJ0<0|?0E6ma zDfkb%Oz)?FpE?7OgMp~Wx&{OQMD%ZF1q7VMpx+@4Bp5*1eo-cnaJhhN;giO&lLS`K z#!@3j+*yt5TF2par=Nhg?7R(WLI8h)N*YBWm^@ESC zM%ocRu=zE(blWRXIn+W@TZLXPgxzT49!%q%KmQbZ!%Zx-s6`-YHwzKGJn^9BLytc6 zH^>tpTXVW`(x2c;N3jBA^S;Z)b)N?~oV8;Bz(C)jvYZI_UG^^Q*-?QVIasVbg>&z_ z0hMMSHZg}Jm_l<`jUvofJp`==7S6c{GgE7@dix|k|HO58_uhNZa9ffAz-9GXFjopD z3%gU3d(gdc-PbNGu*@A@{*EkuT)sE+Otb(8D1%50rr3^AkE__^2l&+M{uFB$Jvg%= zDt3g(PT@>Cxar{I_|#q3VA|=SWzrc#f{`-wFT0JX^Dx^WG&XFE9(6p60n!;t0T~I7(w?$N7a;86@VEspXyOfzg!s&9mjSIISVz_I zt*36rCzhUsv3U&)Q2Cy0>lt@2Z}c&L*usq)PQtm3VZ83{-S~EG9;=+)2>d3`r(hxp z<$r^Md0w}a;isDa3Op)5q;*MRf3RRV6a-SX-=Uvia)|)71f-UG79yvDzFS93fxqh@ zCUBtYi4pHx1nw2VmhXV`t&7MlJx%y*TZWTQOrD#861S96fu`GCG>|tL>BESH^M8%#ZQ0LqEchYp~FXgiz)D$Q$DM(=xZqXr|(Qx<8aTN4lVh%$j6K zzsg>)&{zs50Xm+E#*&Tew_FS>7=~?z+|O040~uiQ^Ais>(;1+HifC^EWzJKk-C4E= zqgIEtb%O)|s1}d1{^GDAgH6jIFsc}ieFW=Uc=^&s+!-0D`U@aQ1QH&Kh*c0!reAab zF#Ldn{5YiSJ%svy*n>gY{J00u??IHXzG(ZG^bvxA9e1-DsvAE5~&Gd_;!Q^V?Evy z9*2KF>QuDi6ld>#6c5+$KqHvuxStpRVyjSwm6U#I9*bEok(E-EyunUxmibjnBoh}D zk4D>yMG{<=g331KGLqc?v0>EXyFw(P9kAsT*r05n77Pyt0CZAJZh!P+T--wzk(T`M zj8>6dNaGFVdo8zY%de&=@Z}a;>YD}x^u;HszOfug>*H2j4!Pg74Xy%Y{<_R*6#5dJ z9i~i3lp?YWM2?9@tBVhAxCHOnd7E$zJwmX(dsOfdFj*`*JYyQQIFJl16 z2a&N8q$i*MEG}r79z3tf!KJXuieV+oV@UPhUqt9HN^_&A)n)4OV2e};P@aL|T^aHi z@L|mc7j_+AB&VJ0?51ov%I8dMwS;Q0hek!Ui602t!itdzY*t?n(AvBn-rgE+nK%Qd z8z*C_HUj(kHN533@5kQbw~6v1Vh^UI5Kr{@HkN7?m^&iee)^d#(tpm+cVPE$8xzJp z`0=nPfg;9WYQwT<-xJtEdIQwL)Z(^%74}?g4)hbs^4ru}n1lg|ZAkU|)b_86#PJZ3 zCsT2`p1)#HU3rA2;bOIIVM}V`n5u_k8sj(_z|oci`*0T{X$4rE@Ou3$fuw-!U2q)U;xC^vq&fjAOQdpS5z7RRBEA)Dlz{w zzXU1?U@DRncw;2RZ|%PeKMQxlvuWPT3;<2DL|e~dW#s3**iZUtDLOjk?~?vVb~cv* z05RU2o-WTU$&jIPA`+&hvZNWq#w)NMpFQb(OdX6dvw8uqzw^vcU`_@sdw@5CvJmVX~Bx9vq{QjoRODcI!STW+F!vZMlOJ3?Za7jeTM-6>hMBq zOEHB6AflB3Xy9tj0MPZ7)XG0ISUcP&OIRGF_7M_6!pm59C zsZVULasUQyLK6SWlXFkr^&9~342~|G*CbKoWB`D2LNt^y zKhCs&<%OWq70fBU%3vtkp3t_|aWQ>!l>e>0Pku+yzb*#>0=UqrKH0Ms2$^IoD1bu- z(9%6+CmeMos)6+1r7ZEjsJvxdjTVkiGH_&MqAF+#rutcE88v)AxF7G``CSax z9IkVs!+`5xRnV``lI|^J{*%^vX;~p*ⅆ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 h(Pru;x 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%0A|0UyqOmdzqlmrA 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

5rrv%> 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

bl7jd<3PD;SbonK7{bc<$SND}VapHJp3g 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

UCd>Qxb0o2djfgGnE>W$)iyn74 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�`WI`)uBA|VtW$g%Ul$9jw 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

@q<-DfEb}VW!g)L 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 L`njxgN@xNATHIWi literal 0 HcmV?d00001 diff --git a/media/v2_result.png b/media/v2_result.png new file mode 100644 index 0000000000000000000000000000000000000000..70a89107a4442b194365859c66f969f86e11a467 GIT binary patch literal 154226 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ν=md^~htx&wK{mLNzx{5^S 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⪚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 OaoZM>>$S~$PyQE) Date: Sat, 7 Sep 2024 19:48:09 -0700 Subject: [PATCH 5/6] merge docker setup readme --- environment_docker/README.md | 185 ++++++++++++++++++++++++++++++----- 1 file changed, 159 insertions(+), 26 deletions(-) diff --git a/environment_docker/README.md b/environment_docker/README.md index 1e73f1d..eb6ecee 100644 --- a/environment_docker/README.md +++ b/environment_docker/README.md @@ -1,7 +1,112 @@ -# Docker for WebArena Websites +# Docker for WebArena and VisualWebArena Websites This REAME file host the instructions for our Docker images and quick start guide for starting up websites used in VisualWebArena. -## Classifieds Website +# Table of Content +- [Pre-installed Amazon Machine Image (Recommended)](#pre-installed-amazon-machine-image-recommended) + * [Environment reset](#environment-reset) +- [Individual Wewbsite Setup](#individual-wewbsite-setup) + * [[VWA] Classifieds Website](#vwa-classifieds-website) + * [[Both] Shopping Website (OneStopShop)](#both-shopping-website-onestopshop) + * [[WA] E-commerce Content Management System (CMS)](#wa-e-commerce-content-management-system-cms) + * [[Both] Social Forum Website (Reddit)](#both-social-forum-website-reddit) + * [[WA] Gitlab Website](#wa-gitlab-website) + * [[Both] Wikipedia Website](#both-wikipedia-website) + * [[Both] Homepage](#both-homepage) + * [[WA] Map](#wa-map) + * [[Both] Documentation sites](#both-documentation-sites) + +## Pre-installed Amazon Machine Image (Recommended) + +We provide an AMI which has the environments for **both** VisualWebArena and WebArena websites pre-installed. You can use the AMI to start a new EC2 instance: + +``` +AMI Information: find in console, EC2 - AMI Catalog +Region: us-east-2 +Name: webarena-x +ID: ami-080f6d73cfce497a1 +``` + +1. Create a security group that allows all inbound traffic. + +2. Create an instance (recommended type: t3a.xlarge, 1000GB EBS root volume) from the webarena-x AMI. Use the security group just created and remember to select SSH key-pair. + +3. Create an Elastic IP and bind to the instance to associate the instance with a static IP and hostname. Take note of the hostname, usually in the form of "ec2-xx-xx-xx-xx.us-east-2.compute.amazonaws.com". This will be used as "" in the following commands. + +4. Log into the server, start all dockers by: +```bash +### For VWA: +docker start shopping +docker start forum +docker start kiwix33 +cd classifieds_docker_compose +vi classifieds_docker_compose/docker-compose.yml # Set CLASSIFIEDS to your site url `http://:9980/`, and change the reset token if required +docker compose up --build -d + +### For WebArena: +docker start gitlab +docker start shopping_admin +cd /home/ubuntu/openstreetmap-website/ +docker compose start +``` + +:clock1: wait ~1 min to wait all services to start + +5. Run +```bash +### For VWA: +docker exec classifieds_db mysql -u root -ppassword osclass -e 'source docker-entrypoint-initdb.d/osclass_craigslist.sql' # Populate DB with content + +docker exec shopping /var/www/magento2/bin/magento setup:store-config:set --base-url="http://:7770" # no trailing slash +docker exec shopping mysql -u magentouser -pMyPassword magentodb -e 'UPDATE core_config_data SET value="http://:7770/" WHERE path = "web/secure/base_url";' +docker exec shopping /var/www/magento2/bin/magento cache:flush + +# Disable re-indexing of products +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogrule_product +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogrule_rule +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogsearch_fulltext +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_category_product +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule customer_grid +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule design_config_grid +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule inventory +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_category +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_attribute +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_price +docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule cataloginventory_stock + +### For WebArena: +docker exec shopping_admin /var/www/magento2/bin/magento setup:store-config:set --base-url="http://:7780" +docker exec shopping_admin mysql -u magentouser -pMyPassword magentodb -e 'UPDATE core_config_data SET value="http://:7780/" WHERE path = "web/secure/base_url";' +docker exec shopping_admin /var/www/magento2/bin/magento cache:flush + +docker exec gitlab sed -i "s|^external_url.*|external_url 'http://:8023'|" /etc/gitlab/gitlab.rb +docker exec gitlab gitlab-ctl reconfigure +``` + +You should be able to access your environment websites now, and stop reading. +However, if you are unable to use AWS AMI, read below to set up on your own machine. + +### Environment reset +After evaluating the examples, reset the environment to the initial state +```bash +### For VisualWebArena: +bash scripts/reset_reddit.sh +bash reset_shopping.sh +curl -X POST http://:9980/index.php?page=reset -d "token=4b61655535e7ed388f0d40a93600254c" +``` + +```bash +### For WebArena: +docker stop shopping_admin gitlab +docker remove shopping_admin gitlab +docker run --name shopping_admin -p 7780:80 -d shopping_admin_final_0719 +docker run --name gitlab -d -p 8023:8023 gitlab-populated-final-port8023 /opt/gitlab/embedded/bin/runsvdir-start + +``` + +## Individual Wewbsite Setup +We highly recommend setting up the environments with AMI introduced above, but we also list the steps to setting up individual websites below. This allows you to setup selected websites *locally*. + +### [VWA] Classifieds Website Download the image zip from one of the following: - https://drive.google.com/file/d/1m79lp84yXfqdTBHr6IS7_1KkL4sDSemR/view @@ -18,9 +123,9 @@ docker exec classifieds_db mysql -u root -ppassword osclass -e 'source docker-en Now you can visit `http://:9980`. -## Shopping Website (OneStopShop) +### [Both] Shopping Website (OneStopShop) -The Shopping Website follows the same setup as the same environment used in WebArena. Download the image tar from the following mirrors: +Download the image tar from the following mirrors: - https://drive.google.com/file/d/1gxXalk9O0p9eu1YkIJcmZta1nvvyAJpA/view?usp=sharing - https://archive.org/download/webarena-env-shopping-image - http://metis.lti.cs.cmu.edu/webarena-images/shopping_final_0712.tar @@ -33,28 +138,34 @@ docker run --name shopping -p 7770:80 -d shopping_final_0712 docker exec shopping /var/www/magento2/bin/magento setup:store-config:set --base-url="http://:7770" # no trailing slash docker exec shopping mysql -u magentouser -pMyPassword magentodb -e 'UPDATE core_config_data SET value="http://:7770/" WHERE path = "web/secure/base_url";' docker exec shopping /var/www/magento2/bin/magento cache:flush - -# Disable re-indexing of products -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogrule_product -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogrule_rule -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalogsearch_fulltext -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_category_product -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule customer_grid -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule design_config_grid -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule inventory -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_category -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_attribute -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule catalog_product_price -docker exec shopping /var/www/magento2/bin/magento indexer:set-mode schedule cataloginventory_stock ``` Now you can visit `http://:7770`. -## Social Forum Website (Reddit) +### [WA] E-commerce Content Management System (CMS) + +Download the image tar from the following mirrors: +- https://drive.google.com/file/d/1See0ZhJRw0WTTL9y8hFlgaduwPZ_nGfd/view?usp=sharing +- https://archive.org/download/webarena-env-shopping-admin-image +- http://metis.lti.cs.cmu.edu/webarena-images/shopping_admin_final_0719.tar + +``` +docker load --input shopping_admin_final_0719.tar +docker run --name shopping_admin -p 7780:80 -d shopping_admin_final_0719 +# wait ~1 min to wait all services to start + +docker exec shopping_admin /var/www/magento2/bin/magento setup:store-config:set --base-url="http://:7780" # no trailing slash +docker exec shopping_admin mysql -u magentouser -pMyPassword magentodb -e 'UPDATE core_config_data SET value="http://:7780/" WHERE path = "web/secure/base_url";' +docker exec shopping_admin /var/www/magento2/bin/magento cache:flush +``` +Now you can visit `http://:7780/admin`. + + +### [Both] Social Forum Website (Reddit) -The Wikipedia Website follows the same setup procedure as the environment used in WebArena. Download the image tar from the following mirrors: +Download the image tar from the following mirrors: - https://drive.google.com/file/d/17Qpp1iu_mPqzgO_73Z9BnFjHrzmX9DGf/view?usp=sharing -- https://archive.org/download/postmill-populated-exposed-withimg +- https://archive.org/download/webarena-env-forum-image - http://metis.lti.cs.cmu.edu/webarena-images/postmill-populated-exposed-withimg.tar ``` @@ -64,9 +175,26 @@ docker run --name forum -p 9999:80 -d postmill-populated-exposed-withimg Now you can visit `http://:9999/`. -## Wikipedia Website +### [WA] Gitlab Website -The Wikipedia Website follows the same setup procedure as the environment used in WebArena. Download the data from the following mirrors: +Download the image tar from the following mirrors: +- https://drive.google.com/file/d/19W8qM0DPyRvWCLyQe0qtnCWAHGruolMR/view?usp=sharing +- https://archive.org/download/webarena-env-gitlab-image +- http://metis.lti.cs.cmu.edu/webarena-images/gitlab-populated-final-port8023.tar + +``` +docker load --input gitlab-populated-final-port8023.tar +docker run --name gitlab -d -p 8023:8023 gitlab-populated-final-port8023 /opt/gitlab/embedded/bin/runsvdir-start + +# wait at least 5 mins for services to boot +docker exec gitlab sed -i "s|^external_url.*|external_url 'http://:8023'|" /etc/gitlab/gitlab.rb +docker exec gitlab gitlab-ctl reconfigure +``` +It might take 5 mins to start and then you can visit `http://:8023/explore`. + +### [Both] Wikipedia Website + +Download the data from the following mirrors: - https://drive.google.com/file/d/1Um4QLxi_bGv5bP6kt83Ke0lNjuV9Tm0P/view?usp=sharing - https://archive.org/download/webarena-env-wiki-image - http://metis.lti.cs.cmu.edu/webarena-images/wikipedia_en_all_maxi_2022-05.zim @@ -76,13 +204,12 @@ docker run -d --name=wikipedia --volume=/:/data ``` Now you can visit `http://:8888/wikipedia_en_all_maxi_2022-05/A/User:The_other_Kiwix_guy/Landing`. - -## Homepage +### [Both] Homepage The homepage lists all available websites which the agent can use to navigate to different sites. ![Homepage](../media/homepage_demo.png) -To host the homepage, first change `` to the corresponding server hostnames in [webarena-homepage/templates/index.html](webarena-homepage/templates/index.html) +To host the homepage, first change `` to the corresponding server hostnames in [webarena_homepage/templates/index.html](webarena-homepage/templates/index.html) ```bash # Define your actual server hostname YOUR_ACTUAL_HOSTNAME="" @@ -94,7 +221,13 @@ perl -pi -e "s||${YOUR_ACTUAL_HOSTNAME}|g" webarena-homepa Then run ``` -cd webarena_homepage +cd webarena-homepage flask run --host=0.0.0.0 --port=4399 ``` The homepage will be available at `http://:4399`. + +### [WA] Map +Please refer to the AMI setup for the map. + +### [Both] Documentation sites +We are still working on dockerizing the documentation sites. As they are read-only sites and they usually don't change rapidly. It is safe to use their live sites for test purpose right now. From 9790d0c7e636a207ceb76f72348b4dfa7fb0e162 Mon Sep 17 00:00:00 2001 From: alexisxy Date: Sun, 22 Sep 2024 23:05:10 -0700 Subject: [PATCH 6/6] minor --- evaluation_harness/evaluators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evaluation_harness/evaluators.py b/evaluation_harness/evaluators.py index a91822e..dc7b12e 100644 --- a/evaluation_harness/evaluators.py +++ b/evaluation_harness/evaluators.py @@ -502,7 +502,7 @@ class HTMLContentExactEvaluator(Evaluator): def cache_pred( self, - selected_element_cache: list[str], + selected_element_cache: list[Any], config_file: Path | str, metadata: dict[str, Any] ) -> None:

nx5YZ7dl*LUT{6;F#z|Ve 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 literal 0 HcmV?d00001 diff --git a/media/v1_result.png b/media/v1_result.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e34e6bc6d230d650e98b9692ebd98b59503e8b GIT binary patch literal 38069 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

cvdz$xIiAql zMFJy}Z9UOfQ+eI(YZiDKFQ1yJuZ@`mjUmPgMbFGF+2%Ksk5`#fC zS=Z-84E{_3G{v-&JcaR53b%XPgaISz8nJ3n^=;mE)YA=gn%OREpne1pB~Il6 z09bi3$V_t4TOQ@0%9LHgTYZ882y$_Y$O{EJQs2{fZYu*vpCvQ}Qx-RSsS^b>(M`Jg zHmcFltH1VlQT*qmAWuxV62_94l*zS{USY~8G)V_h6npW4P@samBJ~Z>Yr1+&wPS4M zUvlrK(Su3DmB`LiSfDzG5si$)@~X>gk6OHI!z&nEata4#4)K;d|B@}49=zo%Xw;|3 zWeo+ehT?Z1=SePG1-Qo8frlaTqMUGJo~Pw|n%i}=uMZsG8cZfC)QA&wRnF!=HTKKF!!Y<KC-#2-WXte^}KEdeTJ{fta9;?yt65MhJ3kf$Xwi8xfIyiH+0%C`K7lI0KtKG}@N z{ow>3-g-B+B{`zTG+Bw)vXi!%Kl|C^U@ken(2D-Y)*cocR_?pCo zev3d!YBXCw<}!gumPD#yg~WS3t}V>t0~cJv=kL9r|IAO|=cjO^GNBm}PgMBx`RDQS z+)}EOKCQ0##9quGyYWxxMip~pU(|j?_g2K6kpzO z0VfWx#vGZZvUUmY-t;4O_l&Ff!G%$lB{T4`)30Soqoi17dpcs?_nU7r)>FrkXOg5l zsHcLKiE5^)E^24%k5ne5*QlgZ*K3qs$lBBPb`w9RyHEeB>#pCD3A8tsuE%p@B9C?6 zZW90!CTybJNk3Ow)b{nh=?YW>xVKQF{1@FD>4LOg4~=RU9QT78n?SXaduFDD4s`9V;W zfx4jstrN=9u`U3|tPyh%f%Y2H1_b6(%#U3lXBW(5N|-FT$1(!+YNf#fU7V+U0`UMy z7wj~`PPzi6OG*}5$*VODTcO*6y!RD4DH}Ew-(^}o)>;HYaTk59RBNL1RmM?b0&faK zlM`|S^jW=Xy6O@#Zq*t0E3{mRIWll@Y2|EM69%7HcPSV9dCGo+r}I7^-~JF&J)#A! z99n0cJ>GG93B4_JAqL6;XXk&n1z=2^ZO>|%6&o-_Bv+_e0q6l#Oy!#bG-E`PY` zC+t{VrZzp!+qyS$L+%8+4taDLKI4NCUmSaqpM?84Vr6+v)X7`UIFEmS^bzhDdx~h? z0;cOeMc=>{YwpxVThk+S{Fy4)(ubag!WHWx^t<1Ul6FdWD)&hA z!Mdmyesx47hFId7E>vYX-@;Y2^BAf@>BcN{6L$7tbO>!!%mA~BA|0y+P*bzx&`{b) zPb!?qrbFTjC#Ip8DQgk&angh=`SCkarQ<0 z`p76@r$gABqO;|Zi)(~&mDsH-(@81BWDXySjxz{wd})rvnOYZJa!vXY8zr|%=n}f%sGsX9c5r}3Fn@E0ncvV%&z@UV)mAlOSNcJqk?ss*yFoGLz31GcoD(9L;-r;2-9CVyfgl}I-do{4UV)!HNt z*KCr5(#R*^UD^ODZ-+3Q4(oS`zFrSy1PGWdkR&!wj*=$N&mxhEWgw(rQzGwl!zyLE zXk~SCsiXSZQ*T*Kl67V-Lq^{Q;?l0aNeWUb{kUpm(}HS_!KrBV6DE>wI`zG!O!s86 zEN7Rghx0IGcv`GJ-{>BAy_isVAh zVSsNqG>syKy*ugr)lUe+5}vSuVh=}{A#KAe&5qJZ4uJyTq&b(uSOGc;^w3i91o8r_Ai*vn9x+UtB5u!yoCJQlQ)87|K!z4zcvS0Ew z_2kwIT)b9`MFXAGL!YV1I@BtP*wVRbh?(&!^mp=i69c@ra|H}f^6koQKA9ioXq@9; zT5Gt1C1fsK$0sMY@X_7BAlvJbF>=I}DbAaU_~|=;MsRx_yW&&rawy-pjt_t3eSFK? zO0{3U{wND~O!D_9{VkXFEP-eD5caIWy10+~_CLxEKmEFLS9h(5dd?x+X%X*ia#Lv| zf3@-DG#)=np`#mewwmVGGB$y2s_A~gE-}#9|4L9{xj z8c3Ea*D>l$nt6;xt0_M6EPs9OYgz7faQLvxNgGzO z=Z0ry7@VHs6gTMbt%uM-gtk~r>`B7fk6Jb^k&~iF( z;|{X1#EFVApgzyCPAfWe!auZRn(nz!t7Fboh^tlNW(B;aGS^k>tgK_PQ08+QSWJL7 z<=3JND0RAryiWWmV(*qMJqP(vjPOl>X*lE)QIv1Pdg)g z_{pDhbf_CYnk4UqWXa-&=rub5;uK_?f}6^i(^Ss`xi7@PFK+lO>YS$;U((x!BEgIB zBcG;t`ItUoHlvJmtwT-TeDX_q+q_e-wm*lxet?(W_8F`-^Eq0Xpe4YDU1IftDQva?l)$r%pe0O3eUp;U)L03kx zmNd{U3y40hsrS^}ayo6kXT3{wwDcVEhOR#ozo|Lp^DOgUJui-(`_GjHqyw2*grQx6 zw}16p#DM2%`4yZ!7kp5UrgUPT8os2@tJxRMnd#5@(EpmFkjl8^S!-HmY-I)6GY%T2 zb$8@?KlD6r`^x6Qk$dC;{o>CH?g+dH0KDK%+3&T(#_ICwUNdW+X<@uJh&d8G9XSFrEMmXS|Ac=G1=hrc5v>zUw`5p8vmR^QR_lyFG)ve z+=?crsj%|@)!bMnaLEK){_qn6o-#T5id_n|9`_o|I6}Gh$cWB8&6QTuyHq1@P;S|5 z>|9J77^q2Ntw=*XBFO&MR|Vy~H;*zLCOMQ|aFC+Vc>fdG0Po zhx(KruOJ$0LG4png&Z^GrktMZL_aHqhx)5dR8U2GWT;p$p}@&;mx+kV9XG|jIUrl? zqUT_RPprR$Q>}jdMvK@kP?Kq^9g%Ie)Z`?a&#Lq{J-OF3Y&9iK%+%D>QBCwTO}Bl< z)1FbLyP-#@Gb__T(P9g2T-XFc z>9oj*Ou~wJi1~bcYlHCQUR+}nuR1&8_@z1S_|Jd`AD-cwt5$N~z6N*hTZQn?7a28H zKYKUtKGkFOiOcxgC(8VM*9_T}D~S*9<+PFKSUow+2Vb|5NpFe|+_jsL^&8l7bRS{K zz^paM%M{#`oaBnqcspUJ01DM)26DDyVllK3b40m5V`&&Af=V3D4cxG)T*a+G^4i68 zOy*P$6MmCb>sRvn>)${$GtQC$n@@f0PpKPSO1k2x;>}mvl&O@MzX^3yra&_B5dcjU zxvHqqv+y=8Jc*D~;6u_tDgwKh0w(vW(6n_dp7x$dGlkWJNg9IW9II)ms-DGNJ9RPE z4Yw*fMb49$-OVmCYD}!xC}rBDDXel$3A;hN&}B4Wl1#8AGElVXa>=NDQXqhQBbmF) z+h;)rSy+?=D4FmpYHVWilzyhB@TQP}Huch#mzZz1_fGGny2?C_M%-W3T1Wip!{q~oz) z6UHT6F=(`Wj8LM!L|QSs%8T4Xu`m*Pt3=ABm8~)>1H4=TyHq4{HE1dTKsl(;FdX8g zYpB{eY_-1;4M{%RKbW?Sw2{MqkJ1OkX@`~8zrP*F` z^EU9v=wtlCJy6jtO5Pb{JdI%{Tw^ zSA4OaW%#(OSlklnRFi7CgD|uxIU##$S^9cjLOeFi1;-!ZL+3Twuwp3}zwZ(5I{h6A zj5(?L6hC{d%TU(@N1kZ%=RfP`VE@?+WFpS!nc&8r8S*2~5qV{Nvjg8TF(X$Qo+{~; z@{!Q>h@5*RW%F7XwHk4y29+6%W?cb7k$|<4n4^lPM^@4M)w58oN3s^mvo(>aBw%N| zv6QvVGBwC$o5VrldL&XtOnk?Z^g)V7hEQDjEthTG0XO~T-!1BD;&u2X(5j@=@yK4@;)2PL*L9x4o7TLP##9AwX&)cE|GPYBAI8i?I4ZeCm_=d$o%Gro z5oo6csDCCn%rQ-S3IZg{%<~)k*>*l1PR*`4bH{0I^8cJVxxLZkcgg;weZ1PIWU}Ah zzl6~?hi#B<@R%mQ{k|lEHQls&&ZLvQ=kL3$kaK+z(r&=8%+Su*Gci167{<5#dTVpo z2zMOhpd^{T`11lg0xtppFR&B#`|R%doNpiQIK08iS{KK$ad{NQ>wLG>A!9KC0MfE{ z_V%BhzPG!w6zxo=UB80|rC*w^C91fcjVqZ8G0fSzdPDla)32HRPq{uT!#^7G(`|6{ZBmmjnRcr6qEKY@V)3o4?y|IqSwkyqwM5jbXlWfx^Bi8lneX(#Ja<{4(3RvmEX+n7^;a_fLE+%MY4(W)^>C5AWUjJs!&i ztey$^@})Oo-!sW#yGWxk%;fR&xMtH2*}k%$b>mGwy6AFVVXT3%XsvQz5zTpGT3=ISmq12^CiJJU}iaDU$ z1vOH_v>oNvY~{MKN}ZS;olqE1P)L#+VgDi@4+7Bi!?lz|WY5S^o|(!q5q7aCf>XBK#yiipIp_Rd zKKZjzKEI=%h35@X*|w9jC&sucnBj&iPi6a|?R@OkCy1|m8@E3DG}(Lut6rht2UwAh zFQ7&sAb?QwrGC^CO}WmrOR+S~lIPjk&lST&O=p!!n{7*koQVEfv?i{%wZ_VvC_tfk}9B!fAK0P$W$zL zF|W9e@kQ&&J1SsLWy>qJOagSuu@kUJ?V;S0iHUe@D9#9;nI{uEWFP(+9Xp=H3&fj4 z0^{_wOZ-q|lBoVutO1$$i@9Qir$+vAoV1~%@@nOu{?jR&K8}fhwgMj7*#O#_L;;4{TS7xV z0#qa*j-v1#$YngAu~q)o*PsuXrLxm5CvHpN$8!>N=*Z$dLQ#C=UN;4Nj|7BB#R zK!CrU^Ktq!I4zI<5vWX7X<*PPXJasZjgqG9G}i20=42QqqX6`&kK z)&jpuA&kfdVo)dY8$-fIXcl533Ln&9FyQ7a4^O|%o z?dJWrKfWl^BM~aS^Y0ndG;eylNutsE5J8WDPmqbN%%U|K>T) z8(2nT>=2zR^V}9S`M`I6jC0Zo8g9U=hr0MuwTyWHs{MJEojSlrZvQEt>%5Qwx$bk% zF)kh?Rwq4f1^R{=Q|7r>DF zS)x6O$%({zn%_p2gPt{SZ5z6xz8$Locs!b)VQa|$)F1_=|OxK>`mlwQ~6UK)yk32_we2I77`yK8qSE&?ZdMg2gjhGLg zd^M*z-9#;qgB=d_jqI_!9oT~>QJOze%gHN8n(ThB&@Kxb!{p|ou%2&VFt{d zmnH8#c7&F6?#bii`R#You?s>nA57$n8KY2v9EGMVH{5fsytEz*-Ih_ae7zlMhxH3{`O zp_;1BQ%{^Ewu&I8KkjB#d7(1-k@@NfRgN?&s$ub>Ccfn&^kZix%Z-ap=gmD!amHsD z9&q^h=DQg!n@m{^GPx=_LndJzeD$;&Suq~q)T+dT8NRarX?|4O!Pv5ppy6=6yOQ^H zu4CQ|G`ou2-Z#T%xBnco(c-J;y^iA!W-uy6n$!C!pVYRO_P$MB(XF2C*%dGG)F0Ofgsij=bgt$hwG z$su=@G(sf0!pI1c=19_KC-Nehk+Yw2L242(rlcrHMo~aK&I*`{=fJ8x` z01C4JKwH8jpQTtcT6!atW_7zs#HNzRIEX_@g^V5h+$QqPv@-ltEi1vd1C)>_{eV_ zVBgXuG@?n>ocSteJS5JvaP}N#`hVZY-GA{b&a%tgv-cOwyWj?1^1724{`c?lq5GeP z#TE7+-j2U!E$1C~63d47Ff(S*s+`Wr6M3$^w!n2;{*xab+{R#L3csZRn!vV|39W6L zGz9FFNKW6wYMEpsNy2b+s)=pk86K`JF}4Zx8VQ(aU<>4^m=BinsSuW!0KOg~5i$r0 za_x!1p7NVjz^Ua4$ZiM&9NZF_ruf`M)XW}oU6VLY6)!VL;D=;n&9x-*FjDKbN?tRw zDse=v`^f6X^GmGm?IgE05eZo^{0ZZa0+S=c#`y+@lAR$fMZ`(ymz>O4!U zzhqm-AUFSdDV5{SrZNU+_HN-jub5%6F~*LA5udxS#FL$uvZ_?$m5gw`-9REoJg10n znfPXooaZa^O_6`7Wk*Z`6@n-+5+SDNVTcr9dYV{#AKV&#(87>4T|5JX#&2e@oUCrZ z)Advx>I4ka^diloQ2oCEcnMgpbB+~LM*KAbKO&d0Xm*->V)Ku9u-B(zF|CbK zkCHZ6s8^_C8swDHpV0oFKR2I!kA7_a&h~yz>wj!v+-}uV^kGh2-riEeq)K6c_D9Uw zRLaKHZ%?+`W?;>-2$IFL&2&gB_Wvp&V0Ir8=T;lvcI+`Dwx5i{=oh~0KHO@wc8xG1 zDbX+fynv3tivYk2=w$sqySjh{g+fo^B+GJMX2iyoQ5df9e7{rttM!zoJs+7H0@D77 z_Ei6QADX;xws${s@@}j8`*%cgruB9O`7M+@O1##WzoT4KEps$Tgabtn25E_xzYfsl^A+IiK^M z>!)Yjrz#Z3WgUEa_s{rRI8J@AlU4OTzP{{ARt=9rSC-qSjt~y^aZdN~#G4LKcYHdR zFXEG1Zs8Z1t(e^wUL(YbMH3vThn{HsRqU23B6KsSXJ*nQq<`1?w)8xxX^v>@2|T&#H=ZMJ$4VB z$lLEfMEJ@@RHiras^i8uZS6_?;Fo*2^Rbu{&pVr$kzrahojgA7(6OjU*MVnvclUNa z_=+;${Erbny=5s~=bXjxo`+aHGsPv%kUu)5pN?Li*Zt@*>K9zW{YQ7IxI;;Z$hBOI z*uxKNL{U>2WW~~y3tS;oXL0G5_9ynVaa5>d4kh(Kni!#g%6SrJe*wazKN4t{^-?j;c#Pya^B%<-~0xH{aIQxRNSFNr-_zZ)&9}~OQVypFcecl#Xm|zm-uj` zy_Ev;b#t3GyvhVnKpDeGCVerUQNrr(QxRb5eow4`(%G&UK&fjf(S)l>m}>U4K2|PMY55Fgp{C6HbaSZynn0U_YG_6$ z1*DUDxz-dbLB6Y!1!&+ZWy)xvAn}4x*R=kB>LN_mH|-IT7*!@(XEjkxnkl&#)UlNN zE;MOo%S4SH{;8Sgtv9{{e{WT3*?HnwxZ))|uzxeJdh$NZ{)nJ8NlVB%aY#>(30t4$ z;HU3n>)kfNINABh~3~|m&`#9^|6S?wJ-(u6+42?panc)_Haprk^*fyBlKEa*) zIw%%P^qySh+`E5{wJ@YBI6xGOXN30V(7p%4rqL^?$Sh)^XRE{wowT7m4H8C&dM?Ve zGfBvi@9C>ZIt{ql$vfn3lA|EemICVdvhIiuU&vzeOUqIbk47wUe|aSnYq%K-&NR08 zTEyMTgGF*)R6d+)UK7Jgxwk?`g==_b4$tW&_I%bBdzpD=jF&AO;<}ez#DX4+c^93) z1#kHX&7NgU7Zwmcdk>XAc_Y<_8$7c=!%}Mx3r-&7ipNKIM1X}p1JBE126@WHIDt{5 z)0?8RvyZ1|y6IkYD)|Q=;otvP4+H(%*u1mB`+hi&$qTQfIS%U@ck@qgUCyZkd)dEb zAAfWIDxN8x%jyEWp|y>x3o%AZKmdaotB-sjQXYD3k`n*`AOJ~3K~z`QF49;lvXgS| z)5}ueW41h~)-Wp-;>IL?t48GeYCxfmizUX!In4-2(lOM1m6(>w$U%PJ*4aoM$WA8nG2O0+UD)`Izb@>gHu2hjnhtdO@A zPvbAkXE1)~0M3PLdH22F;<5g5j*9%m&9Jy-v3RPJ?_cs}8qZc}nLT(?xcL?4ud(>Y z-~5VyFan}Zj}vxH@Xsf`f`LYi+vRZ37~ruZ2RU_NfsT5f=}Ci?FX`j`cYc{$tbkm; zhVA>f)9~8DNi?wH{4YQIcYy$NHTtv5r*6d4;(2Zpf9z}Y z>)O9dfP%R@&;|mM!neJxL_;n`UusmQwies;8U?!ZowOpCNw0}3jgKj`TbVHFCQ3O$ z3&~T8k|1J1W*%!Z-Gpw;L=KL&rkV6-h%AF6KW| zH89I?S9yw$Kk@)KopJ`3TLY9w%S6?2f(16;t8C*_hwsB$J)b4d)_DJlSMiEqA?)A9 z#Ca>Y=AQ2{9F6g=#bWi7!I!f8dQlD4kTYDblN40zLhDtPD$fnV83H41Q#mVeH znY?LzplFU2Av zn*WEr_W+XYD(}93H+G($Jez|yX_X@ggirvPED;6BfUyB%u;I1AHeiD>mdVCozzKuF z7;L}@fdC`PLP8*c5{j!`X>;BQJE_y{o4>3UGt<+3@44qZ z&;R*{4jp@fhaa59-ME6WJ^OfWyp0dOVlB5%?cr@-X_K7tBC4I8oH4VVGiPUb&r8oE z!RNRB-p?T4dxC#puMRUk7KIXy_isau0R)hinbo;iMMFg75gDn1)4BX6lFA3 z{0U8sR@7}nO_QWYlY-EagayOnl(nZQqqhh59ilb2m(?pL2xSW8io7JokGd3b@sj{s zV%0L;pESMF9BclEv;w-&R7Q=87NWKGdP*h0ftWE$G?mtkBBoZUPvTaw>&r=svj!}E>0qfC)R1mc!tI14-}?-e_5zVn&_IH) zW|aSj?2Qt+Dd38Z+|x)(_8iN!Q+*a`Jmr21Q77|JPy?oHYM6OOXcmQB0`Y5*b(TRp zS^l}6GU^QUUZRBZWso>hH8#z(|2g226`}$TWUdp+BSx(s0erQDKubn)M#qV#k^)#1 z14n}nikT4!(+OssI_X@2^rBbd-B;nR3onMwQO=n0F()S(eA!k8KJ&+zCm9qK01(j% zJl3zY3HIL0yMN_Rx%!+x=I-~soe?6cFZy*FhkwF(myGfH??22xxr8#XsR z+igl!tfDl;Ua-iT9Vl)R){>enOrB8`y^K|GjGTtDYbuV znVgDsm3ln$?~u61hKJy5hPG83x?>oXR{vbg)pb!@c!*L8tVtPvqv4|B! zSk*C(HEXO}c_HyVU*gYRm2ly@68Fxnp?vV2v??2r~#V#Sfr$oTRlt z>Ptjm2W3fU-PuIs3b%6J@Eg?PK+4 zZGY~AvjhV45P`ne>1if&z#&5@`dfVc?Mp1D{J;Niz(fAEe)hrRqYt0(J(+AGHj>nG ztk`y(7Ad<@(yw)c;11JBb{|p3`=le$bS#hbTLAkSE4?xZx`|}-1Z=KpzcF84M*Uu*| zFYP+73+sLxuzsDDVkTtBLmnL^pkt3#n*Fo@0YVM76Ps0q0W69%(+-W$Bb4S}&PqY* zRTj1Wt#VL{HoV$}Q%1Kax|rzj_eRH=jTVFqi60A9Hc*^*bFRRzmbUViRi|Nf+B8>} z`Q1BjW@p7Bs`xm5i(+Wuc8a`X)35McYbC{Im++)ApL+O4Zfx)2*oe&n5%swef4lBN zE-x-qj{R(2#`|x&kz{C)Yqp-n*#0K%#fZwP0e)OK%x~QP4cezKhyAmBWZ6@Ab^SsX zw;f_^(>QP3@olbOo=_ZaQQySUrQQ$JJ+L24E-#q>|2{su-#2Wlh|t0ogp zOU(QnRqUtnI+&pP|tSes*+>Vb@`BZZFRYAK{v38ng;FS6$m;`=$%A=9|3Wz$5(1!Vcc> zf@jb;etafO`}mW4!EI4lSfDCwhBP7;ov?Du7gNK`giXK~(S^sN{mvZg zrRi26m3&P{MG5m?J*`oIZKXtJtjwPThzZ+mQkl3}KDJS$Vn>8sUrp~KAyldHbs1%P7?9OIhZ8 z*4*ozGLsXiy)X9=$XNnf)1dtR)ib1bJZX?Dv%pB)=FswuxG#JSo?W71h}VMvZF;h& zrAr#X=!p!}BdKKoio~8(tFcUf72RE?tx6!0O&3MWt36Xp6_XgzHfmUHpXA>@Nl82@ z%)pyh!t@uY!9<_}0@-#VQ@;j9H8MpB>_y*PX|j zf4qjNH7TR<91X9DUr2H7gcU0icHMP=`#=0B!(aIkrGrPAIp8*(4$SfSv!BP-g*wOgP2#NDz~|kAe0J`3D&{WiC?uA=wR{z4k_uT>3LaE( zrvj8@txIns*AI?9Li6jE8;IqrDT|=X0Ir;>r=(X33=qgl`);V$&wPLcP>K}#Cb4`1 zrrXLe&@kosuoZYEGA74$iDHAIa0g^Bb6k9@h$C+Fp)dl9lnOTO(83D}R85!IjParp z1-GnyDxwwxr7DYUk7m?m)SAWWMszoxL%UR^njB{YlWsIh;Ff5{2_?r@4Xhg`B())? zqth5L;4I@|u7B@S*>~R!{II!(-~U%|ue^w07i_IQ%nfh!Si^C)-CO5F|1rX&D^A84 zfUC>%yv;gpZ|c*AH12)=m=Ip7@5$ug)vm%v_m2PaKUd<+S|q(b@|yqi$A{e z8^ogt^LB$E8sviG5np@$n+W%HiL7B#-=-cf;tty!t(v^yC*Nh)>X_Q%6fbCw^XF$@ z4u>7Q>M*5plSNsEzJ=3GD6KB?=^c0S56wqu4)~a1!a!&+*z)+~Q(wVJb3XR)GQK)> zfKMN~1$!ibuEgJFrAUw3za(Gno9k!iLIyr&6>NXo{)7p74}5%FbFW|NgjdLW{T!Rg zG1Gpq;R(us>~-`jEw%eg)%Fu-`X{`T9?hZmKHI>!iiD?zaWoV~ zD&l3H{K>Z4=nj`?I&JJWJgc*uzdGwOl3AZ%Yx4a^Z|424 z`5m0QAEUC+p<|>RtVR6c?r-tHikN~Q@Z4xUpFRIov>)0-x^g*RIdUgo40m#T%%o;5 zNX8ChvoY&CBYf!G*Wes!DvF?FB;RMu^5I9X#amg$6AGhf7Zoc)7Zq~-mGNI@fu>{D zG?O-4CE4{8x?HUEp*5q-im3wcI_HI~pZBPUPEs}Q(z;~SNbxz!G`Xti&P?6%2}C{& zmisG_NfK`-sp7(>5bCgLmN1Jotm+8H&>&PQB;_K8Q&PZ;B^l^ydSa=jAyx*Dj&f#p zWrE&SLU;BQHu1q7)9l_f$gFoezy17WJZ-tlN53`81IH@3t4?Frk$El{o8!1wVq3I= z<;^Y^?7fxuTvX)ztr2her#*aa=wcRD6gmB&9lY+qet!RobD5;hHQ&00`R6=^>t_?% z0vbg}C^QdKj-VjZ|JYNXJyiOBPkR+aGL04bbBL&JW%{qO3uHa(QO23!BCNCK)Fe#_4_f&?OE~~1XOmC1s z;#rlW7dQ6!EECc`Vnaf)@kz`{GW7u)m{@X%8W2yoHo^`s|j z8ko|}^b#Pc_q@z-EBn+-^PSAMBm)fe2hAM$GLHehRb{Cb%DrDMxa_#{r=G$J1z1=N zqd|k&Q!gZX=5z4u0;NM5eJ~ z!j{Q-gs`k*uOv1w!Z9LRX$@n3mg09lqu!EykBl&7t;lp&H3}-pL0<=vWGLuPP1!XY zM6VhxB~pnYYHFNqwMw<&kOU$bke`>eAx;JIJr=TQD_;;xU|kHj#7Xn<+3gfa}IW8=8p(IyPPUhqkAbt52?ml8brM&rO_8~OJY1VKoqB;2I&;CnoTJ)c7XPJ(QC1%>&;R) z3}H_R=#j>7s)u~PX-TZ5mUO7*Ny&Ib)2{sl;>?&=?t(;A z3VfkVEQ@8r;xJ_|#cU>o<$>HBS3X-H}h;l|?KW7Bb0P^=UbTE9+0rRY7Q@6x;Vm8wy^eTs5?sblSrluHcQDTyw{De1Coq&Z+^rV*D$6 zjxg{HgGDzWY^S`|KZy@4zl?5Un%35pd}`Yd`A)Q*|=og`=zY+c5c zH~tHI#>C)q22)~8TQ)DS#(B?~ml932sc%@z@BZlDxVv(Qz=$YB+ABmg(itl#ueNiV zeFnW`$qgqq@EQJjLQ}8*E}zCf9!6Mt^-+xfJj`|dOTSC+`TafoFNPVO0AZZi z?e~}jIY_EMTkl%*b%s4KLhbVz$Sz2(WhHLG@zRusiPGz%IJgy)$M!GmU--{=El>W$ z|HKt|5&-z0xa$9nzjNd8#sMp~HXF9_Y%s4*;&^=+hNY}J6$GF!5B`Z8R9`=T;=YnK z>e=8aLk#uarwjVN57lE0Wc1k_=2Vp5tU%94I=vsuitnt-(|AMv{xS_@Z~xU~(sJyw ztTL(&;${>wn|g|7C+|g*O|u9uF$@#aK*MG@sdE0n1c{%rP_{VOn5LbyRKerNfy!gY zEMqUgC%0V5nez#)io@PYn~!h1o+EXcJG5zvhB_JG*mHVYU+B<7L=Th$b)sfJ9TCB;EUH5!6W$b`cwVmWo?_@54q z!e9lXXpLk5(Zwap>#qvza z`&;tlPzq}mimoT+QXq(OUr&_#Cy$!NlT)+xm--|2WLwhlkm8uF8z50=!mC$vY#;l)Si?ZpJs(l7Tec9h0z~UH~9MB z@;yvX9m-l{>*blbw_P-sG~Y1dk9X?o@U2_-_AcBQheEaerUW`2soEg_j9Eo%_t=wYhg z`wTH9#Wqm0UIEe6U|oN*T(F~LAsIbcf9kAQR^W_w?bpc$8DByHE{1OSr6J7Lg-Btf zc{G%nWlA7Tw_74<`V{69o?BYQ2DiqcDB!2_+c-9wkc>Jifj}Ay;VS5cT|T~c;Fo{T zK}NMs)IOG*SmXfki8Zgny5#5bsd?5ti(iP7By>tP>7h2Q%l;2Mwuvb@PrCb9jC@MQ z1Z&S8Dyz!C0XY2Y24ld59n9#OAPqAFZ^orCg7S{2WQo_#K4xZ^_lm{3s7YS#5 z>V=ecXb@MrB$btP+g04eW?+1rX)%_Yxs!6b5Ao_%9u4Y=6BdMqWMvQ6GKPG`W$QHe zLr{Na-`ktq%eU*85&cX_%a{L?GX^xErDO)meO}g^08ZK{F$eC1S79qp0=-8mO>nMT z7XZq36g^%%NFp2RRhRBen{Km2G4v_n(;QgF&`^b%?+}&>if-;nES^!tO)H4YiJ(A9 zTxG!U2n-+FY~f4N2di*`0ZPR-1EqwnNb?*AFA1<}Wg6Xpx-EdKLD4E;xFxzPpN4nn zIA=_LpMU&|EBMKQ`!SMrYA#@M;+bT-)V zA-ln4jcG_4w5m3t=}-{RGt^Ua#4kfw4C1pR`@KBMQGn6ylBkHl2C26|;x|>|i%KJs z=QH;M=nX+MP}*zu@*1g+$kda!L<0Pk3BxW?F=D%Wh>sk&lOsjhQ^l)5GiQWhXIid0 zYxM%sRDX3sNP>#Qb;^4d@L0e=%cPnVvF9V+b5!GY!i-;u)EylBj5TQkCp<0 zdWh*K6cqR&IHJ@Q5=|O1Un^2N(B?1e7x61APvwZWfb-O~yzt*X#*x)UtZtW*{LrzG zzdq|~&JXH@p-HU3;U>_zmE6ZbRE~Z(;OY}7>+_tn{;^n=8HLNxWtiG3!~j+ zbA2;~y)#%7CH~Eh_~7;*QCi+23PZY4k->$KKiv3iE+1Hf)0ty#(<)y3-H)<3ULy4b z7}bmj%{ZmHll$8j+o3`M|BeJXi9-?0Xd`YukzAT9IKG z(<$Z;!YKSf?E7~g_6{HUZ)|a%eChwfEAS)$@LzZ_|2MqU>hkIpwPN`~FrS-}z95XE zp*V^iQ-sx-_EHo7PrUWH1Nf4f=)?_diA>qI$z%uA3B^QSsAYSFM!U7fSWgtQ|EcLs zR@3Dq&s@8yTX&6FD5_>=h^1aj7vfUSEO!T}nI$!enCiA^TAI4A^wimuLbWWCu`Pt~ zz~+qFYF6UX!eYDC;g~m%V}vR@JhY|IG%yz|o>M=Ucdj~@;?cu&)(`T*hi>6Pp?wZG zq-KYhBG!DB_e`9})x)bvj<<*>;Gd>;^2M1)nID$nd_Zlk#B1GEyz$g$P(0Qm8X9G) zX0h+!BF~x_#A@GFiq;jyyXD<3pmLK(~P+`7cF+1q+v7dgCeU%3OK$Wf^QnZVT zKCSP7o-!)Ru~3S$B2v+H)0D1b;yNV;Cl`6k`b&9MVT_V*6BV^TfYz}Kl{cS(X5;4E z+$*QOWjaSSxs!Vm$>d)O6agnv4A;dFU3p;;YhZ|UU>LLFsto1CE@+o@i9mB>WPY9) z;xeuHAZm(Nl#dgI?5}U;qual|iTMBkAOJ~3K~$UUuh}e`KjGD{p5TnFgIx3R?L0QW zoOI0@EKcuZz15}QuEd*}VcfQ8cqy+e@8Az!Smawjo97dEJM37snL;|rc@NyrSI#+; z`s$PT!yjG8uJyyru*e<^e1CwT8&EK22xFgiT*6f5(3yRHByUWN-a0BNMdSpuSfSu(&%L^&jdi{O6SJqw`y3-Tq@NAN;sHj5UmRX=~=tY+hnKq%C z(hFD+Dkg`D5A0DMbwjQx<=GTF+hSDBq*(KsIxjP0$+_1shHh5mQ!0XpA+cyx>{HIC zAPsXU&1ju)+YOYM1-qj62x*-2Nqq(gYHI&dK!&u7Le(wYLVr-nHEtHP`czQ7Ed{su;frQEQaJ0`aW%3RfLPq zSU1*k9i;KgqwF+OLEf8yU;?x_NvQil0Z5cllk9mGjxu96uvP42Lem<;Jn$GpH-CXn zT-47_syGuFn;>V0>1SENABqB=O@gz=JIg6hQWS0MFP}|M9MvpX{arSJ763v_$)W_; zGV#-pl2Ii(aEPlnUCPVPxt!AvwWx-RObyrYMv8p)Kfc1X&HXec>cnB7O+MAT(d$Ne zL}V`i8kW#(ub!)eI+vD;Ref>vDWzFTdfloixdJhyfsxp{h)S`{#Rm#}m;cr4S-o|I0w9kcn*k?K+VHAdB#HtG^%}kfzF{eV)M};Fo6^MA z31$Bh$%h-Nsd!qD=thggDnhqHGWjS`a2T`TD8N(kXw*bFlg4CnJH>KP&r=pDr$7+( z7k%JBc5ixO!iX1 z4QrI8`L|=rGC?uBb5U?A{AhxSzxng^5>Vok%?A9QM_lCJN&pg$shgbn|Q-Q zITGN<#}O}(NLYB<`$N(?B#oja=StCF)e(;mZG9DI`NMccpC8u)e)q2L5RElS3=gL} zz^Mx%U%l+jc!xUpgG2bf%TNHtXaQDNc>Aqi;0LQrW{eIS0*A3yiP2(_y?#iy)n=nR z$j8rq4(vLFw{bb2e)JJ;i?`!e4V8{l3}d!*T|RL33t82QXfGS%o@9!5-|^2dGN8^{ zxt^I1u9m#$$6#pymH}sZ^Q*D9B_DvL>HHH1YQ6L1M4mu@U!AeVGT1eHi98CscRWdw zhMeQd7*f{>y}CR1cQ^s>%=f${@ZkyA#N&a0zLGzW=+xT9^ng;jgT79r|u0QST^!tnI3^~<0VpGY8Wy&Pxdg^$y z9PMu2)0-yB^huSVnfrV$h3jdbGMcSSCDpzw4)0ElF{dJt)O3xQnXsYE|8$~MM(-8Z z>I^-XUU#iM!q)N%+$dtw4A~ye&^EeQaiBD8o}E(Z8f<8ry#JivV8v96N*TWG?d6k) ze@-+|rfVg5MwbDv$m!lNe|7GQ7(4Eh7;Pq(1^mvP-{nB5K&KYb@?6enmiX%Vmr|Iq zFbZQdZ3EBpsED)fOdH1xXs;^s_q%?~7pCr~y{3rM@VMOA!pF{gHHE{|1j9C;*!few z866=idyI&@J=3|`s(Ll?N$_NVK2)Og=rKO^wAZsWT0!S{8`HM%$4h+Xfor+d-%Vjv zon|Xk=)DvIs&H0DiF%qNR6teoMG_Te5SFW0(;a?q;#4lJpGrNHrqsf-Vl{nK=202d zT5TvfQl5=76mqPZ4c%->u`I6lLVH(QZqZR%7G|*mg&KBs2y?JbT&ZFf#D!WYo+Tt} zK9$bejTM_Ck!C5eDThtWKx6?XGox#G*ZobluUSUeyr0*-JZ1Hkb$sG)Z|6w+ObQcg z*>m(DBSnLCQOwk_n3E>zoYb0Rb0O~) z+sMNy(@PUY6iG)033y@_#NMC1jo8enEqmcF7TZ<=L2>%_aa3ge-pj`>C}uRUjbEC_oPp{5nK9*x@c2WVQD;N^0xL&8iPZaMVa8IRE&h$ z$T*$lTWOa{D&Jej=xGQ=sPM|Rt0!A9i5*+*Zw_5e!BxPg)(I=Wfy@KJNkdhbcf^H# z$34_<{R+NW?UVXQLy<`%`WOJ}<0#NrI2{>4m`~A{Nam`skS|Mr*ptIh(+3b2Dl zmKKpW`ufUiO|;%yWH0HNJgU7YGaSsSUd{5-QRi_*W9G%*uVmn33ra}!e{f+=1Li^XZ zW$A3rCz9$E&Gy)wsiO9v{)R=vHGR)tAJaum{PQXy0|)djqVB(V1L*6PfhHL@K^^M? z{H4M+F(@Sw9k)u_UBM?VeKo&om5JwC6#Z%3l`-MEH8>+7$a?Ark{cAghCr6eh&GqUh;NJdmY88g>a~d%8yL++ z=rjp~E^*vd=9^|BegHDW5RfgG5M}70DzS8WQ7@)1yLWP5#RO7@*X76}@|(147GIvZ zpX-c+H0+o{A||vsn3tW)ndN|^96S?zY5s*>c<&cm|UN zhmLC#H$z@wuH&t1&S!G>VdmB@=Y5adKx3p!DQu{7%vyx2MmF=-^{3KmM65pLBtCHK z*SR)4LRttYs9Gc+Z0UVB2eeqe(@98@a z6?;X!fHvs0EGxAfJ2oxjV2W`=9K|>I-Od9?y`zVIiCU{)+K=)i0Pst6YuDD-t}oif z3ym~=wqaNohheljip3Mw)Mo6N4lIA5Pq_K{bWCkxnSS?i*Czk|9tBG67y57Yo{$w5 z+5BGU<5H0bZ4pWox+#I6-!dI3S~y0aOmXzKlT9Zw9bE2wtBP-#cBv*uie&@aPgpiE zMnNW~m`sN)nu)JA%G}gTmCb4rCMIf8QrV)sdzQCty^`nD zx8hDUS+r7;@gc6?e+OSX`a^=%R&Fs?|xV zC6aPQO{rZ)Pn2fYLZanjM+#kAWxv~!LoRvbM#R3clX>smlN>&684JllE?jqzSHF4- zZ~o*%%=zmmCZo(OG#MOBa27oh&!%jSvb8(QD{4(Pm%5yH(FkAq$wOT8z#y%YD=hBc z$9wiq^ZwU7jcpIy%{%`60otcOg`=f|4EY8FizTYfQOY7)C{0swB1Q=r4Z4)PfKl6K zI7k_=T%s^#z%DVICRC^rCL*h_sfu}>=w9WbRf{gI!cJX`f=gwrf;qU7?&xw>+CIC!@D~&ck~Jv6P6qsCQvzio zC=EnrwwG)9pRny_`;%&U6=hu}pPB)n!3mo}nkX0YXya4yYhzTCd4f>1>o%nwH|lj} zmlU%^8YLC2sC4`JZ_Ca9mNe6P3(IKznJcvJv9qE{Tc$1zk^5Lm`c;?w0eZk!1{&lh zgBr}x@m}(9IccPFypvGC7h%wd>6s7fwle(EH*us~C9*~Po=xr4=UGVAR`rJ3L?_d*a z#WJ?H_weIKenx58Njz))Q`j^;Mg7b=PyNzY*|q?MKzhGCp&Cx=sJX0ZS5bDkG$CV` zDOgIK5qi3rN15sZHmlGxc86+|6=;!57lgX4LN=74UAtmaT`@{<>?jL|CLyc>MX=fw zCzjJq+Y}8G*D49FM%e8r34$%&26Fw~0>l=jEY?jKw?$pL1sBIIsC#aTJV+Q!;(4Oh zl-wgt`S;_PAXpF&Q$^FxpB=S7D@V-!Nq;`q%b0dKn=Wtkb7nvWf#uYce(+1LVy)rU zS491SY}XbUicSi!64`(CO3|Dg{d@_KsgPVTowH<3cPZA#Fm`sh>oxDEuoO+1QzSd@8emnQ<3;FW4&D_V+IooaVw`-2Ga@(U|O)y&pRQq0 z$DuM8apmaQy!rfRV>TOLg)n0CwH=S}_mADh;xa=Px&kC+zsgydJx+MG$%?2**joZt zwF~mdg#1Q&GVk2_48pm28XGtB<~#n02kOTO1CNSnQ=RJaiF01gIerP>vk2?|wVOi7Ro$D`T-GK(}T9NNnL%y{4P6kIB zcq%fn#)^fQkDhq}oBR>%(1z1D@yhEy%F$8r?&;!)@nv>xbp}s1EX&R@&CckdiP@Rb zw@>!afhA@@PS)3Qnaq!)@43uR8Qs>4R4nsYQKqXF1u0>>2A(+H43r3>h=MYA(9F%; zYe4VV8Q|Hg$@|;;endO_`#w-meX2gpAXh)=-hb%}Il!$_FY;Pzjl*6Nq`qdW-!{F2<-jchDfL)LkwX}%~)xs)W{97a)H$_G80>AThW z@U5?b*PB(JyGYiS_b-qP=)%-N3z=8)StBVsi(ABPSUe}K@zOIc=H|Wk^6l0! z{7OV3l~?vp=4+fuhqFyF0~nN@l@v;`!KhuOVpmoEcQ^8xi#vFd(JL&6EJ8|#N!5)>Okd>2%rMm?RMGt7YM(9oj{Uv{m3m(JJ1z@hKQ{ZK9PmzO?@yzS-VK zv+h#zq;YbgRpiQe1@AxWBFd93TH_^d?(XB0J8xmK>f#qX;0 zgl&bmVW8dndwSh$FIG|sp_0nyiEzp`>~Hao4bSI_+E)Cwry7rBq`=P_JNf92Z)2<; zp(|!}i4;cCJVe+^Yb|wWO2-vyet}bFT;6}?vspJA;Z#QOO}Q6RK=e&Z)q#)|Cw=Qn zaS4>>QPzqWn?`N zHm(;?>_}u|!t|Qcc=z3l>^Qkj$R5sExtrHsaS4C<t}(e?RA}PT3c9x%ykXnY!po4op7Eh6nFu=QB=*os-<$Dd3!3XC!Gb zGIxOLREJvIhiDwyQi)`RaLb308YE@yYtT)hR0PpIccpQU@uiS=%LI`a_<4$bA#s7N z_9D~qBCXDGru`Z2<_PyO&1AJmJMl1_BEBK9d{Xr3oM#m)E#ZqoWwb0Beiv#kl*Ce9 z&?yI_l#n`A#4urGc2P-4I(DuW*3SHDsv|EJ`c#d8>7>Z`id2I#VTEi=Mq#gmZn8drn4b$MxEEuptAO~c3)34 zR0EWOpNSZ(t-; zSYOWIvtCMTs7@?0Xa!zay@)j_ti>t=0$j_*NJCsZW}zfTh$aPD3(A#W*}du{0RadU z^;di}MhNe?p4x*yq)kypPO8>l@m{6<)l!FEp_>(!N;97AH_|w(>#3R?p_Xa%NmyB> zG-1(l>5Qym^#vC(x_T|O+A?My`8kjM^OrD3Cx|8s+_LF3&YG)mtUSogr8(a9z?U&s zl<~qYt7nF}>7qBXu@vz~4?e`lyvGZAjgOR4AB`kv$zT~!!o zdy*>O)zOs6PgJuj0t(H3(oJxxoa$3CGAtT|omuQcg>q>C`~W}oI3BifO^ZS-Q(KX_ zhy=*fK(^@2OjJ{1CX!4c%TJzDVQClyvPa8)rq-J<0K`5`obshIA1RV1D)kAC zK+}G+B3w%yvb7`=_Y4Hd(Dw|uSz@!~ESuZ}F}pfF*+9O1>vLB#^fbLVyH<*cqhOIt zav{czrusbMnInD{$|oX{P&vMm*%l5_` zhZlWj+73-I5wr{{3YTMj$>IMRg_`rWkD67>-2ajxr&6@WC|h=pd!# zMdn=C))>b!ms6cS%q6u4c+UsUX1TqaFWo%F=O>@RR4~l1hllv=KneC9r!i;~%V#w# z+#sgV(PyGuLt#~^D9h{_G<_eV_wWv#pXY)xyx zN3D6~;H%fM((-3%F+w6M`37CvWmFhE zzQ}KHd@j#hc`oIym^5}-s5^Z5;UDt#JwGQHuM*Kz2D|b;Rq{v>T$UATUD%MEELeRlBDx7m1{^8kgBt9GyI+nU7Nh_r| z2!+*U-tzq~^Yamlv@*{?&?Xg`U1-xWp%ub2D<|_NXF09ONgAiGz$r(QyJCcqmT;o)(E|8w)-5RH~FLW$tjsW&Q)R(*!t_Ou6cWV=NFg#Gc; z_M8CuxWCV_1Fdq)BnCayAcF<8j7s(+D>7K)cleFXS1=?J)EobW1N91V?Bhx-udIeF z?osbt{RZ8Az{D@?Z%+LB;~4?@>AX~zXHZ4luLAiBQ1 z;Qn+w+cnDc=xWhti*V3OnQD4MhuQ}0*BzxfdV1xdWU1J0N+eEK|%3PLoQK;z0GHEo+tY{Ya`uSHe(eUw4De;&rpvcK%8>oPyDnH^KXC`h@HBJ0DqEQlhVUd-y@DFFdhVkhRq2aS*JmH=9{eaG3 znb`6%(ujIgW4K}Q=`&x*x^{uIxkzKJ!SCJuJ$AYg?SjvI&Bj@%@c9jwa#^@ceknoO zrBe{x-KHE!>{l0K#ULNL_g1b8Ch1Q2#M5)UB;L%YFMTD!!9AE0%lPw$Zst4w0pekY zLRS}`k(w;&xHw%LX5ft!2_mmBY&^rGP%UB}XmItw>HNl-&!Ko^hEAbCP$+P~ZSwKE zzs|uSgLbumXwyjK>uqs%!LCoqP#z2L%R3de4Oqp0qG?*<&ze!{kh%y5! zi99O@GG%FVVAW~->5h7kbVfiK8Z$ruQc=NtVKC!{UduWIcgk9eCw`VhS z=wX;%fTMwmd}2XHbu~D4j3Z)fRjqMwevW2pa-I+h zj2CxkMloHXxk}WZcu|C1MY2y^i%!X-5r@=_2s_Yz8lnNU#DPpTtr@UlrF5(Sw_2v0 z*05$g*0`fo{86U813W5C$Ep?B@ezvMK(8GYjVaHY#Pn(EzbntI5zrVp1NT+GM|-V|-Cq$a3hHl+a{?P#4l_v^+or&;#zZJJ_uLI!cp zR8kJj(gf>*TBJMi_!^=$r_xCx#g>Tz2#y?LY;h01QBXQonRtm)caK|?{bEhM%qabt z&~s_>(U(@D7)#nQzGp<5y~qBdNR{M0Q^066K>CB}@oZ-Ua| zJG5jXs+^W(@~WR7G1b%d2=dHJ10W!VL0M8ITnFcsZ>3S0pp^Qm6jWL7qCJ;rFU1f@ zmC2S}sMG!7*C{=62Z39~h{TIRzplz8&*-H&*EI)xwH{PcV{^ur@~X(3<>jy4L_8W& zCTruI^*irl-=c?+gcR%nE_%u;?)&gZ*}HcZc3IqW-UX~bQo|c}c-@0v=4WFvaXd;f zN-4}O=WkZNikA)!a7)tUIgi}P!02%aXjRiu-5d!6NH@b;!=J@QX2w}LYitP+&@_0( z3Q#EknY<)(*q8rOacLRN-L))&1Zw4oz)KbN)-Kr0MkZaegDZxeiFm=Nc_%>-WRZfp zF&1{UDTZ|-#ZbPD+MPguL9UxD!<57o_g3M$$okgo3Hf;eYs5W2OuQ`qQonz7p5;?H z#k|n4MNUjskhdZTWPnvZ<;y@F^`E^VW^Y0EPI(2ZC>ek}bCL!jpHAMN{JrSb<%czZ z5hVitNP{E*M~WpWGlq%RjY-$6rt77=y*j~Po%%v{+_E3<;+JssxBrZbUbu>zZoY-% zwPB+14FuC2PBKnCZ)|M<03ZNKL_t(zpyN<&9bxP8F*c3FoHJbDRJVi?B-Cp*MI{fb zkQOU=^}1NS&}jPXi&A#Z&av(2F?P>+Jk$wUtQv%sB8kKiCPNek2eem>q+S{(Wvj?Q zJVRA<)ukGV6Ei%qoIOn!&l_i`Tcp}Oj9XpgQ*W)ZtP=63H?{a-d>+=3Sw5VGymoYu zcC-U0GH97A6);ze7D;09?I*qfwEC13@YWLF z2a$~^nU>zGw9klc+SJ-r6Md1E2wJ7(7;=u-hC>i`pb)Xko#TD`Z)Z{@ft@BvBEBkm zQY=X`iREAhWh#pvA3yJ9oNg{tHC0mU(io4q<_F*AM~$Nt$4yeXrg8HPu;{^QH%piOw6`; zRbdNnJMSg5r>2RE1GL4n#P^vf%rZG(@TS|o$;_%UzSG3&+6;OzNf^_vmWY}T?_Pf% zwId5OYc&p52e|3c>zS^`O4cJDL1T*s?_PBw7Z--{Vh3yMMn3!C^?bki7;Q^sZm2y= z9#d7bt-}4uKXMHCYTdO^Wt7RN6XG2 zdEF6?BmXnA68Ow9)2@8~+x6B*YQtTovJ*yAk*4an)v~DZuIgPYmjA zoiVGRDB!*wGvm!7YHOLa=mIB;wNshY7OrRTwE7ALjX`yY9SB=I+?gj5=Aaj;*c^Yr zBAxcRX4Qo}ue_eH)4^O>V3`g|k387hL@OZ#`S6;x&N7mCh9^o#l@Hda% z#8>^pw8}CaO;|{)JkwmqKc4(_%>4oB;5fe3#xx_6u!!SzDGXU$-`LKl_TA6nWe#c5 zX8c&pm!A7p*3S6YQIk9EHt+uVjdUg?QMrxi_LMJMmQ}7N0-AE2H!A8rsDjg?ExPQX zD%Pye`RNL-Irl}xQ@%?nVDODSmsAsk8ho8ZiTHN$A`q?iRqs-u2Q91N)M|h{}TCEAB5Tf zX{D%||J1Ru3`fU#B^SuE#F55_4 z?qCKf|7cpgqSEF+Zm@XUNCj`pqpW%KL8>hq&s|MohO`ScW+RWtoW*k`lG4MmyQFbT z0bEJikzgz}jg*;`g*4wWhR`fkXhk+D5{hQ5_5DfWVbK+PLlyZadVSZAakI&i(g7wq z=1xEo-$-<^WyGvXhPkji!H0kCjjU}un5{aL+T8Nc-Ms$c>zN!J!z#^DY%gM3MPKekk7)weGYLu0%eja_E_oY+@;}O0h6hs)Jl)4PHg5 zrx7;U|T-% zS8O2V-6DS{ObeM#3I$mw$0#2L!%;?RaZ+St^(w|!FXQJ^3ksY({h{65bj72K&K|Z`G=q5wz-g?ZquC`#96k5Vq!Am*%%8AYMw`B-eIh~k`cpalTlz} zafl5oMoEk=TgP0+YYxqVjad;{MF*!8GFPzJ-<)H|%shvTkOyW>c6BV~h0$i&q}5RZ zF$yh!Pn9GYq%t5)yG`s26Q;wI7CQ_Y9-UyA^D95*nP&vVD^_vSo(64aHKm7IyxOU8 z)rAJj_C8A38CTC^(Q1%H(j-gVr`!rnD;Ig15l6~f2QMI9T!7XBNo#?)>k~;MFQBEe zV6d@74kl|!D=#u0m9D#TxJRe7$o-VPRy=VsmYn$acpdC|%)cc^_`As+6bmhaSeP53 zs+Ful5ooPymY&UP!sYzI=BLw&Ds)KC$n|%x|hfH(;=#WpGWmLdPg@Aw^y^xPfpwpi>%P zSGtFrX7{jI6;?q6Er*NJWxVs`^BHg3bR&ah=bg&yzIhFMMjX7TLqS-fi5T=QMQQdX z>^XXt?}qs_KWpjpO8ErZe2-qAKWTcy*CvBYR7vG2W6EBVD9}G?nOw~}{`|tXFnw?V z>m<11=D%V8V3WaMQPo2_f>q04^%<9+PW`;Ptf4=l@8~;o`~SXw!k-;aOZ!6)S;&}2 z*_o$ISrfITIBrq2cl!;}n?pbPm;H_1cm6lEJ5Rpsf6*0q5&-xwx{&{qFSDh-WxZ*c zml=j}WtybthjBC%MxkpMhM_c(YO^^(1dzSm{;y>d_{SlY{R?CX09g8QwNLc)ySn%k zs=lH!8VS{|!`7(GpFaDyS+xjGDdl|+UCUR)1C)yawu;3SO_?sf73DXZbf}t146_Vd z#hjI6o3ZLBMLG0Lo2jrtGx5|UCNr(pzTt)`sqz@zgiX!}XH+I2b(uANwk^&uYe&Sk zAn)4AJoH@7imLqWd6!d~3Yf1Kxv6!4&+fmS`JuX|8e1lfMv2SAK|XulWmKoyw2LJk zGFp6K=XcmQR3uJ26p{i14VO=xa|IVQOoFJwe62)cM^wTNiSMZS_tcopZ~gR39A7Th zWi!+!eSUZ2mAqo*X>{iswCf@7xc%$w9&uDmoJ{ga?4Ax*y9h67nH5Dh(`u@F7ACl^ zLqn#@11@P`v2i-(PtL!ZEmI*SD`7Tth*vM;Ydde{y6JndSGp>S$}9_eyvQksi@fjj ziy2=Cl)HLb&{|dLI`uF!&)?2y{@G&5&9*d6P#2wHtyE!E|h~IIUVH{VC&Z1OBUKO2=)&R>vo^){2 zwsK3B0#F>8#Zy6jemOAJ$r@zwdUEhfcd9`XS!*(Vh*M8Fgv-=j4BrsbKQ$S&#C%z# zi<&|ztN@wz#;`0H;FK`tTW|bR_S|?2#}94Cqr@07=e_b7v`($E@=rcaux5fv_Xtre zjf_dxZ{Ze75Qfy_4oA!itKRWRj?Hx#wLJW^qSy%~%V9onsFVz5zxZCN{yeGDV#;$b zQ^UtiH+sf+xtUNN>6uR~a_V9Z1?VO(Q4?`JVH66xOlZC8AnwM~=vtOCSSzFs&Aq#! zb(or)lEjYkO_24bXzQ6mB{!*3)PHH(GUH1fl$Q`^277XU)E;L!x;a++OcsxqZ;u(( zJf~gjvMBQw$ciS_l4d&He1FtU)zYk1x6Q(k(jcDvBYU+LPiT$$(vGe7(_Hf@&3%+Q z)I_>u#ngW7_n8}9P9<$&$I{$sI={4Nk^msRpBI%V8YLFK_jw9Ob`YB-l^`M4L}>hK z+s!6~OYMF(DVIBu6MM2^SNX~0perdgQd(Yz!OMOXR&FLqEdD?C-UCXqtGxI9om{y( zcTdimQ9wB$2?-&Rz(PhKz(j)yMi?;W8hlN7fN>(&1{}a-8;}5lK}aNtB%z#8PNUJ} z?w;vbxlX?8+xwjA#_zp#{nqmG^}SDmwPvQLr@HE#efIvo|Mw47!z65#h)WU2u$Q0x z_$O4So4nJQ;`KW&Cf>W3pHBt6>GA8ZM?oXAKI-+RIEH2hoMA3T+jCmVHJg0m%>#wTWtWgNj6qBg#(5kz|Qz zVhH9;=q^&5s?svXNP{lLKpHxcml?Q*_-cgu+Ns5_=kKc7%YY|&-i4|yUJClb*XNx| zOpx^`cU(vz@)c=PBbl-)!9(WEkkQE%yF-44mM#p6^DL@QHv(CspHCDs>bM}0YLAds zUN!$2aFS`0RbsrF-f9w`x-9ZOGe01a+vNseBFB-06Nwg8=Z<*$m}QPX<8;=pt8(Wf zv-GWi@U92B{zZR9>Fd{W%-NUm#V78=zI2{TFWbiAuVy&$UH_d;+b^T*OmN6Z81-zX z=Pd;UlXNkqK@U@kUWZCIq$JS_Q7X9sY)$*DcVjk=k8$?Kt(;Qv@PZ{G$H6O_6ojVV zorg*hM%OTVbb;Bn#l1)S+~*g$FD`PxF0yDlL{^8$D$+B?u)MW6NehDxZDWkJ)%}ds zA{ZKC-OwVC^=;#VM>xrFHn=SL;qrivgG7GHWO=G@{M-hJi^8C&RJm2843hwmSGl)u02dKxu@sL)eq zt(JwY=;IX#k%0kf1q}efymr$_tE_cdp>6_QNw2MV)DCy~(E9VZDBgizHo0MBfj_?U zyDYB_38FsreucA^P5$!2S79DCaZ<52btn{ETFp7uZl2_Q*L{KSj;4e)sJ1)GcOfub z+LpygtHrC)-e%s#;WhSZ&}u5q{%bVB;FiGQ8AVApfRv$%Hpk8+dJtG zt`|UdNU4GZr%ctVs-ihaeP;Xyz9rLWnJSA0 zQ5RLRDM|Y<+;KT){21zqLB~kgn=G-XvrK4Pih3Igom1R|TP5Cm{PTIXG+3QBM>jaU z>z1o{qT=9t7KrYX5^2NYAJ2R#=PpH8N8wyAl8k`wy;IE$k3d;Kq6AU|CF?%mx zI{Fa(A(LVlVkJVHmj*^}&$)YbK2g;NONP=*6QNAdbUtxEP3U+jp5rljAmXDZUc#op zqtGePw;~uXaeeOzKKk%g9NAK*T6P)V6Y$r^KZ~uiDJ8c~sOYzOl$$Ol6+t_n)DD`U z7234EZ(=AA5=+#ba@rC-cLBq$U>2(w)fz^%1eG$T>k+%U5S6jN6dq#y7uk|c?PB;T zCEObQFEGy`dzMEQ{bgb9=?APuXy}! zu03u)p7|JsIH4D~)OseBz8LdK;T%c&9afwYnR0b}6;w@t|$x~8C9uVZOa+LGi^$xx@rW5%2mp#h1Urgb3N8LW!6RxuRZ5H z?z!a&esbhSYCCsOzwmh+zUo(uPhZd5E`JVxaQ_2*;@&%%EYIV|qG1kjT>+~^o1Rcl zdK?-(j{5I?h{o(Zqfd!8QIe`Do_<}q z*0LYyE3Gro^I|pM;~-2^LPxU8T@|q?nt4m2C`Ick@pH0|2_qn%w&gn9tgFxC^Hxlg zbb&NT16XaTl2urG(wwoR)E{)tx~ea;y?E7C8`S-IMztZ}0H6`C(?u&p_7E{F{`@iy+c#DS=lSY^Y8YRgJ+&mRwRVAylpY`-SH^)+q za<)&4-+-*+vJuknhZN3zG0EoRv7Hh$m#{*Qv|41`nBl(beoTFNKRahSeCDa|Wa5E< zgH?|k))qO~+0CZ3%SFeYN4&euD zpj$*(5|659^7>p82Aq74`nVZ$W5A}#`MO!kga#s{`4nnhimQMw5q9bQT7hcXNik#1 z$@gm$KNSTkTzNTzC22)WUURcQ1tnn!4SJEy`RAR%rcsyWR?HobKSoeA zIeFhYeth1m==FN6`_b3v@0{Qbzv1zhCvCuEBU^s^kLYm@)u$g%Yu_V8#c_I_d4|Ue z1inc}ycd%Ot};uMM%TeN3b=B$V|l+7YKu1On;j-8vT4mR>?~ARZ*(|qQ;noE&BUm@ z#}<{c_`gJige;pSno&YKg+&9V(=yX7o5$NF4kR&$U7J~V413&Rp*%!TT#H?rXTlqy zvEQVg!cd{dpH3X*(#1vm0}xM55gI)TgjjuHgqi9*(A%AWINCQuQZme5k7TJ$+U^o| znk0T#n+3}CmgEds6ItV*r*O*Iq4%2XnN%K;nh7A!sA9&bge6Zs^M2Z*v!TZO?zxiN z>mda%#ogQE#Z#yA@@-FLtm#p(Q#$KBzVP7nd}ZGqgkzFYAznZdi7bG#fbTi`V3j+_ zVB5$VMFH4yATjToWvHXJUXzxS5ZN9(XI;L$@uj4V2EDV^@udSd@wM5T>6HU&ae>kK zkW0s&!sW+5kLchGU8k;${fxd#xwVYF(dBtR{{lxg)~F^83WB}h(lHJCe!yvk4P5H3 zVR z&v-M1c0_A)jW_=AZ+Nh}h@A$?8%Ya(vIxmlJ^QbN5g91+Yjyi-*dhm)SH7m1UV{c< z<@bXZ&VHlKV6+#J<0Q7Hw6c4^{C*IH*Bn@SLRbJRMqmF2^jrTYeS{|gfd9Skrn$Mi zd7@Y-O6=cnB}sZ(l*sfyat3KW*j!MrWw^Ma|jqn09I`b zIR!H}T9!jfhQvxnTjaFfC|^785_&C{V4cV7zyB%juf@m+PjcHcLU?8ruQwe5%@qo& z${*n$$2f+^dar_$cm$5gqTggmyv|Ln-I7tAl3Oa~K}zB$oL$(=PG=O~Fqkz$?rqPo zM4%|bLMZl~KGlVQi_PQsy;Gl#JKrR!#9TS|0RMP&H+IESrhR@Pp?1{aCEh8#^MteT zW)`6m^8NG>AKraCy-I<$+s8^gb}bux?!1>!o0Y>;8r_)K71K8xukYg&;QO6}e0e{u!dN=QfytD&-f}g~sfyCL%T!NOGd0~WpU~-9Pu?!*hDqx+ z^X5wN0&&#fB%*IZxl*CDufbb)K7)(A?Ifb37gzbB!(Gl1K63w03HojR_>_w{zf+;m zcS&7OQ*KqnoBUrFrRwLehLZqyp`2XD@4WI99+_U^Yu7E~ zJEtpehJw^u;uVn0;lvS(<~rh5z!#5i@siCkNA?E{_10kReUuw_KgP_OVgBL342K*W zJ3PW%eVk(+x|@41dIhatF7fEp5N|tt7rQqt5{GkGk&W9;8TCUVM>5Vu3mZ|2ddihK z4t*@gq$KcEC_t7)$*oY3qB$_A8x~`QDqdgc{jgztf)T@{-%qGnFkz$=iX+qv8`pB^ z1}RmEZR)les@G`8ZH9)5IHL}fq`E1=(GHJYdpoy=Hd~)RPWjwnE_?5fc-DrKdCg47 zaPeVEZ+jWr|NLF7nKJ1Hp=v||ad}T_X6&?9Xd#iV*tij0trP3Iy$!tVmIuxh2 z(~iYayQAo{1=Gfmy+Mjg0bMfc{I5})^XF!efTD|KnYYERG&m;pC6ir+Nm8TCbZ?O^ zvru(txMI2|2?|mWN-BXi7gLE*nYT*bv=2U8P7}?kyQD_ZtJ zes{(cP>q-9elwYcO!=kpmN{v1%o$LrDTW4ybg%L{nnSGQB{G%_C4I!ldF&R9eoL7> z3gbb=B9S|#}qo&qpe=o8W<*+XWxBj|vy~`%+s%4clf$ir|IO}YD%f)TCDOv>< ziUlUhCi}1cE;Jvd+6;L5;#&UZ_}|4kY;dTbFtV;jC5q|#izK54(_0N*`|Xd>7=Lz~P9^(JfBHM}e=3(XkI8Yck&oG#swjrfnZ zct&n$oU~>!*qh6ews~ zcFs_{`WGWy0RsIP$0}w%?*_JItM8YD89mucNhL8Si>q7>Zs-J+%)BsT91Or%)eZ;% z7Af%6whT(@`%Mx@fJwRQ1tl|4I6*4u9f~WWQ(XiCQENlX$ixFc^*kyaM6Z1neyJ|C zuplhbFrio(rBtu*8|RvEgO!#b0|G>oza(*mRSkYmj&)iX&TSidRB^KfXkg65%MCd5J_~R!i~~ z6R+pt^*VISBE7IgHHNA$v~!Q)Vv#BlTS_U%*NdDpZn3`5XG5)o7s@W+D@I0Oc(|@X z+bXetsLD~N#{NZz``dl)C=PR9;?b@y6T4#={s>0fralIjwD05Z*2NU>Z_qAEY@ryf z_9!QP1u&{JQawXifh3Wva)t*1M!Qe4+#zYThJYql3Ri1vRzGqyO!ER<@H)c3v1cnP5n*0 z`S_4ReG>F~u=Uc!w7m-|TYb?%Vj- z(q5LQVrrpD(GS&HZkQ&eKK$OqcAO=H`Dg-X!sD^vVSaGr5eg&Hhg$TG8hm*2RL-_) zIMj%$DV?0D&CJ)qj`MEkuALgDh?k0?jQ;x`6dEb-D4)(7j(rZkYw*M6`+3&`-;)K7Cm^G|nx$oyxo_6z zW0J%G03ZNKL_t)FWZ~EQ_LWme14wyXppt-P9$OmUP>0(phLL7JtbD|bACT`;3Jg** zwbXIl$aIXwG~tdoF}{-e{tf#&`{thn0sd^ z$@58#ZKC~;lSIH+1sCgvP(RFSc&r*_9VMh%%4{N_xs{o*Qm#qN43qLEb2Y1IMc0~X z_A^SM(3A!6Gi(#974sM8yqV{xHM%%ly>u6U^2oP|$A@s@Kov_$?V3m1XtnR4nb5RU zloorqIL4@QvbE?tDMxy9^rf(~B)480-$~xNFsbDO4@Fg;F|v(n&tkb?@4aI zS3bRH`b8J(u&&wR^QXRubq$lyiaAt;x8C&~4vY=qg>B^=oJwQg^!VG8FJ{}aOm%$P z<1uf){Ttj-a_GAWfmfh-#Nqv$PvN)6x6@gKesvfLadFZ&&=oWyVLI3H$~@kR>#@!j9!##)GJ_VF@m-#}-fKHrL_d1VUp>tKMors|%E zPBm7tjM#8!dm(A5qRau`w&pZmvH4ug{Y$Dy^~Va_+wHN~UEu7YaYp)*tRTgayq2>1 z*3H5yw#EP>&*)&65GQlR4^(v%&PoaQf7at003%SB2L*d zC6hPr5nFO!bra%<4tTi4mm8z})r>=9Z2_;ck4v8>SH$MC*Gyv%9ZPpPq8RtFqzD&= zM>2;O`Lyh<^q<&I@SdH-|8xaGcMHGz=^h?!-ok0`yqwP*n&(^l?!hmM=DkJ78KP{P zoW7^cFV1)c{PZ3cw$=I8{KNFiZ5D-@;dqRhAqBHcwKB@6RizdM6oQy~wMyvws=1dK zN})80fv;y+6bc2!jEGu2Y_kZ8ejmsWX1SYSmlGVMn=@ zD^0Ru?BtW6+<-Hul;?QVO8JrN=?4?Y97N3JM5=4cwce8VE&tY54Y(Ldx~f1HiL(^R zqPdl6l{TBy`;wkIX^O07#i%@GS;A?GFKa@;#DyL&7(bQwoOUrAmir{tDhsukNA}*% zU)=pI?kKIHU+Gcqw$<8{Jws2v<#K8GZBPK~(f&$xnEz4zn(^oV?P;rCM?eleUD8dQ zru*jfUVRW~Q^EZ66TBs zRv$Z=o4!1cnT@QH_2%b@Vq2{w28bhk5*swjV{CcZYuVdU8#hQ)Ua88??R9p4{j;Qd z?j?0gn2nfok4*956JN{;{VH~=s~9NJ8jpQbG4J@_ekNZ$ ze?yY0%&`#DQb!z2N z<@BF+eHP4+U+jB`>-)FTqsw5CeMG>=9<$jZ!7G~)M+QdyC zj3SH4r<3}+sLW4I=#ZoccLPB%iHOcZKPD8w!W1w?OwqbHUWnz2@m!3ll3gNVTtdgy zDF%u~<7f~fi`-SZ^z8bpyC4Y%sf}Tm@TNAhb^UtQPL;UtfqR**Zle2WgST}oK5^ko znXT7Y_l1vPZQsgQUp&SBE5FXgFMSRBgX6gTQ(xu8vvzX-(M83Y>U%{h8&4(KFixq~ zV6iz*ui2r~Y>;$ADpm$gNfc}|QB7diwFr$euA;6N=u#z+6b(y_-f;pCuj5lS%8W-Y zXBjppj+7aj9HTaxa>kkty=000h)cmts0Sfwp}^5%fu=LWzJ&(ATB`8ip_nJyCHfoJ zu`Armr=KxQ>8=KgM+=OMOpwG8Uev%e#REg69HNoVz!PQSDH0J`*WzT@CtegOK#Qc; zBI@@QV@3XxLfQqgaELy>(aPchLl4UO69!~sM797%%_@IicU(pcgrJ#JlCX5Ho* z+srcFQixwonBO?W2d@4y_qr|Op#-}hDu9JlGAs1Y(FjKFF{GP7y}xG6s#TsSx_->r zq&cuC>r_lLQ+(USFBTb@Zu8+S&*H4YMq)SMmU5pzz4a>ELroS622sDl%l#2PcIHJa zPg^*iL016Ju!0pe8QE6kcYgdOZdzLhnhf>Y3WRRDlJFpdA4eriSo39~)F;>wbIpN= zIA|WFUAJg0S9n?{=Fd($ALDR@ZI59Nd3=BNK0edD4`VdO?P*UD1$yQ&#yVL#`!A!u zXOW}1%xoZKRcWZgN|U`SkGRgI1WGA1I6u^>GHANx`XyMgL14K`>bicZ%jeE~GwZuW z`cp2K-}Y_ph#$c*blofao4O}CQzMU|U3sf{phUKgvieb-p;9^N7+85m#1L3{=LnXp z>MngYXdpu~>eO!(Mya1cMJAGghayhdiQ$?((_}A+^{pTbuSpvILx(uj`*$@pPkz&X z>J@kr0QgV6-2b6J%-mStST9+n3ysuxb!u>C9LHlp=!=Lt+X7aMOa#ppR8uxIjW!C+ zTAE&+Eo_S`wR-Axp(&-Ke$H1fk$hH^eRZ`gN(wKnI#6bNRy*Nhw({<0zMgug!J(SL z8?OB%`|7?bdObO{60JE@TVYo8tHV)BGsTw^FuKY?TfOW|qPTpmwYjt7K8$zs$=k zyLiivXTVY{oM_r!RhiRyK}XRSBdG^6jdTWGXB6hlfKaV8nFM9+kRVUO`i~{=ZG?&AC{{7^*?$_%G8hiQW>IVf7Kk1W;brED|LqP7+`nJ>sIrjZumB?zh;p zZHy6fH>d9kIr-#WeC(g@#4nscui2$2TFSsDi44Nf$B-zbD5M)rV$RI6{Qepom}md} zZ6?n?i~hO-Z~4NHx$?dag^2}><%1N%gg^?ZB2;3ROYb_&=Qdvm%`U7LM`|A?W$G%t z)V7XMYYJ@dYVma-?#a4aG}$64u%+qF){olB6fHRi z7Ibqj0E8@S@ldd29mzymWnO2IaVj2DgH|f)(hRX{HH2Hzdyq*0 zl*Pd++UM%er#xM`d$J{q-Hg>-{3vV5AyBk@A<8>PT(oep5PrnxPj@z9+w<3dEMsAn3y<;DLUFl4V8bEjlK>Af@OOX$4}+DbcLD z;n1bE62nQjnm%KdWwk?BAXG}&M+VQ*iYF1$P!6UV(}WJL6fkvK)==H zv85&UEgxZ_H%+Ip52AUU5$72cg<0pxzHE|6T8l(h3VR^XU|K332-2vCPfHL`A1ZS= zayb6%7hr`8gspkzdXRRy)F0f-p7;M9-~RYN@Vy;Rk|H?mP<8fmUuI2To z|2}tBhgsfo9POpUj7$!*J1nv8;*01y)0nC;lrzC2>ZNp!&VfX*wi1kHK&jbLsTZ<| zI;wG#XUkJ-(-lzDPU)K-vE$H|C||3LXg$nG%rL9el9=uB62s*hLj{Ku>wV5HHP}+= zF;O-sR0}XtR6Z<}YD{+v%sAq#60vS7U_9{HbJaua8r@9KE|Vzvg{G5B61`>sDgL=G^CBg_*Ka_L;y|>76 zi!&*Jox}u*#mG^ zezvN^9Pkpe{%`<@X5J@>BH+*wc8B9~(hU6LuFI%)JIrnz<`i8Q)!p~foU$p#bE;YIr!KxFGMf&s7(R|& z(;jJDpfPT9*lzK&eZORO+@)O_qq_enZ=Tr6vnO`ao~bGcUU90;JMO!h1LKK`oJ~cZ zmkrPabW;tzx{Vsd(R*g*?U7%TJT5f@pGC@}j9K-aQfojBsj|&kRqE=D(m=IZBhrLN zI%Ok}!AURWrOr-1^puy-?zgyq+~=*=ew=RARzRHsrt?U^RT4ve$5!y?6K-+jmY0LI4q!`vISMg$|@OzTp0z3WRhX!eWcPuQnTR1hGi~UiFI=l zgC0_XD3PW;*{i=FbYdi9GYUH zmd}BdxsjstSQtVtbHFi5V#JG^#I*5AJPic6Vy2f(So9n!(>JOOV3mp0N)mXjc1n zNZL=>(t*#P_j=0HO`yZWg%)pn@CKS=lZ2)i^RyXmxm*yB^X}81!^BZ>caL~%DB$<+ zzM7eOfsP%}v@L3jRX(xtBwkS8PS7xk3nu-7&^Qh3UD>S_6-*5gVt*H`m+Qg0Y=BjAAE3CSV4XPWi0nvJu$zx6}TQTU- z)M6E*DA(O^=o_NRFXAos0C_-$zj=mJ;|<5Xh;2(AZ8@mjK6ctw&A*;>DrhB4W{?8O#b4FH{n-y(&&K``4mKBnaI>jjF%*N z0n%QNG@c~r+UzLZ&ZdnU7#iBfb+7Y!>HqeZ#G{|q)Q+qXq%#6rZ%LN8>Staz8v9_Qmc~T%}F6p{w z&uNq^$7nt;%H6y3eOTAS`S;~t%_nIqf0sXP>MH%)(|G_KilXerHesMd!( zSM@lcF6%#Wh{Sj;?bEX?Wt>JV8YKrhA`^;niZ*WA$CVTTN&gstCz&zVfX}9R0Ls`- zW>_*UmCqPO_;Nm!s@MxD$A%6suAjj=Po~{ISIl0=-E>LT)>#(IwLm76CZ))tUT*Nn zj8E%LU!n5F1GIkY5^7(48LSmBc!86LQ{3TaapJ``SI?JV7^&kCiw;|; zy(;omm+opJFP~IG-v!Xm886uyS7(Imr5F^_kho`Z-f6GoloMXbf&FdVl0!F!f-UBL z1zMhmJ6yoF4(4o!#km$%(&2Es!CQuR@X>AO@#i<}=Y#VHV6DM(ygB~+#iuEU zf6E-=DWCWT3tLZTt<|PzbUENo5T3Y;>d7Ot7LK4aY*NFBOTH`Tg^klUV6KfnyMWti zQ3~{!HWq0Ep4x#tiN}=Y%`WJPr6sQRMIyshi2$)g0tf(Y6zH2ZaH=ZOu+lTBCk4jv zSYsJ%E_7H|Xt8};gPl8KHq{bpPE4<6QS|C`u3N(0vxGCWo|aP~mNQKv64M@zfREB} zN%JW8E=rVtXm1AUKOEQmYuC&{`PH@mtrX2fGO{7Ew ziveL4&nTBFG!u+S>bNp)ze#D$C|6n2{MFsxp+Di$54+jVFqE0?z@9~gQt0M1BOeU* z=hZ;3stYsdH)oXQ2r?8a99Goih_8UIQp-BO6 z9j5${@kNu5pZ^Xv%+1oahnTO_v5hh#`|o1pN^WyQC+7+W+hdJP82&&#usa&A&G`);A87 z&GK^%!?-Mgv!Xbh2&2eVS;ASwkKVsC%D-~^mP5i|s2TIZu~WHd{h4&z4Q^SypMUM_ zXU^-X@0Xn4+(<}mBZKBYD^K%Dw5AedhlU`ELOX+`2QQvHgLiE{A6f>jO+9|=hyTD# zT^zlA?9|m$?Sb8})|Rel*EL;EK1YEfo9zmAS|GAh=7ScC@&knZt4IpkZC3slmmZM!hwfQ2>bJx%deEMSve{$C~{H$mxxBJ+T zX{g1vrIe3uy^yDPV`}=*9(MTXgV%En^B9gyegpbOjniABeDi6~B{*ynl61_r7=&l4)1&Dr`#r!)e`5y~ zi|JEnwF4Z}#|R@#0UsnQSF*UHfK-5hAfnI{vl@eLd4_H*w04tXK^!G}#O-F24+qi9iIhakDx@e>cSjCxC9BRzeahT2!HIh$sT8xe^0zSE6f<(L#9Kjh!!j)j zI;=hYR6cXgC7gdpn}7bA27bG=m}^jg?)UuQN8 zR+Cs1Yyk|#vm)~YkZ3oV0Gf%4Nb0%{mPlG8Rx7N~@x`u4JHjg?v#cr3YJ?SIwt)kF zPFo#R5rZ9er9IBSd4)-!YRGH~tu@Xo5oUQLmYPTlo5^x@WNY8`0qVxN^)c}e(ducs)$8LJ`V;;QdcrKe1h@`7D+ zG&S=fZyZ$0gt}RJf|X6FQ~{sM#q#P^Z|ynTGn+umA9KUN3>3)X=rj{UihS8&bVR5& ztcwUNOQmIq4~a-A6eU{XUo8_~G}sDgl7B13c8Vhr7wXxN)t{Lj%IjrUL}3nkYsvP1 z{qGf(U%meXvsj}!zr>q%UCdvc_H3+sXQ)>Tq{$-2_H}&mzWaI4{eMp~bPNq^UNva7 z&|>`txZ~ji#J~4>%)eh^`O;^x^~Y~#$-D{537Z@^F51B#mR`h#?Om`?pdAMk&Yj|3 zdk^ou{>wbZEQbjRTyX?-#0{5f?658>@w=O!%{#W7&Cv($Vd(s`x!~J>!>!ea!JEhO zBOIB&rmkuVLM3ex&_ZJBWM9pq`vhFc3VaQ+>E}T;V9H6{#7g>94U0y{=NU-hPNPk$vB>no0{fqM zoTJTIf}pDa-D0ImoCZ{?MfUV9%Imgq{Dey}sPM$WS<=O6nrqiHanE6XblfE*)l<0O zrtdSozRG16Re0r&8sk5|o^zjfKELs|*Ybn*2*U-FA+yb5ae~JBb#QD2w_YX?7Ke0I zk>n2g;1;m_gkogi$@duE}xrHtJu<|z0e^zob^>+@DQNU7wh=J)A z30+6YHiDwCREpqQ%D7gc(~4$qQ%sp4K7TH}!U01P`5<=TI7_wq+I`9C0%s!5;vnY02xZ>l0)MGj>R2jKye!8v~ zvMI0Ho7DnanIq?ozTTUKI-UWG@>} zks4oZKftFB{*tI3QIEP9jS?3YcJi0!p3nT@grG1^&vzLMyY!R8Bqwj;@^5^cC)PV6 zc%jl028BV}t5EIvTvpu18p<^MvPxB`)tg+o|8`~y7QJdhxRCOe(H%UM5%8;&%0AIC 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