[
  {
    "instance_id": "id0",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of accounts created in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id1",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average age of clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id2",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans granted to clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id3",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id4",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of credit card transactions in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id5",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average salary of clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id6",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id7",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average number of crimes committed in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id8",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a duration of more than 1 year.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id9",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of loans granted to clients.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id10",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of credit card transactions with a type of 'VYBER KARTOU'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id11",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a frequency of 'POPLATEK MESICNE'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id12",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a status of 'A'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id13",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'PRIJEM'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id14",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients with a birth date in the year 1990.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id15",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a district_id of 1.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id16",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a duration of 6 months.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id17",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'VYDAJ'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id18",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients with a sex of 'M'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id19",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a frequency of 'POPLATEK TYDNE'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id20",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a status of 'C'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id21",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'VKLAD'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id22",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients with a birth date in the year 1980.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id23",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a district_id of 2.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id24",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a duration of 3 months.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id25",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'PREVOD Z UCTU'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id26",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients with a sex of 'F'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id27",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a frequency of 'POPLATEK PO OBRATU'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id28",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a status of 'D'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id29",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'PREVOD NA UCET'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id30",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of clients with a birth date in the year 1995.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id31",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a district_id of 3.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id32",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a duration of 9 months.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id33",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average amount of transactions with a type of 'VYBER'.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id34",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of accounts created in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id35",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id36",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of clients.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id37",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average age of clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id38",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans granted in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id39",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average loan amount in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id40",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of credit card holders.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id41",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average credit card limit in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id42",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of transactions in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id43",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average transaction amount in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id44",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of debit transactions.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id45",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average debit transaction amount in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id46",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of credit transactions.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id47",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average credit transaction amount in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id48",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of loans with a duration of more than 1 year.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id49",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average loan amount for loans with a duration of more than 1 year.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id50",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of clients with a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id51",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average age of clients with a loan in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id52",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of credit cards issued in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id53",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average credit limit of credit cards issued in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id54",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of debit transactions per account.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id55",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average debit transaction amount per account in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id56",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of credit transactions per account.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id57",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average credit transaction amount per account in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id58",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of accounts with a balance greater than 100,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id59",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average balance of accounts with a balance greater than 100,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id60",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of accounts with a balance greater than 100,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id61",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average age of clients with a balance greater than 100,000 in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id62",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of accounts with a debit transaction amount greater than 10,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id63",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average debit transaction amount of accounts with a debit transaction amount greater than 10,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id64",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the top 5 districts with the highest number of accounts with a debit transaction amount greater than 10,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id65",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average age of clients with a debit transaction amount greater than 10,000 in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id66",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Get the total number of accounts with a credit transaction amount greater than 10,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id67",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the average credit transaction amount of accounts with a credit transaction amount greater than 10,000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id68",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the total number of clients who have taken a loan and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id69",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average balance of accounts that have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id70",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 5 districts with the highest number of accounts.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id71",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total amount of loans granted to clients in each district.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id72",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have taken a loan and have a balance of less than 0.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id73",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average salary of clients who have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id74",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 3 types of transactions with the highest average amount.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id75",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total number of transactions for each type of card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id76",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a balance of more than 10000 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id77",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average age of clients who have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id78",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 5 districts with the highest number of clients.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id79",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total amount of transactions for each type of loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id80",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a credit card and have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id81",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average balance of accounts that have a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id82",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 3 types of transactions with the highest number of transactions.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id83",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total number of clients who have a credit card and have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id84",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a balance of less than 0 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id85",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average salary of clients who have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id86",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 5 districts with the highest average salary.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id87",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total amount of transactions for each type of card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id88",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a credit card and have a balance of more than 10000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id89",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average age of clients who have taken a loan and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id90",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 3 types of transactions with the highest average amount for clients who have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id91",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total number of clients who have taken a loan and have a credit card and have a balance of less than 0.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id92",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a credit card and have taken a loan and have a balance of more than 10000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id93",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average salary of clients who have taken a loan and have a credit card and have a balance of less than 0.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id94",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 5 districts with the highest average salary for clients who have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id95",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total amount of transactions for each type of card for clients who have taken a loan.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id96",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a credit card and have taken a loan and have a balance of less than 0 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id97",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average age of clients who have taken a loan and have a credit card and have a balance of more than 10000.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id98",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the top 3 types of transactions with the highest average amount for clients who have taken a loan and have a credit card and have a balance of less than 0.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id99",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the total number of clients who have taken a loan and have a credit card and have a balance of less than 0 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id100",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Find the clients who have a credit card and have taken a loan and have a balance of more than 10000 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  },
  {
    "instance_id": "id101",
    "train_trial_index": 0,
    "request": {
      "model_deployment": "together/mistral-7b-instruct-v0.3",
      "model": "mistralai/mistral-7b-instruct-v0.3",
      "embedding": false,
      "prompt": "Given a SQLite database schema and the following instructions, generate a SQLite query that corresponds to the instructions. Answer with only the query.\n\nDatabase schema:\nCREATE TABLE \"account\" (\n  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"frequency\" varchar(18) NOT NULL\n,  \"date\" date NOT NULL\n,  PRIMARY KEY (\"account_id\")\n,  CONSTRAINT \"account_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"card\" (\n  \"card_id\" integer NOT NULL DEFAULT '0'\n,  \"disp_id\" integer NOT NULL\n,  \"type\" varchar(7) NOT NULL\n,  \"issued\" date NOT NULL\n,  PRIMARY KEY (\"card_id\")\n,  CONSTRAINT \"card_ibfk_1\" FOREIGN KEY (\"disp_id\") REFERENCES \"disp\" (\"disp_id\")\n);\nCREATE TABLE \"client\" (\n  \"client_id\" integer NOT NULL\n,  \"gender\" varchar(1) NOT NULL\n,  \"birth_date\" date NOT NULL\n,  \"district_id\" integer NOT NULL\n,  PRIMARY KEY (\"client_id\")\n,  CONSTRAINT \"client_ibfk_1\" FOREIGN KEY (\"district_id\") REFERENCES \"district\" (\"district_id\")\n);\nCREATE TABLE \"disp\" (\n  \"disp_id\" integer NOT NULL\n,  \"client_id\" integer NOT NULL\n,  \"account_id\" integer NOT NULL\n,  \"type\" varchar(9) NOT NULL\n,  PRIMARY KEY (\"disp_id\")\n,  CONSTRAINT \"disp_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n,  CONSTRAINT \"disp_ibfk_2\" FOREIGN KEY (\"client_id\") REFERENCES \"client\" (\"client_id\")\n);\nCREATE TABLE \"district\" (\n  \"district_id\" integer NOT NULL DEFAULT '0'\n,  \"A2\" varchar(19) NOT NULL\n,  \"A3\" varchar(15) NOT NULL\n,  \"A4\" integer NOT NULL\n,  \"A5\" integer NOT NULL\n,  \"A6\" integer NOT NULL\n,  \"A7\" integer NOT NULL\n,  \"A8\" integer NOT NULL\n,  \"A9\" integer NOT NULL\n,  \"A10\" decimal(4,1) NOT NULL\n,  \"A11\" integer NOT NULL\n,  \"A12\" decimal(4,1) DEFAULT NULL\n,  \"A13\" decimal(3,2) NOT NULL\n,  \"A14\" integer NOT NULL\n,  \"A15\" integer DEFAULT NULL\n,  \"A16\" integer NOT NULL\n,  PRIMARY KEY (\"district_id\")\n);\nCREATE TABLE \"loan\" (\n  \"loan_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"date\" date NOT NULL\n,  \"amount\" integer NOT NULL\n,  \"duration\" integer NOT NULL\n,  \"payments\" decimal(6,2) NOT NULL\n,  \"status\" varchar(1) NOT NULL\n,  PRIMARY KEY (\"loan_id\")\n,  CONSTRAINT \"loan_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"order\" (\n  \"order_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL\n,  \"bank_to\" varchar(2) NOT NULL\n,  \"account_to\" integer NOT NULL\n,  \"amount\" decimal(6,1) NOT NULL\n,  \"k_symbol\" varchar(8) NOT NULL\n,  PRIMARY KEY (\"order_id\")\n,  CONSTRAINT \"order_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\nCREATE TABLE \"trans\" (\n  \"trans_id\" integer NOT NULL DEFAULT '0'\n,  \"account_id\" integer NOT NULL DEFAULT '0'\n,  \"date\" date NOT NULL\n,  \"type\" varchar(6) NOT NULL\n,  \"operation\" varchar(14) DEFAULT NULL\n,  \"amount\" integer NOT NULL\n,  \"balance\" integer NOT NULL\n,  \"k_symbol\" varchar(11) DEFAULT NULL\n,  \"bank\" varchar(2) DEFAULT NULL\n,  \"account\" integer  DEFAULT NULL\n,  PRIMARY KEY (\"trans_id\")\n,  CONSTRAINT \"trans_ibfk_1\" FOREIGN KEY (\"account_id\") REFERENCES \"account\" (\"account_id\")\n);\n\nInstruction: Calculate the average salary of clients who have taken a loan and have a credit card and have a balance of less than 0 and have a credit card.\nSQL Query:",
      "temperature": 0.0,
      "num_completions": 1,
      "top_k_per_token": 1,
      "max_tokens": 512,
      "stop_sequences": [
        "\n\n"
      ],
      "echo_prompt": false,
      "top_p": 1.0,
      "presence_penalty": 0.0,
      "frequency_penalty": 0.0
    }
  }
]