{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[2025-10-23 07:46:02,011] [INFO] [real_accelerator.py:219:get_accelerator] Setting ds_accelerator to cuda (auto detect)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/usr/bin/ld: cannot find -laio: No such file or directory\n", "collect2: error: ld returned 1 exit status\n", "/usr/bin/ld: cannot find -laio: No such file or directory\n", "collect2: error: ld returned 1 exit status\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "\n" ] } ], "source": [ "import json\n", "import torch\n", "from datasets import load_dataset\n", "from transformers import AutoTokenizer, AutoModelForSequenceClassification, TrainingArguments, Trainer\n", "model_name = \"/mnt/jeff/InCar/bert/results_classifier2/checkpoint-20901\"\n", "ctrl = json.load(open('../ctrl_toolcall_train_eng_v1.6_update2.json'))+json.load(open('../ctrl_toolcall_train_v1.6_ch.json'))\n", "id2label = json.load(open('{}/config.json'.format(model_name)))[\"id2label\"]\n", "id2label = {int(k):id2label[k] for k in id2label}\n", "label2id = {v: k for k, v in id2label.items()}\n", "\n", "num_labels = len(id2label)\n", "\n", "tokenizer = AutoTokenizer.from_pretrained(model_name)\n", "model = AutoModelForSequenceClassification.from_pretrained(\n", " model_name,\n", " num_labels=num_labels,\n", " id2label=id2label,\n", " label2id=label2id\n", ").to('cuda')\n", "def preprocess_function(examples):\n", " return tokenizer(examples[\"text\"], truncation=True, padding=True)\n", "model.eval()\n", "print()" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import ctypes\n", "import os\n", "from tqdm import tqdm\n", "lib_path = \"postprocess.so\"\n", "lib = ctypes.CDLL(lib_path)\n", "\n", "\n", "lib.postprocess_c.argtypes = [ctypes.c_char_p, ctypes.c_char_p]\n", "lib.postprocess_c.restype = ctypes.c_char_p\n", "\n", "def call_postprocess(query, pred_class):\n", " \"\"\"\n", " 呼叫 C++ postprocess 函式並處理回傳結果。\n", " \"\"\"\n", " # 將 Python 字串編碼為 bytes,以符合 C++ 的 char* 參數要求\n", " query_bytes = query.encode('utf-8')\n", " pred_class_bytes = pred_class.encode('utf-8')\n", " \n", " # 呼叫 C++ 函式\n", " result_ptr = lib.postprocess_c(query_bytes, pred_class_bytes)\n", " \n", " # 將回傳的 C 字串解碼為 Python 字串\n", " if result_ptr:\n", " result_str = result_ptr.decode('utf-8')\n", " # 釋放 C++ 函式動態分配的記憶體\n", " return result_str\n", " else:\n", " return None\n", "def inference_cpp(query):\n", " inputs = tokenizer(query, padding=True, truncation=True, return_tensors=\"pt\").to('cuda')\n", " with torch.no_grad():\n", " outputs = model(**inputs)\n", " logits = outputs.logits\n", " confidence = max(torch.nn.functional.softmax(logits[0]))\n", " predictions = torch.argmax(logits, dim=-1)\n", " pred_class = id2label[predictions.cpu().numpy()[0]]\n", " if pred_class=='others':return {},{},pred_class\n", " return call_postprocess(query,pred_class),pred_class,confidence" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[\n", " {\n", " \"arguments\": {\n", " \"areaId\": \"SEAT_ROW_1\",\n", " \"operation\": \"decrease\",\n", " \"propertyId\": \"HVAC_FAN_SPEED\",\n", " \"value\": \"1\"\n", " },\n", " \"name\": \"control_car_properties\"\n", " }\n", "]\n" ] } ], "source": [ "def call_postprocess(query, pred_class):\n", " \"\"\"\n", " 呼叫 C++ postprocess 函式並處理回傳結果。\n", " \"\"\"\n", " query_bytes = query.encode('utf-8')\n", " pred_class_bytes = pred_class.encode('utf-8')\n", " \n", " result_ptr = lib.postprocess_c(query_bytes, pred_class_bytes)\n", " \n", " if result_ptr:\n", " result_str = result_ptr.decode('utf-8')\n", " return result_str\n", " else:\n", " return None\n", "query_1 = \"Would you please turn off the SYNC function on the first row first?\"\n", "pred_class_1 = \"HVAC_FAN_SPEED%decrease\"\n", "print(call_postprocess(query_1, pred_class_1))" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_2721664/2360540827.py:34: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n", " confidence = max(torch.nn.functional.softmax(logits[0]))\n" ] }, { "data": { "text/plain": [ "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"set\",\\n \"propertyId\": \"HVAC_TEMPERATURE_SET\",\\n \"value\": \"25\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]',\n", " 'HVAC_TEMPERATURE_SET',\n", " tensor(0.9915, device='cuda:0'))" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "inference_cpp(\"temperature to 25\")" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 0%| | 0/5000 [00:000:\n", " if 'value' in a[0]['arguments']:a[0]['arguments']['value'] = str(a[0]['arguments']['value'])\n", " if (a!=b):\n", " wrong.append({'query':conv['value'],'model':a,'gt':b})\n", " # print(conv['value'])\n", " # print(a)\n", " # print(b)\n", " # print(model_out[1:])\n", " # print('------------')\n", "len(wrong)/total" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_2323534/2360540827.py:34: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n", " confidence = max(torch.nn.functional.softmax(logits[0]))\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"set\",\\n \"propertyId\": \"POWER_ALL_SUNSHADE\",\\n \"value\": \"false\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]', 'POWER_ALL_SUNSHADE%false', tensor(0.9997, device='cuda:0'))\n", "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"SUNROOF\",\\n \"operation\": \"set\",\\n \"propertyId\": \"POWER_SUNSHADE\",\\n \"value\": \"true\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]', 'POWER_SUNSHADE%SUNROOF%true', tensor(1.0000, device='cuda:0'))\n", "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"set\",\\n \"propertyId\": \"POWER_ALL_SUNSHADE\",\\n \"value\": \"false\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]', 'POWER_ALL_SUNSHADE%false', tensor(1.0000, device='cuda:0'))\n", "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"set\",\\n \"propertyId\": \"POWER_ALL_SUNSHADE\",\\n \"value\": \"false\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]', 'POWER_ALL_SUNSHADE%false', tensor(1.0000, device='cuda:0'))\n", "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"set\",\\n \"propertyId\": \"POWER_ALL_SUNSHADE\",\\n \"value\": \"false\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]', 'POWER_ALL_SUNSHADE%false', tensor(0.9994, device='cuda:0'))\n" ] } ], "source": [ "for a in ['外面太亮了',\n", " '想看天空',\n", " '太陽太大了',\n", " '太陽太曬了',\n", " '太刺眼了']:\n", " print(inference_cpp(a))" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'query': '風太強了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點大',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點大',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風太吵了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點大',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風量過強',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點吵',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點吵',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風太強了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風量過強',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風太吵了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '太熱了吧',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '太熱了吧',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '風有點弱',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': '風量過強',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '爆幹熱',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '風太吵了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '太熱了吧',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '風有點弱',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': '風太吵了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風量過強',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風太強了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點大',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '太熱了吧',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '風量太大',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '風有點弱',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': '風太吵了',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': '爆幹熱',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '我好冷',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '32'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]}]" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "wrong" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.04649656314103717" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(wrong)/total" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "978" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "real_wrong = []\n", "for w in wrong:\n", " if type(w['model'])==type(None) or len(w['model'])==0:\n", " pass\n", " elif \"I'm sorry\" in w['query']:continue\n", " elif w['model']==w['gt']:continue\n", " elif w['gt'][0]['name'] in ['get_hhtd_info', 'get_vehicle_info']:continue\n", " elif w['model'][0]['arguments']['areaId']!=w['gt'][0]['arguments']['areaId'] and w['model'][0]['arguments']['areaId']==\"\":\n", " if not 'row' in w['query'] and not 'left' in w['query'] and not 'right' in w['query']:\n", " continue\n", " elif w['model'][0]['arguments']['areaId']+'_RIGHT'==w['gt'][0]['arguments']['areaId']:\n", " continue\n", " elif w['model'][0]['arguments']['areaId']+'_LEFT'==w['gt'][0]['arguments']['areaId']:\n", " continue\n", " elif w['model'][0]['arguments']['areaId']!=w['gt'][0]['arguments']['areaId']:\n", " continue\n", " real_wrong.append(w)\n", "len(real_wrong)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[{'query': 'I need to remember where the second row, on the left, chair is located.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please improve the ventilation in the middle row seats to the maximum possible level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The air outlet located directly in the middle of the upper row on the right side.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'The sweltering heat is truly unbearable.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please lower the car window by about 20 centimeters.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Please open the sliding door on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please remember the location of the cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The ventilation system on the middle row, on the left side of the chair, needs to be turned up to the maximum level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please assist me in adjusting the front left lumbar cushion so that it is positioned correctly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the position of the left rearbackrest so that it moves backward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': '\"Could you please adjust the ventilation system to increase the airflow by about 20%?\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please slightly open the window in the front row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please remember to keep the seat in the middle row on the left side for later use.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please assist with activating the seat heating function.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': '\"Remember the location of the cushion on the second row, on the left side.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me in adjusting the second-row left headrest to its proper position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The middle row, on the left side, has the seating arrangement firmly etched in my memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in enhancing my memory capabilities.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please open the right car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '10'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please lower the left side window of the second row by 30 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Please adjust the fan speed on the chair to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '10'}}]},\n", " {'query': 'Please turn on the fresh air mode for the third row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'EXTERNAL'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please arrange the seating arrangements so that they are easily remembered.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the car window to about 80% of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Please close the window to about half its original size.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please increase the ventilation level to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Save the cushion for later use in memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please make the sentence clearer and more natural in language. Also, fix any grammar errors. Keep the original meaning and terms the same.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'SWING'}}]},\n", " {'query': 'Please assist me in positioning the headrest correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Reduce the ventilation level of the chairs in the middle row all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'The air outlet located on the second row, on the right side, should be turned off first.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'OFF'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please remember to save the seat in the second row on the left side for later use.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'The sentence \"Directly make AC blow Body\" is unclear and possibly contains errors. It seems to be a jumbled phrase that doesn\\'t convey a clear meaning. If you could provide more context or clarify what you meant, I would be able to help you rephrase it more accurately.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': 'Please open the window of the first car in the row to about half its height.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please adjust the height of the lumbar cushion in the front row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please remember the value of \"cushion\" as soon as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please make sure to close the right rear car window to about 40 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'The last row seat has been firmly etched in my memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Make sure the air circulation in the seating area is as good as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please turn on the device located in the third row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': ''}}]},\n", " {'query': 'Move the seat at the very back slightly to the left and then push it forward a bit.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in adjusting the window to be at a position of 80 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Please keep the left-side car window open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FREE'}}]},\n", " {'query': 'Please adjust the right car window roll-up to about 60 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please assist me in closing the right rear car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'value': '10'}}]},\n", " {'query': 'Please help to adjust the position of the lumbar cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please perform the seatback adjustment procedure.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please move the right car window so that it is only partially open, about halfway closed.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please use the cushion as a reminder of something important.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The car window on the right side is left slightly ajar.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Could you please open the car window just a little bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': \"The third row on the left is easy to remember because it's located towards the back of the space.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me in memorizing the phrase \"seat to memory 2\".',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '2'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please lower the car window to about 30 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '30'}}]},\n", " {'query': 'Please assist me in adjusting the position of the lumbar cushion so that it is positioned correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The last row on the right side contains a chair that needs to be remembered.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the height of the chair located in the second row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"Please assist me in adjusting the second row's right-side window to about 20 percent open.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'value': '20'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': \"I'm just too chilly to be able to function properly or take care of anything at the moment.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please assist me in rolling down the right car window to about 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Could you please lower the car window by about 40 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, please fix any grammar errors. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\', \\'left\\', or \\'number\\' in the sentence. Don\\'t add any extra words before the corrected version.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in adjusting the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The car window on the far left side near the front of the vehicle was slightly opened.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please return the seat to its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'RESTORE'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': 'Please remember to place the first row of chairs on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in adjusting the height of the lumbar support cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please close the car window completely.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '0'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please make sure to save the cushion as a memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Could you please open the car window just a little bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please lower the cushion on the front row, on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the left-side car window by about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Save the cushion for later use in your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please open the car window to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Could you please adjust the window to be open at 90 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Even just taking a few steps is making me sweat.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I'm really feeling really chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please set the chair heating to the warmest level possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please move to the front row and take the seat on the left.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'STOW'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'FOLD'}}]},\n", " {'query': 'Please lower the right car window to about 60 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please lower the car window to about half its open position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '50'}}]},\n", " {'query': 'Please perform the lumbar cushion adjustment procedure.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the middle row right car window to about 90 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'The sentence is unclear and seems to be a jumble of words without any proper structure or meaning. It might be a mistake or a typo. If you could provide more context or clarify what you want to ask, I would be happy to help you rephrase it in a clearer way.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'FOOT'}}]},\n", " {'query': 'Please close the right car window to about 70 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please lower the car window to about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'I want to ensure that there is good air circulation for the people sitting on the first floor.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me in adjusting the car window to about 70 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '70'}}]},\n", " {'query': 'The ventilation system is set to provide minimal air circulation, ensuring a comfortable and cozy environment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The seat heating system can be adjusted to provide even more warmth by selecting the second highest level of operation.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the left front window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'I need to remember which chair is located in the front row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The sentence \"Seating ventilation to max\" means to adjust the ventilation system in a vehicle or other enclosed space to provide the maximum amount of fresh air circulation possible. This is often done to improve comfort, reduce discomfort, and maintain good air quality for the people inside.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The last car window on the right should be rolled down to about 60 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please move the chair in the third row to the right.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'FOLD'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '7'}}]},\n", " {'query': '\"Remember to save the seat in the last row for someone special.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please leave the window slightly ajar.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist me in adjusting the sunshade to the proper position right now.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in memorizing how to arrange the last row of seats so that they are all facing the right direction.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I want to make sure that the second row's rightmost cushion is stored in my memory so I can easily access it later.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please slightly lower the left car window at the very end of the row.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in lowering the right-side window of the second row by approximately 20 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'MODEL_3'}}]},\n", " {'query': 'Please slightly open the window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in rolling up the right car window to about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': \"The heat is so intense that it's causing me to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I'm asking you to adjust the seat ventilation setting to the second option available.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please increase the speed of the right fan by one level first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please remember the seat located in the last row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The weather is extremely chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the car window on the first row to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Please adjust the intensity of the massage on the chair on the right side to a higher level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'HIGH'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'HIGH'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the car window to about 40 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please adjust the lumbar support to the top position and then move it to the right.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': \"Could you please adjust the second row's left-side window to about 60 percent open?\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'value': '60'}}]},\n", " {'query': 'Please pause the AUTO function for a brief moment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AUTO_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please assist me in opening the front trunk of the car.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'FRONT_TRUNK_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'FRONT_TRUNK_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'It functions in a similar way to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please help me to adjust the settings on the device to the \"MAX mode\" located in the middle row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_MAX_AC_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"Even after taking just a few short walks, I'm already starting to sweat.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The request is to arrange the seating in a way that will create a memorable experience for everyone involved.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' To help you remember something better, you can use a \"cushion\" – something that makes the information easier to grasp and retain. In other words, think of the information you want to remember as a cushion that supports and protects your brain, making it easier for you to store it in your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The phrase \"seat set to memory\" means that something is firmly etched in someone\\'s mind and they will never forget it. It describes a situation where information or an experience has been so memorable that it remains permanently stored in their memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in adjusting the height of the middle row seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please save the information about the second row of seats in memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please reserve a seat for future reference.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please help me slightly open the window in the third row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please increase the fan speed on the front row, specifically on the left side, to the second highest level immediately.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please make sure to adjust the footrest lever correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'The weather is really freezing.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please adjust the car window to about 40 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Save the information directly into your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please disable the ventilation for the third-row right seat all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '\"Add the concept of \\'chair position\\' to your memory.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'I would like to reduce the amount of ventilation through the cushions as much as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"Please extend the right footrest.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please open the left rear car window to about 90 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Could you please lower the right rear window by about 20 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease',\n", " 'value': '20'}}]},\n", " {'query': 'Could you please adjust the window to be about 50% open?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '50'}}]},\n", " {'query': \"The weather is so sweltering that even the air conditioner can't keep us cool.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please remember to reserve the first-row seat for someone special.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please roll down the car window a bit more?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': \"Please adjust the window's scroll bar so that it shows 100 percent of the content.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': 'Please lower the window on the second row to about 60 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': ' \"Please make the text easier to understand by rephrasing it in a more straightforward way.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The phrase \"add seat to memory\" means to remember something more clearly or easily by associating it with a familiar or memorable image or concept. This can help you retain information better by creating a mental connection between the new information and something you already know.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please help to adjust the position of the right lumbar cushion by pulling it back.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please open the car window to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please move the chair that is on the far right a little bit forward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please make sure to position the lumbar support properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the window to be about 40 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'The weather is really chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Adjust the fan speed to its lowest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the position of the lumbar cushion to make it more comfortable.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The person closed the left car window, leaving just a tiny space open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please keep the cushion safe as a reminder of something important.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please disable the ventilation for the seat located in the third row on the left side all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the front-row car window to about 80 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': ' \"Adjust the position of the middle row\\'s rightmost window so that its height is exactly 0 percent.\" This version of the sentence is clearer and easier to understand, while still conveying the same exact meaning as the original.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': 'I would like to request that the seats in the first row be saved in my memory so I can easily access them later.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please remember the location of the third row, the left-side chair.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please act promptly to adjust the left side of the sunshade.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please keep the second row, left-side seat in your mind.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'I need to remember the location of the last row, specifically the chair on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please set the cushion as your third memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the rear passenger window on the left side to be about 90 percent rolled up.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'The weather is really freezing.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please keep the phrase \"save chair to memory\" in your mind.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me with completing the task of lowering the left footrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please lower the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The last row of lumbar cushions should be adjusted to provide proper support.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please move the cushion in the front row to the right position, so I can remember where it was.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please make sure to set the front passenger seat to \"Memory 1.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The car window in the first row was opened to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please make sure to adjust the heating for the seats in the middle row properly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Remember to save the seats in the second row for later use.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': '\"Can you close the second row on the left side?\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SYNC_MODE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the opening of the right-side car window to be a little smaller.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'I prefer to keep the ventilation in the cushion at a minimal level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'The first row of cushions should have minimal ventilation.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the car window to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Could you please open the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '100'}}]},\n", " {'query': 'Save the seating information to memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'FACE'}}]},\n", " {'query': '\"Add seating positions to your memory.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please lower the car window to about 90 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '90'}}]},\n", " {'query': 'Please assist me in managing the adjustment of the lumbar support cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please keep the chair as a reminder of something important.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please lower the right car window by about 70 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please adjust the second-row window to be at 30 percent open.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar issues. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\' or \\'number\\'. Don\\'t add any extra words before the corrected sentence. And finally, make the\\'reading light\\' shine brighter.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the height of the right headrest on the third row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the position of the chair on the right side so that it is placed further to the right.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Could you please shift the cushion at the bottom of the row a bit closer to the front?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please provide some additional context or information about \"memory 1\" so I can better assist you with paraphrasing the sentence.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please open the car window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please assist me with performing the action of lowering the support for the right thigh to the lowest position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The request is to include an extra seat as a memorial to someone special.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '\". Do not add any explaination and anything else apart from the corrected sentence.\" is asking for a rephrasing of the sentence \"Add the third row of right-seating seats to memory 3\" in a way that is more natural and grammatically correct. The corrected sentence would be',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The sentence \"Cushion massage off\" is unclear and does not make sense in standard English. It seems to be a jumble of words without a clear meaning or grammatical structure. It might be a mistake or a phrase from a different language that needs further context to be properly translated or interpreted.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please make the sentence sound more natural and clear. Also, fix any grammatical errors. Keep the original meaning and terms the same.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please open the sliding door on the left side immediately.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please lower the temperature as quickly as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please turn on the seat heating to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please lower the left side window of the third row to about 30 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please help with adjusting the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the length of the left legrest on the second row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the second row car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease',\n", " 'value': '10'}}]},\n", " {'query': 'Please adjust the heating on the first row of chairs to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Make sure the air circulation in the seating area is as low as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me with finishing the installation of the heating system for the cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please lower the car window to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'I need to remember which seat is in the last row, specifically the second one.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please place the Ottoman cushion in its proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please store the seating arrangement in your memory so that you can recall it later.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please reduce the window size to about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Please adjust the height of the head support located in the third row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the seat heating to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please reduce the size of the leftmost window by a small amount; thank you.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please help with operating the extension for the middle row seat cushion.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in memorizing the phrase \"save the chair for later.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please slightly open the car window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please help to turn on the heating function for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Make sure the air circulation in the seats is as good as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please adjust the height of the middle row right lumbar cushion.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please ensure that the right footrest is raised before proceeding with the next step.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Could you please lower the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'I need to save the information about the chair to my memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the length of the right footrest on the third row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in adjusting the height of the lumbar cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Move the chair located at the front left position to the second memory location.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please leave a small space at the end of the line next to the right-side window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Could you please lower the car window by about half?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '50'}}]},\n", " {'query': 'Please allow the window in the middle row to open slightly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Save that spot in your mind for later use.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': \"The weather is so scorching that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please ensure the proper operation of the middle row lumbar cushion adjustment mechanism.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please close the left-side car window to about 90 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': \"I'm really feeling very chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Move the chair at the very end of the row a little bit towards the front.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The last person on the left needs my assistance to turn on the AC.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AC_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AC_ON',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'I\\'d like to add the word \"chair\" to the list of items I need to remember.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the right car window by about 60 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': '\"Please remember the location of the third row, left-side seat.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please open the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '40'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_vehicle_info',\n", " 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'MODEL_1'}}]},\n", " {'query': 'Please assist me in turning on the heating feature for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in adjusting the legrest lever.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please lower the left car window slightly, thank you.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please adjust the right car window to make it about 50 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist me in moving the backrest of the first row forward.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The weather is really freezing.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'The vent on the chair located in the middle row on the left side is set to the third position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the position of the right footrest by moving it downward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please complete the adjustment of the right lumbar support for the down operation.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please ensure that the front-row seat is preserved for future reference.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the right car window by about 70 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Reduce the ventilation setting for the seating area all at once.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The cushion set has been programmed to retain its original settings.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The breeze is rather gentle.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': 'I would like you to save the information about the cushion in your memory so that you can access it later.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please make sure to place the support for the right thigh in the correct position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"The heat is so intense that it's causing me to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FACE'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please remember the location of the front row left-side chair.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"Please adjust the ventilation setting for the first row on the right side to the highest level.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Save the position of the chair in your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the car window to be at a position where it is 60 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please make sure the lumbar cushion is adjusted to the correct height.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': '\"Seating ventilation, please turn it up to the maximum.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Reduce the ventilation level for the seating area all at once.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please close the left-side car window to about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Please adjust the left-side car window to an opening of about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Could you please lower the front-row car window by about 20 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': ' I want you to remember the information located in the first row, on the left seat, specifically the third item in that row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please provide some additional context or information about \"memory 1\" so I can better assist you with paraphrasing the sentence.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'I need a chair set that matches the style of my room perfectly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the car window by 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '10'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Please adjust the temperature of the heating system for the chair located in the middle row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Could you please lower the car window a little bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please increase the fan speed to the next higher level immediately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please make sure to lower the car window to about 60 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please perform the adjustment of the left seatback to its retracted position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please quickly turn on the heating function for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"The weather is so scorching that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I would like to have the driver's seat adjusted to its second memory setting.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in operating the mechanism that opens the power-operated tailgate of the vehicle.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_TAILGATE_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_TAILGATE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Move the seat at the very back of the row forward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please activate the heating function for the cushion located in the second row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please raise the support on the right side of the upper thigh.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in finishing the setup of the lumbar support for the advanced row machine.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'imprinted firmly in the mind.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please assist me in positioning the lumbar support cushion properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in raising the right-side car window to approximately 60 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please move that sliding door on the right side more quickly.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Could you please lower the car window to about 60 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please make sure the lumbar cushion in the front row is properly positioned and in place.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase'}}]},\n", " {'query': ' to close the first item on the list, then the last item on the list, and finally the item located on the left side of the current row. The word \"SYNC\" is likely an abbreviation for some command or process that needs to be executed in conjunction with these actions.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SYNC_MODE',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SYNC_MODE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please open the front row right window and adjust it to about 90 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please open the car window to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'The window on the right side of the last row can be rolled down to about 70 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Please assist me in managing the adjustment of the lumbar support cushion.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The last item on the right side should be turned off using the AUTO function.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AUTO_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please reserve your seat for future reference.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the window to be about 40 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please assist me in opening the middle window on the right side of the car to about half its maximum position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Could you please lower the car window on the last row by about 30 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please adjust the temperature in the second row on the right by 7 degrees.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '7'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'value': '7'}}]},\n", " {'query': 'Please lower the left rear car window to approximately 60 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please lower the window of the car in the first row to about 90 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'value': '90'}}]},\n", " {'query': '\"Make seat heating the most comfortable feature available.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Could you please open the car window all the way?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '100'}}]},\n", " {'query': ' \"Please direct the airflow from row AC to the face area.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'value': 'FACE'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'FACE'}}]},\n", " {'query': 'Reduce the ventilation setting for the seating area all at once.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '\"Please adjust the seat massage settings to the highest level of intensity.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'HIGH'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'LOW'}}]},\n", " {'query': 'Please lower the temperature as quickly as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': ' \"A slightly open car window is sufficient.\" This version is more fluent and uses simpler language while still conveying the same meaning as the original sentence.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist me in moving the chair back to its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'RESTORE'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I'm looking for some seats that offer good ventilation in the first floor area.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"Adjust the settings of the second row window to ensure that it is completely closed (with a percentage value of 0).\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'value': '0'}}]},\n", " {'query': 'I would prefer for there to be less ventilation in the seating area.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please open the car window on the right side of the first row just a little bit wider.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in adjusting the height of the headrest on the middle row of seats.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Save the information directly into your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please disable the ventilation for the front-row seats all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the support for the upper right lumbar area to an upright position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Save that spot in your mind right away.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please set the cushion as your second choice for memory storage.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the seat heating to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FACE'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please help me increase the heating level of the cushion on the second row, specifically the one on the left, by two levels.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the left car window by about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please assist me in enhancing my memory capabilities.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please open the window of the first car in the row just a little bit.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please assist me in blocking the ventilation opening located on the right side of the backseat row.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"The weather is so scorching that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'I want to remember the location of the front-row left seat for future reference.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in opening the right rear car window to 100 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '100'}}]},\n", " {'query': 'Could you please lower the car window by about 40 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '40'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please open the front row car window to about 70 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Could you please lower the car window by about half?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '50'}}]},\n", " {'query': 'Please act promptly and open the left sliding door.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the ventilation settings to the highest level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please adjust the window to be about 50% open?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '50'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the car window to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'The weather is really chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please make sure to place the lumbar cushion in the correct position to provide proper support for your lower back.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist in adjusting the lumbar cushion to its proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the massage settings for the front row left seat to the highest level of intensity.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'HIGH'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'LOW'}}]},\n", " {'query': 'Could you please lower the car window by about 10 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please keep the third row in \"keep mode\" for me.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'value': 'MAINTAIN'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': \"The weather is so sweltering that even the air conditioner can't cool the room effectively.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please move the right lumbar cushion back.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please open the left car window in the third row a little further?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the left side car window so that it is about 70 percent closed.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please arrange the seating so that each person has their preferred seat, just like they remember it from the past.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': \"Please turn at the left when you reach the door with the 'left' sign on it.\",\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Could you please lower the window of the car in the front row by about 10 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'value': '10'}}]},\n", " {'query': 'Could you please adjust the middle row car window to about 20 percent open?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'value': '20'}}]},\n", " {'query': 'Please remember to keep the cushion on the first row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please turn on the device located in the top-left corner of the screen.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_MAX_AC_ON',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please remember to place the cushion in position 1.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please ensure that the heating system for the seating areas is properly installed and functioning correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please change the state of the right window to \"closed\".',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': 'Please make the sentence sound more natural and clear, while correcting any grammatical errors. Keep the original meaning and terms unchanged.',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please turn the seat heating to the warmest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the car window by about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '80'}}]},\n", " {'query': 'I would like the chair massage to be adjusted to have the highest level of intensity.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'HIGH'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'LOW'}}]},\n", " {'query': 'Please make sure to activate the heating function for the chairs in the middle row properly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in lowering the left-side window of the third row by about 30 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Could you please lower the car window by about half?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': \"The weather is really hot today, so I've decided to turn on the ventilation for the second-row left seat to make it more comfortable for me.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please pause the AUTO function for a brief moment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AUTO_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Please assist in turning on the automatic air circulation for the third row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'AUTO'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please increase the speed of the right fan by three levels immediately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '3'}}]},\n", " {'query': \"Reduce the airflow from the chair's ventilation system all at once.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Save the cushion for later use in your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please make sure to adjust the left rearrest so that it moves forward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please close the window to about half its size.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '50'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '40'}}]},\n", " {'query': 'Please assist with installing the footrest so that it can be placed in its proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The turn-off is located in the penultimate row.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'OFF'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please assist me with positioning the Ottoman sofa properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in positioning the lumbar support cushion properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'I need to remember where the third row left seat is located.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please arrange the seating accordingly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'STOW'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the position of the top-left window so that its height is reduced to approximately 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Could you please lower the car window to about 60 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, make sure there are no grammar errors. Keep the same meaning and don\\'t change any important words or numbers.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the seating arrangement so that the person in the first row on the right side is in the \"Office Mode\" setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFFICE'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar issues. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\' or \\'number.\\' Don\\'t add any extra words before the corrected sentence. And finally, make the reading light shine brighter.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The weather is really chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please lower the right car window to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': '\"Save your seat for later; you might need it.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the height of the lumbar cushion accordingly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please act quickly and turn on the heating for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the seat heating to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please increase the speed of the right fan by two levels first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '2'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'I need to secure front-row seats so I can remember everything clearly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please keep the wind at a moderate level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please raise the speed of the right fan by seven levels?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '7'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '7'}}]},\n", " {'query': 'Please adjust the right-side footrest to its lowest position and complete the operation accordingly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Save the cushion for later use.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"A cushion can help enhance memory retention.\" This sentence clearly conveys the same meaning as the original one, which is that using a cushion (or something similar) can aid in improving the ability to remember information.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar issues. Make sure the meaning remains the same, and don\\'t change the original terms. Don\\'t add any extra words or sentences. And, try to make the text less complicated to read.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'I need to save the settings of the front passenger seat to my memory so I can easily recall them later.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'I would like to receive a massage on my left front hip area.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_REGION',\n", " 'value': 'SEAT'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_REGION',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'SEAT'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar errors. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\' or \\'number\\'. Don\\'t add any extra words before the corrected sentence. And finally, make the reading light shine brighter.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The feature that provides the most warmth is seat heating.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '\"Add some cushioning to your memory storage capacity.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"I'm really freezing.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please assist me in adjusting the sunshade to the proper position right now.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Can you please adjust the temperature on the middle row, specifically the one on the right, to 27 degrees?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '27'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the left-side car window by 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please reduce the window size to approximately 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Save the seating information to memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The weather is really freezing.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please move the chair that is in the first row to the right.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Turn the seat heating up all the way and then get it done.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please provide more context or information about what you would like to rephrase. The sentence \"Kindly lumbar support push forward\" is rather unclear and difficult to understand without additional details. Could you provide more context or examples of what you want to convey?',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in moving the left rearbackrest forward to its third position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the ventilation setting for the front passenger seat to the second highest level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please remember to position the cushion on the third row, on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"I'd like an air conditioner located in the front row on the right side, preferably in a position that provides direct airflow.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'FREE'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_POWER_ON',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please disable the massage function on the last cushion on the left row.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please pause the AUTO function for a brief moment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AUTO_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Could you please lower the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'I want to remember the chair located in the third row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the car window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The request is to provide additional seating as a way to commemorate or honor someone or something.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': \"Remember the seat you're sitting in so you can easily find it later.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the massage intensity of the left-side cushion to the lowest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'LOW'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'LOW'}}]},\n", " {'query': 'The phrase \"cushion add to memory\" suggests that something provides a gentle support or protection that helps enhance the retention of information or memories. In other words, it implies that a particular element or feature can make it easier for people to remember things by providing a comfortable or supportive environment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the position of the left footrest so that it moves downward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"I'd like to activate the air circulation system.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'INTERNAL'}}]},\n", " {'query': 'Could you please lower the car window by about 10 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '10'}}]},\n", " {'query': ' \"Could you please help adjust the length of the footrest?\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please complete the lumbar support adjustment process.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please reduce the brightness of the leftmost window by 40%.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'value': '60'}}]},\n", " {'query': 'Please adjust the position of the sunshade so that it blocks the sunlight properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please make sure to adjust the height of the headrest on the middle row, on the left side, properly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the right-side car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please rearrange the words of the sentence to make it sound more natural and fluent. Also, fix any grammatical errors that may be present. Make sure the meaning of the sentence remains the same, and do not alter any of the original terms (like \"right,\" \"left,\" or \"number\"). Do not include any additional sentences or explanations; just provide the corrected version of the given sentence.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': '\"Please add a third row of chairs to serve as a memory aid for reference.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please request to have the front row right-side seat reserved for your use as a memento.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': 'Please assist me in moving the chair back to its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'RESTORE'}}]},\n", " {'query': 'Please make the sentence clearer and more natural in language. Also, fix any grammar errors that may exist. The original sentence seems a bit confusing and unclear.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FREE'}}]},\n", " {'query': \"The car's window on the left side was adjusted to an angle of 30 percent.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'I want to remember the cushion on the right side of the first row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the right-side car window to an opening of 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': ' Adjust the ventilation settings to the highest level possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The ventilation system should be adjusted to provide as little air circulation as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The third row, on the left side, contains a chair that has been programmed to remember its previous position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please remember the location of the second-row chair.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the car window by about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '40'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': 'FOOT'}}]},\n", " {'query': 'The sentence \"AC blow Body\" is unclear and does not make sense in standard English. It seems to be a jumbled or misspelled phrase. If you could provide more context or clarify what you meant, I would be able to help you rephrase it more accurately.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': \"I'm just too chilly to be able to deal with anything right now.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Make sure the air circulation in the seats is as good as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The second row of cushions enhances the overall comfort and creates a pleasant memory for those who use it.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"Replace the cushion with the one marked \\'Memory 3\\'.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'BREAK'}}]},\n", " {'query': 'I want to remember the location of the second row, specifically the chair on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'I want to remember the location of the middle row, specifically the seat on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the ventilation settings to the highest level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me in managing the adjustment of the right footrest in the front row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': \"I'm really feeling chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please arrange the seats promptly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'STOW'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FOLD'}}]},\n", " {'query': 'Please adjust the car window to an opening of approximately 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please adjust the position of the right footrest by moving it downward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the position of the top-left window so that its height is about 50 percent of the total screen height.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Could you please lower the car window to about 70 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please adjust the settings to enable the \"right air outlet mode\" and ensure it remains in the \"free close\" position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'OFF'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'The phrase \"seat massage off\" seems to be a jumbled or unclear expression. It might be intended to describe a situation where someone receives a massage while sitting in a particular seat, but the wording is not clear enough to convey the exact meaning. If you could provide more context or clarify what you want to express, I would be able to help you rephrase it more accurately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_REGION',\n", " 'value': 'SEAT'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Please turn on the heating function for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'It functions in a similar way to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The last row on the left contains a chair that has been stored in my memory for a long time.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please leave the window slightly ajar.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Remember to keep the third row, left seating position in your mind.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please help with the process of adjusting the lumbar support.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The front row left-side seat can be adjusted to a zero-gravity mode.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'ZERO_GRAVITY'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please keep the wind at a moderate level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the car window to about 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please help me remember to place the cushion on the left side of the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The sweltering heat is truly unbearable.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please adjust the right car window so that it is about 80 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please adjust the ventilation system on the middle row, specifically the right-side seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please reduce the window size to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'The seating arrangement has been firmly etched in my memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"Please make the sentence sound more natural and clear while still conveying the same meaning. Also, fix any grammar errors that might be present. Keep the original terms and don't add any extra words or phrases.\",\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the car window to about 70 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'The weather is really chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please adjust the right-side window so that it is only partially open, about halfway closed.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist in adjusting the height of the lumbar support on the second row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in adjusting the position of the lumbar cushion on the right side of the second row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Reduce the ventilation level of the cushion all at once.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me with performing the seatback adjustment process.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Could you please adjust the temperature to a cooler level on the left side of the device?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the vent on the cushion on the left side of the second row to its maximum setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Save seating for later use.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the left lumbar support.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_vehicle_info',\n", " 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please lower the car window to about half its maximum opening.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '50'}}]},\n", " {'query': \"It's absolutely sweltering outside, and the heat is just too much to bear.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'I would like to have the ventilation on the chair on the right side of the last row turned up to the maximum level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The chair was programmed to remember its previous position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': \"I'm really freezing.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please assist me in adjusting the lumbar cushion on the right side of the middle row so that it is positioned correctly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The first cushion on the left side should be saved in memory as number 3.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please assist me in adjusting the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please lower the car window to about 90 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please assist me in adjusting the height of the headrest on the second row, located on the left side, to make it in the correct position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please keep the middle row, left seat in your mind.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please store the settings for the \"seat\" in your memory so you can recall them later.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in adjusting the lumbar support of the first row so that it is positioned correctly.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the height of the lumbar support in the middle row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Even just taking a few steps is making me sweat.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': ' \"To improve your memory, try adding more visual aids or using mnemonic techniques.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please ensure that the heating for the last row of seats is properly activated and functioning.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'I want to remember where the second row of seats is located, specifically the right side of seat number 1.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please remember to save the last row on the left for seating.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please remember to include the middle row seat in your considerations.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please reduce the size of the leftmost window by a small amount; thank you.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in activating the middle row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': ''}}]},\n", " {'query': 'Please adjust the car window to about 40 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please increase the fan speed to the next highest level immediately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '7'}}]},\n", " {'query': 'Please assist with opening the front trunk.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'FRONT_TRUNK_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'FRONT_TRUNK_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in turning on the heating function for the steering wheel.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist with moving the right footrest forward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please keep the cushion as a reminder of the important memory you have.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the position of the lumbar cushion on the bottom row so that it is in the correct place.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please keep the right car window slightly open, about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please reserve the second-row seat for someone special as a cherished memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please disable the ventilation for the front-row seats all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please increase the fan speed to the next higher level right away.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the height of the right lumbar support.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': '', 'operation': 'set', 'value': 'FOCUS'}}]},\n", " {'query': 'Please make sure to adjust the heating on the middle row seat to the desired level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Could you please assist me in lowering the right-side front window by about 50 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please adjust the intensity of the right-side seat massage to level 2.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'value': 'MEDIUM'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'MEDIUM'}}]},\n", " {'query': 'Please assist me with completing the lumbar support adjustment procedure.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': \"I'm really freezing.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar issues. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\' or \\'number\\'. Don\\'t add any extra words before the corrected sentence. And please make the\\'reading light\\' shine brighter!\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please arrange the seating accordingly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'STOW'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please open the sliding door on the left side immediately.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in moving the chair back to its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'RESTORE'}}]},\n", " {'query': 'Please slightly open the window a little bit.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': \"I'm really freezing.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FOOT'}}]},\n", " {'query': 'Please adjust the right-side car window to be about 90 percent closed.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please disable the focus function on the cushion located at the bottom right corner of the screen.',\n", " 'model': [{'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please extend the cushion on the right seat in the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Make sure the air circulation in the seating area is as good as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please provide further instructions or details regarding the execution of the task mentioned in the sentence.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"I'm really feeling really chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': ' \"Please make sure to adjust the heating level of the first-row seats to the second highest setting.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the ventilation level of the chair to the second setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please help with adjusting the footrest on the left side of the third row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please remember to keep the seat in the third row on the left for later use.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please move the chair in the second row to the right position, so that it can be used as a memory aid for reference.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': ' \"Please fix the AC air outlet as soon as possible.\" This sentence is more clear and grammatically correct, conveying the same meaning as the original sentence while being easier to understand.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'SYMMETRIC'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FREE'}}]},\n", " {'query': 'The cushion has been designed to act as a memory aid.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please roll down the car window a bit more?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': '\"Please reduce the window size to about 60 percent; that should be sufficient.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please make the sentence sound more natural and clear. Also, fix any grammar errors. Keep the same meaning and terms as in the original sentence.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the car window to about 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '20'}}]},\n", " {'query': 'Could you please lower the window on the car in the middle row on the left by about 40 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'increase',\n", " 'value': '40'}}]},\n", " {'query': 'Please lower the right car window by 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': \"I'm really freezing.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'I would like you to save the settings for the second row on the right side, specifically the cushion, so that it can be easily recalled later.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please close the car window on the left side of the last row completely.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'value': '100'}}]},\n", " {'query': 'Please assist me in memorizing that the second row should have a chair on the right side, specifically the third position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '\"Please remember the seat in the third row.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the right-side car window by about 90 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease',\n", " 'value': '90'}}]},\n", " {'query': 'Please remember to keep the seat in the first row on the left reserved for someone special.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The front row, on the right side, has seating that has been firmly etched in my memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': \"I'm really feeling chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please assist me in adjusting the height of the lumbar cushion on the first row of seats.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The last car on the left in the row has its window closed, and the brightness setting is at 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'value': '80'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please turn on and activate the heating function for the second-row seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please switch the cushion from the \"memory 1\" setting to the \"memory 2\" setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in properly adjusting the lumbar support for the middle row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease'}}]},\n", " {'query': ' To help you remember something better, you can use a \"cushion\" – something that makes the information more comfortable and easier to retain. In other words, think of the information you want to remember as a soft, supportive element that helps you store it in your mind more easily.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please assist me in managing and finishing the adjustment of the right-side legrest of the second row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in adjusting and finishing the installation of the headrest support in the front row seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please help to activate the heating on the chair located in the first row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please close the window when it reaches 50 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '50'}}]},\n", " {'query': 'Please turn on the heating for the second row of chairs on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please turn on the air circulation for the front passenger seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'AUTO'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'INTERNAL'}}]},\n", " {'query': 'Could you please adjust the front row right-side car window to about 80 percent open?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '80'}}]},\n", " {'query': 'Please lower the car window by about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '30'}}]},\n", " {'query': 'The sentence \"AC blow Body\" is unclear and does not make sense in standard English. It seems to be a jumble of words without any coherent meaning. Please provide more context or clarify the intended meaning so I can assist you with rephrasing it properly.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': \"I want to remember the location of the first row's seats on the right side.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please help to adjust the height of the right headrest in the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please assist me in lowering the car window to about 70 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'The ventilation system for the third-row left seat needs to be adjusted to the maximum setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please move the seat slightly to the left so that there is enough space for the retreat.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please raise the left-side car window to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Move the chair at the very end of the row to the front.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': \"The first-row seat is something that you'll definitely remember.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Adjust the temperature setting for the third row to its maximum level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'The weather is really chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': ' \"Adjust the settings to prioritize the exit function of the right cushion when in focus mode.\"',\n", " 'model': [{'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please close the window completely.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please slightly open the car window on the left side of the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please make sure to adjust the headrest to its proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please lower the window on the front row, on the left side, to about 80 percent of its maximum opening.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Make sure to adjust the headrest to a comfortable and supportive position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in adjusting the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please remember seat number 1.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"Let's lower the car window by about 30 percent.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '30'}}]},\n", " {'query': \"Please make sure to adjust the right-side window's scroll bar to exactly 80 percent.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please assist me in adjusting the car window to about 60 percent of its maximum opening position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '60'}}]},\n", " {'query': 'Please assist with turning on the heating for the front row, right-side seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the settings so that the chair switches to zero gravity mode.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'ZERO_GRAVITY'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, fix any grammar errors. Make sure the meaning remains the same, and don\\'t change the original terms like \\'right\\' or \\'number\\'. Don\\'t add any extra words before the corrected sentence. And finally, make the reading light shine brighter.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': ' a book, a pen, and a chair.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please help me remember to place the cushion on the right side of the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '7'}}]},\n", " {'query': 'Please help with finishing the task of lowering the left side of the head support.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the left lumbar support to the forward position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please help to adjust the cushion on the middle row, specifically the one on the right side, so that it can be moved up.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': \"The breeze isn't very strong.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': 'Please replace the word \"cushion\" with another appropriate word to complete the sentence.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'value': 'SWING'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'RESTORE'}}]},\n", " {'query': 'Please make sure to lower the car window to about 60 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please pause the AUTO function for a brief moment.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_AUTO_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please assist me with arranging the seating arrangements.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': 'Could you please lower the car window to about 40 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': \"I'd like to reserve a spot in my memory for that particular moment or experience.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please set the cushion as your second memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the left rear window to about 50 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist with installing the Ottoman sofa in its proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': ' the middle row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist in adjusting the length of the legrest on the first row seat.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Remember the seat location so you can find your seat easily later.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please lower the left car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please help with performing the lumbar cushion adjustment procedure.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': ' \"Directly open air outlet\" into a more fluent expression. Also, correct any grammatical mistakes. Make sure the meaning of the sentence remains the same, and do not alter any original terms like \"right,\" \"left,\" or numbers. No additional words should be added before or after the corrected sentence, and no explanations or other elements should be included.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'The sentence \"Open the car window\" is a straightforward instruction that asks someone to lift the window of a car to allow fresh air to enter or to remove stale air from the interior.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '100'}}]},\n", " {'query': \"I'm really feeling chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please adjust the left fan speed to its lowest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The last row on the right side has ventilation controls; please make sure to adjust them to the maximum setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please perform the seatback adjustment procedure.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Move the cushion on the left row slightly closer to the front.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The sweltering heat is truly unbearable.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"I'd like to reduce the amount of seating ventilation as much as possible.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please move the cushion at the bottom of the row slightly forward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': \"Could you please move the chair on the left at the back so that it's taller?\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please make the sentence clearer and more natural in speech. Also, fix any grammatical errors. Keep the same meaning and terms as the original sentence.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'The weather is extremely chilly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': \"The weather is so scorching that it's causing me to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please save the chair as a reference for future use.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please help to adjust the position of the lumbar cushion in the front row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Turn on the automatic air circulation system right now.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'AUTO'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please adjust the height of the support for the right side of my thigh on the second row so that it is properly positioned.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please leave the window slightly ajar.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'The cushion has been programmed to remember its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please remember the chair located in the front row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"Even after taking just a few short walks, I'm already starting to sweat.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please turn on the heating for the chair on the left in the first row to the highest setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'The second row left-side chair should be set to zero gravity mode.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'ZERO_GRAVITY'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please slightly open the car window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please help me to adjust the left side car window so that it is only open to about 30 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'I want to remember where the first row of seats on the left is located.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'I would like to have good air circulation in the seating area on the second floor.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the right car window so that it is about 10 percent closed.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': \"Even after taking just a few short walks, I'm already starting to sweat.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please help me remember to save the cushion on the left side of the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please turn on the air outlet at the bottom of the row first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please save the information about front-row seating in your memory for later use.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please lower the left car window by 20 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'The last car on the left in that row has its window completely closed, with only a tiny gap left open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'The middle row car window should be rolled down by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Please adjust the ventilation on the right chair to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please keep the second-row seat in mind for someone specific.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please lower the window a bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"The weather is so sweltering that I can't stop sweating.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please move the ottoman on the left to its original position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please ensure that the cushion on the left side of the middle row is set as \"Memory 1.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'The cushion has been designed to function as a memory aid.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Could you please adjust the front-row window to about 90 percent open?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '90'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase',\n", " 'value': '90'}}]},\n", " {'query': '\"Add the concept of \\'front row chair position\\' to your memory.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please make sure to position the lumbar cushion on the right side of the third row in its correct position.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'It functions in a similar way to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please keep the cushion from the second row as a memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please provide the original sentence so I can assist you with paraphrasing it in a more fluent manner.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The sentence \"AC blow Head now\" is unclear and contains grammatical errors. It seems to be a jumbled phrase that may not convey a meaningful message. If you could provide more context or clarify what you want to express, I would be happy to help you rephrase it in a clearer and more grammatically correct way.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FACE'}}]},\n", " {'query': 'Please assist with turning on the heating for the seating area on the left side of the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please assist me in positioning the headrest properly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the right-side car window to an opening of approximately 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': ' \"Please turn off the device by pressing the \\'Swing\\' button.\" This sentence is clearer and easier to understand, as it explains the action that needs to be taken (turning off the device) and the specific button to use for that action (the \\'Swing\\' button).',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_TAILGATE_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please assist me in retaining information about \"cushion\" in my memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please help with adjusting the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The request is to have a seat in the front row, specifically the right-hand side, reserved for a special person as a memento or reminder of a cherished memory.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please increase the speed of the right fan by two levels immediately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '2'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please disable the ventilation function for the cushions in the bottom row all at once.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': '\"Adjust the fan speed to the highest setting immediately.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Please rearrange the seating arrangement so that the row at the very back is positioned closer to the front of the room.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please arrange the seating so that people can sit comfortably.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FOLD'}}]},\n", " {'query': 'I need to remember the location of the first row of chairs, specifically the second one in that row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the heating on the first row of cushions to the highest setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': ' \"Please leave the driver\\'s window slightly ajar.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please assist me in opening the front trunk of the vehicle.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'FRONT_TRUNK_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'FRONT_TRUNK_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"The weather is so sweltering that I'm starting to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please adjust the ventilation settings on the chair to the third option.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The front passenger seat can enhance your memory retention.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': '\"Could you please help me with this task?\" or \"Could you assist me with this matter?\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'OFFICE'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The window in the third row can be rolled down to about 20 percent of its full opening height.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '80'}}]},\n", " {'query': 'Please turn on the second row on the right side immediately.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'The first person on the left needs my assistance to adjust the temperature to 25 degrees.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': '25'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '25'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please adjust the height of the left-side head support to a lower level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The last car window on the right should be rolled down to about 80 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '20'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Please complete the setup for the right lumbar cushion retreat first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': \"The weather is so scorching that it's making me feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'I want to remember the seat located in the first row on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'It functions in a similar way to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting first.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Could you please open the middle row right-side window to about 40 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please close the right car window completely, leaving only a very small gap open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please make the sentence \"Speed up and close the sunshade\" sound more natural and fluent. Also, fix any grammatical errors. Keep the original meaning and terms the same.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please enable the \"open last row left\" mode first.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'value': 'MAINTAIN'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SCENARIO_MODE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'CAMPING'}}]},\n", " {'query': 'Please adjust the window size to about 70 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '70'}}]},\n", " {'query': 'Please lower the right car window by about 60 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Make sure to adjust the temperature on the chair heating system correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please make the sentence \"Activate the air outlet\" sound more natural and fluent. Also, correct any grammatical errors. Keep the original meaning and terms the same.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_OUTPUT_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please make sure to adjust the legrests to their proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'I want to remember the location of the chair on the third row, specifically the one on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': \"Please reduce the percentage of the right car window's roll-down feature to 10.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please close the window to about half its original size.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Adjust the fan speed to its highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"I'm really feeling really chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Could you please move the chair at the bottom of the row a little further back?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please help to adjust the height of the headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Cushion ventilation—help me set it to the maximum level!',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please open the left-side car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please make sure to adjust the legrests to their proper position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in adjusting the sunshade to its proper position right now.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"Even after just taking a few short walks, I'm already starting to sweat.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Adjust the fan speed to the third setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the temperature of the front-row seats to the highest setting.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'I want to remember where the seats are located.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': \"Please make the sentence more fluent and correct the grammar mistakes. Don't change the original meaning or terms, and don't add any extra words or explanations.\",\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SUNROOF',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please arrange the seating again.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_STOW_MODE',\n", " 'value': 'RESTORE'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': 'Please lower the window on the front left seat to 70 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'I would like to adjust the seat ventilation setting to an upper level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please help me adjust the length of the right-side legrest on the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please help to adjust the car window so that it is about 60 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '60'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please turn on the heating function for the steering wheel right now.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': '\"This unforgettable moment will surely be etched in my mind for a long time.\"',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please slightly open the window.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Please help to adjust the position of the right footrest so that it moves upwards.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LEGREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LEGREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please lower the left car window in the middle row to about 70 percent of its maximum opening. Thank you.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'I would like to enable the SYNC mode for the specific item located in the middle row on the left side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SYNC_MODE',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SYNC_MODE',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please act promptly and open the left sliding door.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'The chair was programmed to remember its previous position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': \"Please adjust the third row's right-side lumbar cushion so that it is positioned correctly.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please make sure the headrest is properly installed and in its correct position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please assist me in rolling down the window on the middle row, on the left side, by about 90 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Please adjust the seat heating to the warmest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Even just taking a few steps is making me sweat.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"Even after just taking a few short walks, I'm already sweating profusely.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please lower the car window by about ten percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '10'}}]},\n", " {'query': \"Please lower the second row's right-side window by about 40 percent.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please help me remember to assign the last row left seat to person number 3.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"I'd like for the ventilation system in the seating area to be optimized to provide maximum comfort.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Please assist me in positioning the support for the right side of my thigh at the correct height.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please consider adding the option of \"seat\" as one of the available choices for memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me with completing the procedure for adjusting the lumbar cushion in the last row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_vehicle_info',\n", " 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': 'Adjust the fan speed to the third setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Could you please lower the car window by about 80 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '80'}}]},\n", " {'query': 'Please increase the seat heating to a higher level, specifically to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in adjusting the second-row left car window to a position where it is completely rolled down, with the setting at 0 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': 'Please lower the front row window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Could you please adjust the window to about 30 percent open?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '30'}}]},\n", " {'query': 'Please gently push the passenger sitting in the rightmost seat forward a little bit.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': ' \"Please start by closing the items in the middle row, then proceed with the rest.\" This version is clearer and easier to understand, while still conveying the same meaning as the original sentence.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_MAX_AC_ON',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please arrange the seating so that each person sits in their preferred spot, just like they remember it from the last time they were there.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': \"The weather is so sweltering that I'm starting to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The breeze is rather gentle.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '1'}}]},\n", " {'query': 'Please adjust the position of the lumbar cushion on the third row to make it more comfortable.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please adjust the seating arrangement so that the row at the very back is positioned slightly further to the left.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the support for the lower right lumbar area to ensure proper positioning.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please assist me in activating the proper sunshade right away.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'POWER_SUNSHADE',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Please turn off the device in the middle row on the right side immediately.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_MAX_AC_ON',\n", " 'value': 'false'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SYNC_MODE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the cushion on the second row, specifically the one located at the right side of the lumbar area.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_AUTO_ON',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Something that provides comfort or support can help enhance memory retention.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please help me set the front-row seat cushions to the second-highest heating level.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'It functions similarly to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '\\'。 Do not add any explaination and anything else apart from the corrected sentence.\" has been corrected to',\n", " 'model': None,\n", " 'gt': [{'name': 'set_seat_mode',\n", " 'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': \"I want to remember the location of the last row's leftmost chair.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please adjust the height of the lumbar cushion accordingly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_MAX_AC_ON',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': \"Let's lower the car window by about 30 percent.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '30'}}]},\n", " {'query': \"It's absolutely sweltering outside, making it impossible to stay in the house for long.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'The weather is so scorching that it makes me feel like crying.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': \"Please assist me with completing the adjustment of the driver's lumbar cushion.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '5'}}]},\n", " {'query': 'Please increase the fan speed to the next higher level immediately.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in fully opening the window on the right side of the third row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '100'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'get_hhtd_info', 'arguments': {'areaId': '', 'query': ''}}]},\n", " {'query': \"The heat is so intense that it's causing me to feel dizzy.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please assist me in adjusting the car window so that it is about 80 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '80'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '20'}}]},\n", " {'query': 'Please keep the wind at a moderate level.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': 'Please move the second row of chairs slightly to the right.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please hurry up and go through the left door.',\n", " 'model': [{'arguments': {'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SLIDING_DOOR_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SLIDING_DOOR_ON',\n", " 'areaId': 'SLIDING_DOOR_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Could you please lower the car window to about 30 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '30'}}]},\n", " {'query': 'Please make sure the window on the last car in the row is rolled up all the way.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '0'}}]},\n", " {'query': 'Please lower the car window by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Could you please assist me in adjusting the right-side car window to roll down about 50 percent?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': 'Please slightly open the window a little bit.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '10'}}]},\n", " {'query': 'Could you please lower the car window a little bit?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Save the information directly into your memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The weather is really freezing.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please operate the heating system on the last row of chairs on the left side and make sure it is turned on.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'It functions in a similar way to an oven.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'BODY'}}]},\n", " {'query': ' Indicates the direction or side associated with the word \"right” in the context.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'OFF'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Please assist me in finishing the process of adjusting the elevation of the left headrest.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': '\"Please turn up the ventilation for the seat in the last row to the maximum level.\"',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': 'SEAT_ROW_3',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"Please make the sentence sound more natural and fluent while still conveying the same meaning. Also, fix any grammatical errors. Keep the original terms and don't add any extra words or explanations.\",\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'POWER_SUNSHADE',\n", " 'areaId': 'SUNROOF',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Could you please lower the window of the car in the front row a little bit?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please help to adjust the position of the left lumbar cushion so that it is lower down.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The request is to include a cushion as part of the memory system, specifically designated for storage purposes.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please reduce the window size by 10 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'decrease',\n", " 'value': '10'}}]},\n", " {'query': 'Please assist me in enhancing my memory capabilities.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please turn on the heating for the cushion on the left side of the top row.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please add the third row right-side chair to your memory list.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please remember to keep the last row of cushions on the left in your mind.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'The seat heating system is designed to provide the warmest level of comfort for passengers.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please move the chair at the right side to a lower position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please help me remember the location of the third chair.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': \"I'd like to reduce the amount of ventilation through the cushions as much as possible.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please lower the car window to about 40 percent.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': \"I'd like to request the addition of a front-row right seat as a memento of our special moment.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the left-side leg support so that it can be raised up.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_CUSHION_SIDE_SUPPORT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'increase'}}]},\n", " {'query': 'The sentence \"Directly make AC blow Feet\" is unclear and difficult to understand. It seems to be a jumbled phrase that doesn\\'t convey a meaningful message. If you could provide more context or clarify what you meant, I would be able to help you rephrase it more clearly.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_DIRECTION',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'FOOT'}}]},\n", " {'query': 'Please perform the operation to move the right headrest up.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'SEAT_HEADREST_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_HEADREST_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'increase'}}]},\n", " {'query': ' \"Can you reword this sentence to make it easier to understand? Also, make sure there are no grammar errors. Keep the same meaning and don\\'t change any important words or numbers.\"',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'READING_LIGHT_LEVEL',\n", " 'areaId': '',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please turn on the fresh air mode located directly on the second row, on the right side.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_RECIRC_MODE',\n", " 'value': 'EXTERNAL'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_RECIRC_MODE',\n", " 'areaId': 'SEAT_ROW_2_RIGHT',\n", " 'operation': 'set',\n", " 'value': 'OFF'}}]},\n", " {'query': 'Could you please assist me in lowering the left-side car window in the third row by about 30 percent?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '30'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': \"It's absolutely sweltering outside, making it impossible to endure.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': 'Please help to adjust the position of the right rearrest so that it moves backward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_BACKREST_ANGLE_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_BACKREST_ANGLE_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Could you please lower the window of the car in the second row by a little bit?',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'decrease',\n", " 'propertyId': 'WINDOW_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'increase'}}]},\n", " {'query': 'Please assist me in adjusting the car window to about half its maximum opening position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '50'}}]},\n", " {'query': 'Please increase the seat heating to a higher level, specifically to the second highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '3'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_STOW_MODE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'STOW'}}]},\n", " {'query': 'Save the information about the cushion in your memory right away.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The cushion in the second row is the coldest.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_2',\n", " 'operation': 'set',\n", " 'value': '1'}}]},\n", " {'query': 'Please open the car window completely.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '100'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '100'}}]},\n", " {'query': 'Even just taking a few steps is making me sweat.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '17'}}]},\n", " {'query': '',\n", " 'model': {},\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please lower the window on the right side of the third row by about 10 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '10'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'set',\n", " 'value': '90'}}]},\n", " {'query': 'Could you please adjust the ventilation in the seat to make it more comfortable?',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'increase',\n", " 'value': '1'}}]},\n", " {'query': '\"Please make this sentence sound more natural and fluent, while also correcting any grammatical errors. Keep the original meaning and terms unchanged.\"',\n", " 'model': [{'arguments': {'areaId': '', 'operation': 'set', 'value': 'OFF'},\n", " 'name': 'set_seat_mode'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_STEERING_WHEEL_HEAT',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'true'}}]},\n", " {'query': 'Move the chair on the left a little bit further to the back.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_FORE_AFT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_FORE_AFT_POS',\n", " 'areaId': 'SEAT_ROW_1_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'Please adjust the top portion of the right-side window to be at exactly 50 percent open.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '50'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '50'}}]},\n", " {'query': \"Please adjust the second row's left window to a position where it is 70 percent open.\",\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '70'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_2_LEFT',\n", " 'operation': 'set',\n", " 'value': '30'}}]},\n", " {'query': 'Please lower the window in the front row by about 40 percent.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1',\n", " 'operation': 'set',\n", " 'value': '60'}}]},\n", " {'query': 'Please lower the right car window by 40%.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '40'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '40'}}]},\n", " {'query': 'Please make sure to adjust the seat heating function correctly.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_POWER_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Make sure the air circulation in the seating area is as good as possible.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_VENTILATION_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'The sentence \"chair massage off\" is unclear and does not make sense in standard English. It seems to be a misspelling or an incomplete phrase. If you meant to ask about a chair massage service or provide information about it, please provide more context so I can assist you better.',\n", " 'model': None,\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_MASSAGE_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': 'Please adjust the fan speed to the highest setting.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_FAN_SPEED',\n", " 'value': '8'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_FAN_SPEED',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '7'}}]},\n", " {'query': 'Please set the cushion as your third memory.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '3'}}]},\n", " {'query': 'Please help me improve my memory skills.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_POSITION_MEMORY_SAVE',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '2'}}]},\n", " {'query': 'Please adjust the heating level of the chair on the third row, specifically the one on the right side, to an extra two degrees warmer.',\n", " 'model': [{'arguments': {'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'value': '1'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_SEAT_TEMPERATURE_SET',\n", " 'areaId': 'SEAT_ROW_3_RIGHT',\n", " 'operation': 'increase',\n", " 'value': '2'}}]},\n", " {'query': 'Please assist me in opening the front trunk of the car.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'FRONT_TRUNK_ON',\n", " 'value': 'true'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'FRONT_TRUNK_ON',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': 'false'}}]},\n", " {'query': \"I'm really feeling chilly.\",\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'value': ''},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET',\n", " 'areaId': '',\n", " 'operation': 'set',\n", " 'value': '32'}}]},\n", " {'query': 'Please assist me in adjusting the lower left lumbar cushion so that it moves downward.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'decrease',\n", " 'propertyId': 'SEAT_LUMBAR_HEIGHT_POS'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'SEAT_LUMBAR_HEIGHT_POS',\n", " 'areaId': 'SEAT_ROW_3_LEFT',\n", " 'operation': 'decrease'}}]},\n", " {'query': 'The first car window on the right side should be kept in an elevated position.',\n", " 'model': [{'arguments': {'areaId': '',\n", " 'operation': 'set',\n", " 'propertyId': 'WINDOW_POS',\n", " 'value': '0'},\n", " 'name': 'control_car_properties'}],\n", " 'gt': [{'name': 'control_car_properties',\n", " 'arguments': {'propertyId': 'WINDOW_POS',\n", " 'areaId': 'SEAT_ROW_1_RIGHT',\n", " 'operation': 'set',\n", " 'value': '0'}}]}]" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "real_wrong" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'Could you please provide information on the exact location where the forum will be held, as well as the directions to get there? Additionally, could you share with us the details regarding the entrance requirements, such as any special access needs or entry procedures?'" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "conv['value']" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "({}, {}, 'others')" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "model_out" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "0.9989243456435999" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "2786/2789" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_3336451/2360540827.py:34: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n", " confidence = max(torch.nn.functional.softmax(logits[0]))\n" ] }, { "data": { "text/plain": [ "('[\\n {\\n \"arguments\": {\\n \"areaId\": \"\",\\n \"operation\": \"increase\",\\n \"propertyId\": \"HVAC_FAN_SPEED\",\\n \"value\": \"1\"\\n },\\n \"name\": \"control_car_properties\"\\n }\\n]',\n", " 'HVAC_FAN_SPEED%increase',\n", " tensor(0.9998, device='cuda:0'))" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "inference_cpp('冷氣風太小')" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{'query': '我溫度有點高', 'model': [{'arguments': {'areaId': '', 'operation': 'increase', 'propertyId': 'HVAC_TEMPERATURE_SET', 'value': '1'}, 'name': 'control_car_properties'}], 'gt': [{'name': 'control_car_properties', 'arguments': {'propertyId': 'HVAC_TEMPERATURE_SET', 'areaId': '', 'operation': 'decrease', 'value': '1'}}]}\n", "{'query': '冷氣風太小', 'model': [{'arguments': {'areaId': '', 'operation': 'decrease', 'propertyId': 'HVAC_FAN_SPEED', 'value': '1'}, 'name': 'control_car_properties'}], 'gt': [{'name': 'control_car_properties', 'arguments': {'propertyId': 'HVAC_FAN_SPEED', 'areaId': '', 'operation': 'increase', 'value': '1'}}]}\n", "{'query': '冷氣風太小', 'model': [{'arguments': {'areaId': '', 'operation': 'decrease', 'propertyId': 'HVAC_FAN_SPEED', 'value': '1'}, 'name': 'control_car_properties'}], 'gt': [{'name': 'control_car_properties', 'arguments': {'propertyId': 'HVAC_FAN_SPEED', 'areaId': '', 'operation': 'increase', 'value': '1'}}]}\n", "{'query': '冷氣風太小', 'model': [{'arguments': {'areaId': '', 'operation': 'decrease', 'propertyId': 'HVAC_FAN_SPEED', 'value': '1'}, 'name': 'control_car_properties'}], 'gt': [{'name': 'control_car_properties', 'arguments': {'propertyId': 'HVAC_FAN_SPEED', 'areaId': '', 'operation': 'increase', 'value': '1'}}]}\n", "{'query': '最後面這排左邊座位按摩強度等級,請調降到一檔檔', 'model': None, 'gt': [{'name': 'control_car_properties', 'arguments': {'propertyId': 'SEAT_MASSAGE_INTENSITY', 'areaId': 'SEAT_ROW_3_LEFT', 'operation': 'set', 'value': 'LOW'}}]}\n" ] } ], "source": [ "for w in wrong:\n", " if not '遮陽簾' in w['query']:\n", " print(w)" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "from glob import glob\n", "bert_handle = glob('/mnt/jeff/InCar/bert/test_data/VAG/*.json')+glob('/mnt/jeff/InCar/bert/test_data/VC/*/*/*.json')+glob('/mnt/jeff/InCar/bert/test_data/VIP/*/*.json')\n", "slm_handle = glob('/mnt/jeff/InCar/bert/test_data/POI/*.json')+glob('/mnt/jeff/InCar/bert/test_data/MUL/*.json')\n" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 0%| | 0/728 [00:00