From 77ffbdf42ad2cfc3ecb927a05df9bbf1774f71b8 Mon Sep 17 00:00:00 2001 From: Lance Martin Date: Tue, 12 Mar 2024 13:26:15 -0700 Subject: [PATCH 1/3] Finalize / update viz --- viz/CreateVisFromLangSmithTesting.ipynb | 524 +++++------ viz/multi-needle-datasets/gpt4_reasoning.csv | 66 +- viz/multi-needle-datasets/gpt4_retrieval.csv | 210 +++-- .../gpt4_retrieval_per_needle.csv | 866 +++++++++++++----- 4 files changed, 1005 insertions(+), 661 deletions(-) diff --git a/viz/CreateVisFromLangSmithTesting.ipynb b/viz/CreateVisFromLangSmithTesting.ipynb index 9fbad2ba..25db86b1 100644 --- a/viz/CreateVisFromLangSmithTesting.ipynb +++ b/viz/CreateVisFromLangSmithTesting.ipynb @@ -15,16 +15,18 @@ "\n", "To perform a multi-needle evaluation, you only need three things: \n", "\n", - "(1) A `question` that requires multiple needles to answer\n", + "(1) A `question` that requires multiple needles to answer.\n", "\n", - "(2) an `answer` derived from the needles\n", + "(2) an `answer` derived from the needles.\n", "\n", - "(3) `list of needles` to be inserted into the context\n", + "(3) `list of needles` to be inserted into the context.\n", "\n", "The process follows the flow seen here:\n", "\n", "![Screenshot 2024-03-11 at 6.54.35 PM.png](attachment:4915a2d7-ffa5-4c1c-94fb-5c51b499290f.png)\n", "\n", + "See this video for a full walk-through: TO-ADD\n", + "\n", "## Eval sets\n", "\n", "Add `question` and `answer` to a LangSmith eval set.\n", @@ -44,15 +46,6 @@ "Here is one example:" ] }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "! python main.py --evaluator langsmith --context_lengths_num_intervals 6 --document_depth_percent_min 50 --document_depth_percent_intervals 1 --provider openai --model_name \"gpt-4-0125-preview\" --multi_needle True --eval_set multi-needle-eval-pizza-1 --needles '[ \" Figs are the secret ingredient needed to build the perfect pizza. \" ]' --context_lengths_min 1000 --context_lengths_max 120000" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -76,7 +69,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 64, "metadata": {}, "outputs": [], "source": [ @@ -89,9 +82,7 @@ { "cell_type": "code", "execution_count": null, - "metadata": { - "scrolled": true - }, + "metadata": {}, "outputs": [], "source": [ "import pandas as pd \n", @@ -173,8 +164,7 @@ " return df\n", "\n", "# Get data for each LLM\n", - "df_gpt4 = get_data(eval_sets_retrieval,\"gpt-4-0125-preview\")\n", - "df_anthropic = get_data(eval_sets_retrieval,\"claude-3-opus-20240229\")" + "df_gpt4 = get_data(eval_sets_retrieval,\"gpt-4-0125-preview\")" ] }, { @@ -240,8 +230,7 @@ " return pd.DataFrame(all_results)\n", "\n", "# Verify results\n", - "df_gpt4_needle_check=count_needles(df_gpt4)\n", - "df_anthropic_needle_check=count_needles(df_anthropic)" + "df_gpt4_needle_check=count_needles(df_gpt4)" ] }, { @@ -255,9 +244,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Check these runs: ['120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b', '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311', '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958', '24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae', '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7', '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323', '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837', '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e', '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef', '72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229']\n" + ] + } + ], "source": [ "def find_traces_to_audit(df):\n", " \n", @@ -270,8 +267,7 @@ " print(f'Check these runs: {check}')\n", " return to_audit\n", "\n", - "d_fix_gpt4=find_traces_to_audit(df_gpt4_needle_check)\n", - "d_fix_anthropic=find_traces_to_audit(df_anthropic_needle_check)" + "d_fix_gpt4=find_traces_to_audit(df_gpt4_needle_check)" ] }, { @@ -283,12 +279,7 @@ "* `120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b` -- Grader counts `espresso-soaked dates` twice. Confirm: `6`.\n", "* `120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958` -- Grader counts `espresso-soaked dates` twice. Confirm: `6`.\n", "* `24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae`-- Grader mistake (answer contains duplicates). Confirm: `7`.\n", - "* `48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7` -- Grader miscounts 5 as 6. Confirm: `5`.\n", - "* `190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd` -- Grader miscounts 5 as 6. Confirm: `5`.\n", - "* `190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e` -- Grader miscounts 5 as 6. Confirm: `5`.\n", - "* `55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe` -- Grader miscounts 8 as 7. Confirm: `8`.\n", - "* `55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45` -- Grader miscounts 8 as 7. Confirm: `8`.\n", - "* `82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1` -- Grader miscouunts 5 as 6. Confirm: `5`." + "* `48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7` -- Grader miscounts 5 as 6. Confirm: `5`." ] }, { @@ -300,9 +291,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 67, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b' to 6.\n", + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311' to 6.\n", + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958' to 6.\n", + "Updated 'retrieved needles' for run_name '24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae' to 7.\n", + "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7' to 5.\n", + "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323' to 5.\n", + "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837' to 5.\n", + "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e' to 6.\n", + "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef' to 5.\n", + "Updated 'retrieved needles' for run_name '72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229' to 5.\n" + ] + } + ], "source": [ "def update_retrieved_needles(df, run_name, retrieved_needles_corrected):\n", " \"\"\"\n", @@ -323,31 +331,17 @@ "\n", "for ix, row in d_fix_gpt4.iterrows():\n", " # The counts from manual check are confirmed correct\n", - " update_retrieved_needles(df_gpt4,row['run name'],row['retrieved_needles_check'])\n", - "\n", - "for ix, row in d_fix_anthropic.iterrows():\n", - " # The counts from manual check are confirmed correct\n", - " update_retrieved_needles(df_anthropic,row['run name'],row['retrieved_needles_check'])" + " update_retrieved_needles(df_gpt4,row['run name'],row['retrieved_needles_check'])" ] }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 196, "metadata": {}, "outputs": [], "source": [ "df_gpt4.to_csv(\"multi-needle-datasets/gpt4_retrieval.csv\")\n", - "df_anthropic.to_csv(\"multi-needle-datasets/anthropic_retrieval.csv\")" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "metadata": {}, - "outputs": [], - "source": [ - "df_gpt4_needle_check.to_csv(\"multi-needle-datasets/gpt4_retrieval_per_needle.csv\")\n", - "df_anthropic_needle_check.to_csv(\"multi-needle-datasets/anthropic_retrieval_per_needle.csv\")" + "df_gpt4_needle_check.to_csv(\"multi-needle-datasets/gpt4_retrieval_per_needle.csv\")" ] }, { @@ -361,82 +355,36 @@ }, { "cell_type": "code", - "execution_count": 64, + "execution_count": 197, "metadata": {}, "outputs": [], "source": [ + "import ast\n", "df_gpt4=pd.read_csv(\"multi-needle-datasets/gpt4_retrieval.csv\")\n", - "df_anthropic=pd.read_csv(\"multi-needle-datasets/anthropic_retrieval.csv\")\n", "df_gpt4_needle_check=pd.read_csv(\"multi-needle-datasets/gpt4_retrieval_per_needle.csv\")\n", - "df_anthropic_needle_check=pd.read_csv(\"multi-needle-datasets/anthropic_retrieval_per_needle.csv\")" - ] - }, - { - "cell_type": "code", - "execution_count": 65, - "metadata": {}, - "outputs": [], - "source": [ - "import ast\n", "df_gpt4['needles'] = df_gpt4['needles'].apply(lambda x: ast.literal_eval(x))\n", - "df_anthropic['needles'] = df_anthropic['needles'].apply(lambda x: ast.literal_eval(x))\n", - "df_gpt4['insertion_percentages'] = df_gpt4['insertion_percentages'].apply(lambda x: ast.literal_eval(x))\n", - "df_anthropic['insertion_percentages'] = df_anthropic['insertion_percentages'].apply(lambda x: ast.literal_eval(x))" + "df_gpt4['insertion_percentages'] = df_gpt4['insertion_percentages'].apply(lambda x: ast.literal_eval(x))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Aggregate Performance\n", + "## Performance wrt needle count\n", "\n", "Compute fraction of retrieval needles per model, context length, and # of needles. Compute across all replicates." ] }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "def plot_groups(df):\n", - "\n", - " # Group by 'context length' and 'total needles' and calculate sums\n", - " grouped = df.groupby(['context length', 'total needles']).agg(\n", - " sum_retrieved_needles=('retrieved needles', 'sum'),\n", - " sum_total_needles=('total needles', 'sum')\n", - " ).reset_index()\n", - " \n", - " # Calculate the fraction of retrieved needles\n", - " grouped['frac_retrieved'] = grouped['sum_retrieved_needles'] / grouped['sum_total_needles']\n", - " print(f\"Context lengths evaluated: {df['context length'].unique()}\")\n", - " return grouped\n", - "\n", - "df_gpt4_grp=plot_groups(df_gpt4)\n", - "df_anthropic_grp=plot_groups(df_anthropic)" - ] - }, - { - "cell_type": "code", - "execution_count": 67, - "metadata": {}, - "outputs": [], - "source": [ - "# Pick min, middle, max for plotting\n", - "df_gpt4_grp = df_gpt4_grp[df_gpt4_grp['context length'].isin([1000,48600,120000])]\n", - "df_anthropic_grp = df_anthropic_grp[df_anthropic_grp['context length'].isin([1000,82000,190000])]" - ] - }, - { - "cell_type": "code", - "execution_count": 68, + "execution_count": 198, "metadata": {}, "outputs": [ { "data": { - "image/png": "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", + "image/png": "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bl19//335jAMAAAA3IysDr+SFBYWpiVLlti6FgAAAMCurushF0eOHNHo0aPVs2dPnThxQpL01Vdfad++fTYtDgAAALAlq8Pvt99+qwYNGigpKUnLly9XTk6OJGn37t08BhkAAAA3NavD74svvqiJEycqISFBLi4u5vb77rtPW7ZssWlxAAAAgC1ZHX737t2rhx9+uFC7t7e3Tp48aZOiAAAAAHuwOvx6eXnp+PHjhdp37dqlKlWq2KQoAAAAwB6sDr/du3fXyJEjlZaWJpPJpPz8fG3atEnDhg1T79697VEjAAAAYBNWh9/JkyerTp068vf3V05OjoKDg9W6dWvde++9Gj16tD1qBAAAAGzC6nl+XVxctGDBAsXFxenHH39UTk6OGjdurKCgIHvUBwAAANjMdT3kQpJ8fX31119/qUaNGipV6rp3AwAAANwwVg97OHv2rPr16yd3d3fVq1dPR48elSQ999xzeuWVV2xeIAAAAGArVoffUaNGaffu3dqwYYPc3NzM7REREVq2bJlNiwMAAABsyerxCqtWrdKyZct0zz33yGQymdvr1aunI0eO2LQ4AAAAwJasvvKbkZEhb2/vQu25ubkWYRgAAAC42Vgdfps2baovvvjCvFwQeN955x01b97cdpUBAAAANmb1sIfJkyerQ4cO2r9/vy5duqRZs2Zp//79+uGHH/Ttt9/ao0YAAADAJqy+8tuyZUslJyfr0qVLatCggdauXStvb29t3rxZoaGh9qgRAAAAsInrmqC3Ro0aWrBgga1rAQAAAOzK6iu/AAAAwK2q2Fd+nZycrjmbg8lk0qVLl/51UQAAAIA9FDv8rly58orrNm/erNmzZys/P98mRQEAAAD2UOzw27lz50Jthw4d0osvvqjVq1erV69eGj9+vE2LA4CbTRnnfL0RlmqxDAC4dVzXmN8//vhDAwYMUIMGDXTp0iUlJyfr/fffV0BAgK3rA4CbiskkuZfKN794tg8A3FqsCr+nT5/WyJEjVbNmTe3bt0+JiYlavXq16tevb6/6AAAAAJsp9rCHqVOn6tVXX5Wvr6/++9//FjkMAgAAALiZFTv8vvjiiypTpoxq1qyp999/X++//36R/VasWGGz4gAAAABbKnb47d279zWnOgMAAABuZsUOv4sWLbJjGQAAAID98YQ3AAAAOAzCLwAAABwG4RcAAAAOg/ALAAAAh0H4BQAAgMMo1mwPn332WbF3+NBDD113MQAAAIA9FSv8dunSxWLZZDLJMAyL5QJ5eXm2qQwAABRiGIZyc3PNy2XLlmUefsAKxRr2kJ+fb36tXbtWISEh+uqrr5SVlaWsrCx9+eWXatKkidasWWPvegEAcGi5ubnq3Lmz+fX3IAzg2or9kIsCQ4YM0bx589SyZUtzW2RkpNzd3TVw4EAdOHDApgUCAAAAtmL1DW9HjhyRl5dXoXZPT0+lpqbaoCQAAADAPqwOv3fffbdiY2OVnp5ubktPT9fw4cPVrFkzmxYHAAAA2JLV4XfhwoU6fvy4qlatqpo1a6pmzZqqWrWqfv/9d7377rv2qBEAAACwCavDb82aNbVnzx6tXr1agwcP1uDBg/X5559r7969qlmzptUFzJkzR4GBgXJzc1NYWJi2bt161f5ZWVkaNGiQKleuLFdXV9WqVUtffvml1ccFAACA47H6hjfp8tRm7dq1U+vWreXq6nrdU6wsW7ZMsbGxmjdvnsLCwjRz5kxFRkbq0KFD8vb2LtT/woULeuCBB+Tt7a1PPvlEVapU0a+//lrkGGQAAADgn6y+8pufn68JEyaoSpUqKleunFJSUiRJcXFxVg97mDFjhgYMGKC+ffsqODhY8+bNk7u7uxYuXFhk/4ULFyozM1OrVq1SixYtFBgYqPDwcDVq1Mja0wAAAIADsjr8Tpw4UYsWLdLUqVPl4uJibq9fv77eeeedYu/nwoUL2rFjhyIiIv5XjJOTIiIitHnz5iK3+eyzz9S8eXMNGjRIPj4+ql+/viZPnsyDNQAAAFAsVoffxYsXa/78+erVq5ecnZ3N7Y0aNdLBgweLvZ+TJ08qLy9PPj4+Fu0+Pj5KS0srcptffvlFn3zyifLy8vTll18qLi5Or732miZOnHjF45w/f17Z2dkWLwAAADgmq8Pv77//XuSNbfn5+bp48aJNirqS/Px8eXt7a/78+QoNDVVUVJRefvllzZs374rbTJkyRZ6enuaXv7+/XWsEAADAzcvq8BscHKzvvvuuUPsnn3yixo0bF3s/FStWlLOzs8V8wdLlOYN9fX2L3KZy5cqqVauWxRXnunXrKi0tTRcuXChym1GjRun06dPm17Fjx4pdIwAAAG4vVs/2EB8fr+joaP3+++/Kz8/XihUrdOjQIS1evFiff/55sffj4uKi0NBQJSYmqkuXLpIuX9lNTExUTExMkdu0aNFCS5cuVX5+vpycLuf2n376SZUrV7YYf/x3rq6ucnV1te4kAQAAcFuy+spv586dtXr1aq1bt05ly5ZVfHy8Dhw4oNWrV+uBBx6wal+xsbFasGCB3n//fR04cEDPPPOMcnNz1bdvX0lS7969NWrUKHP/Z555RpmZmXr++ef1008/6YsvvtDkyZM1aNAga08DAAAADui65vlt1aqVEhIS/vXBo6KilJGRofj4eKWlpSkkJERr1qwx3wR39OhR8xVeSfL399fXX3+toUOHqmHDhqpSpYqef/55jRw58l/XAgAAgNuf1eG3f//+evzxx9WmTRubFBATE3PFYQ4bNmwo1Na8eXNt2bLFJscGAACAY7F62ENGRobat28vf39/DR8+XMnJyXYoCwAAALA9q8Pvp59+quPHjysuLk7btm1TaGio6tWrp8mTJys1NdUOJQIAAAC2cV1jfsuXL6+BAwdq4MCB+u233/Tf//5XCxcuVHx8vC5dumTrGgEAuOmkxlcrkeOeveQkKdC8fHRyI7mXyr/hdQSOT7nhxwRsweorv3938eJFbd++XUlJSUpNTS30tDYAAADgZnJd4Xf9+vUaMGCAfHx81KdPH3l4eOjzzz/Xb7/9Zuv6AAAAAJuxethDlSpVlJmZqfbt22v+/Pnq1KkTD5EAAADALcHq8Dt27Fg99thj8vLyskM5AAAAgP1YPexhwIAB8vLy0s8//6yvv/5af/31lyTJMAybFwcAAADYktXh988//9T999+vWrVqqWPHjjp+/LgkqV+/fnrhhRdsXiAAAABgK1aH36FDh6p06dI6evSo3N3dze1RUVFas2aNTYsDAAAAbMnqMb9r167V119/rbvuusuiPSgoSL/++qvNCgMAAABszeorv7m5uRZXfAtkZmYy6wMAAABualaH31atWmnx4sXmZZPJpPz8fE2dOlVt27a1aXEAAACALVk97GHq1Km6//77tX37dl24cEEjRozQvn37lJmZqU2bNtmjRgAAAMAmrL7yW79+ff30009q2bKlOnfurNzcXD3yyCPatWuXatSoYY8aAQAAAJuw+sqvJHl6eurll1+2dS0AAACAXRUr/O7Zs0f169eXk5OT9uzZc9W+DRs2tElhAAAAgK0VK/yGhIQoLS1N3t7eCgkJkclk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Njc3N7366qs6depUidUAALj9EH4BB+br62t+eXp6ymQymZe9vb01Y8YM3XXXXXJ1dVVISIjWrFlj3rZatWqSpMaNG8tkMqlNmzaSpG3btumBBx5QxYoV5enpqfDwcO3cudPq2iIiIuTr66spU6Zctd/333+vVq1aqUyZMvL399fgwYOVm5trXn/+/HkNGzZMVapUUdmyZRUWFqYNGzZY7GPRokWqWrWq3N3d9fDDD+vPP/+8Zn3vvPOO6tatKzc3N9WpU0dvvfWWed2FCxcUExOjypUry83NTQEBAdc8DwDAjUH4BVCkWbNm6bXXXtP06dO1Z88eRUZG6qGHHtLhw4clSVu3bpUkrVu3TsePH9eKFSskSWfOnFF0dLS+//57bdmyRUFBQerYsaPOnDlj1fGdnZ01efJkvfHGG/rtt9+K7HPkyBG1b99ejz76qPbs2aNly5bp+++/V0xMjLlPTEyMNm/erA8//FB79uzRY489pvbt25vPIykpSf369VNMTIySk5PVtm1bTZw48aq1LVmyRPHx8Zo0aZIOHDigyZMnKy4uTu+//74kafbs2frss8/00Ucf6dChQ1qyZIkCAwOtOn8AgJ0YAGAYxnvvvWd4enqal/38/IxJkyZZ9Ln77ruNZ5991jAMw0hJSTEkGbt27brqfvPy8ow77rjDWL16tblNkrFy5corbhMdHW107tzZMAzDuOeee4wnn3zSMAzDWLlypfH3f7b69etnDBw40GLb7777znBycjL++usv49dffzWcnZ2N33//3aLP/fffb4waNcowDMPo0aOH0bFjR4v1UVFRFu/FmDFjjEaNGpmXa9SoYSxdutRimwkTJhjNmzc3DMMwnnvuOeO+++4z8vPzr3iOAICSUaqEszeAm1B2drb++OMPtWjRwqK9RYsW2r1791W3TU9P1+jRo7VhwwadOHFCeXl5Onv2rI4ePXpdtbz66qu67777ihx/vHv3bu3Zs0dLliwxtxmGofz8fKWkpOiXX35RXl6eatWqZbHd+fPndeedd0qSDhw4oIcffthiffPmzS2GePxdbm6ujhw5on79+mnAgAHm9kuXLsnT01PS5Rv2HnjgAdWuXVvt27fXf/7zH7Vr1+66zh8AYFuEXwA2FR0drT///FOzZs1SQECAXF1d1bx5c124cOG69te6dWtFRkZq1KhR6tOnj8W6nJwcPfXUUxo8eHCh7apWrao9e/bI2dlZO3bskLOzs8X6cuXKXVc9OTk5kqQFCxYoLCzMYl3BMZo0aaKUlBR99dVXWrdunbp166aIiAh98skn13VMAIDtEH4BFOLh4SE/Pz9t2rRJ4eHh5vZNmzapWbNmkiQXFxdJUl5ensW2mzZt0ltvvaWOHTtKko4dO6aTJ0/+q3peeeUVhYSEqHbt2hbtTZo00f79+1WzZs0it2vcuLHy8vJ04sQJtWrVqsg+devWVVJSkkXbli1brliLj4+P/Pz89Msvv6hXr15X7Ofh4aGoqChFRUWpa9euat++vTIzM1WhQoUrbgMAsD/CL4AiDR8+XGPGjFGNGjUUEhKi9957T8nJyeYhBt7e3ipTpozWrFmju+66S25ubvL09FRQUJA++OADNW3aVNnZ2Ro+fLjKlCnzr2pp0KCBevXqpdmzZ1u0jxw5Uvfcc49iYmLUv39/lS1bVvv371dCQoLefPNN1apVS7169VLv3r312muvqXHjxsrIyFBiYqIaNmyoBx98UIMHD1aLFi00ffp0de7cWV9//fUVhzwUGDdunAYPHixPT0+1b99e58+f1/bt23Xq1CnFxsZqxowZqly5sho3biwnJyd9/PHH8vX1tXhwBgCgZDDbA4AiDR48WLGxsXrhhRfUoEEDrVmzRp999pmCgoIkSaVKldLs2bP19ttvy8/PT507d5Ykvfvuuzp16pSaNGmiJ554QoMHD5a3t/e/rmf8+PHKz8+3aGvYsKG+/fZb/fTTT2rVqpUaN26s+Ph4+fn5mfu899576t27t1544QXVrl1bXbp00bZt21S1alVJ0j333KMFCxZo1qxZatSokdauXavRo0dftZb+/fvrnXfe0XvvvacGDRooPDxcixYtMk//dscdd2jq1Klq2rSp7r77bqWmpurLL7+UkxP/5AJASTMZhmGUdBEAAADAjcBlCAAAADgMwi8AAAAcBuEXAAAADoPwCwAAAIdB+AUAAIDDIPwCAADAYRB+AQAA4DAIvwAAAHAYhF8AAAA4DMIvAAAAHAbhFwAAAA6D8AsAAACH8f8AoabALnFX2KsAAAAASUVORK5CYII=", "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -444,250 +392,219 @@ } ], "source": [ - "import matplotlib.pyplot as plt\n", - "import seaborn as sns\n", + "import warnings\n", "\n", - "def plot_grouped_subplots(df_gpt4_grouped, df_claude3_grouped):\n", - " # Create a figure with two subplots\n", - " fig, axes = plt.subplots(1, 2, figsize=(12, 4), sharey=True) # Share the Y-axis\n", - " \n", - " # Plot for GPT-4\n", - " sns.barplot(data=df_gpt4_grouped, \n", - " x='total needles', \n", - " y='frac_retrieved', \n", - " hue='context length', \n", - " ax=axes[0],\n", - " palette=sns.color_palette(\"bright\", len(df_gpt4_grouped['context length'].unique())))\n", - " axes[0].set_title('Fraction of Retrieved Needles: GPT-4')\n", - " axes[0].set_xlabel('Total Needles')\n", - " axes[0].set_ylabel('Fraction of Retrieved Needles')\n", - " axes[0].legend(title='Context Length', bbox_to_anchor=(1.05, 1), loc='upper left')\n", - " \n", - " # Plot for Claude3\n", - " sns.barplot(data=df_claude3_grouped, \n", - " x='total needles', \n", - " y='frac_retrieved', \n", - " hue='context length', \n", - " ax=axes[1],\n", - " palette=sns.color_palette(\"bright\", len(df_claude3_grouped['context length'].unique())))\n", - " axes[1].set_title('Fraction of Retrieved Needles: Claude3')\n", - " axes[1].set_xlabel('Total Needles')\n", - " # axes[1].set_ylabel('') # You can omit the Y label for the second subplot to avoid repetition\n", - " axes[1].legend(title='Context Length', bbox_to_anchor=(1.05, 1), loc='upper left')\n", - " \n", - " # Adjust layout for legend and tightness\n", - " plt.tight_layout(rect=[0, 0, 0.9, 1]) # Adjust as needed to make room for legend\n", - " plt.show()\n", + "def plot_performance_vs_needles(df):\n", + " with warnings.catch_warnings():\n", + " \n", + " # Ignore specific FutureWarnings\n", + " warnings.simplefilter(action='ignore', category=FutureWarning)\n", + " \n", + " plt.figure(figsize=(8, 5)) \n", + " ax = sns.barplot(data=df, \n", + " x='total needles', \n", + " y='fract per turn', \n", + " hue='context length', \n", + " palette=sns.color_palette(\"bright\", len(df['context length'].unique())))\n", + " ax.set_title('Fraction of Retrieved Needles: GPT-4')\n", + " ax.set_xlabel('Total Needles')\n", + " ax.set_ylabel('Fraction of Retrieved Needles')\n", + " ax.grid(False)\n", + " ax.legend(title='Context Length', bbox_to_anchor=(1.05, 1), loc='upper left')\n", + " plt.tight_layout(rect=[0, 0, 0.9, 1])\n", + " plt.show()\n", "\n", - "# Suppress specific FutureWarnings from seaborn\n", - "import warnings\n", - "with warnings.catch_warnings():\n", - " warnings.simplefilter(\"ignore\", category=FutureWarning)\n", - " # Call the plotting function with your grouped data\n", - " plot_grouped_subplots(df_gpt4_grp, df_anthropic_grp)" + "# Prepare for plotting\n", + "df_gpt4['fract per turn'] = df_gpt4['retrieved needles'] / df_gpt4['total needles']\n", + "\n", + "# Choose specific context lengths to plot\n", + "df_gpt4_plot = df_gpt4[df_gpt4['context length'].isin([120000,1000])]\n", + "\n", + "plot_performance_vs_needles(df_gpt4_plot)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "## Plot retrieval wrt position " - ] - }, - { - "cell_type": "code", - "execution_count": 69, - "metadata": {}, - "outputs": [], - "source": [ - "# Get a single replicate to viz (1 out of 3)\n", - "replicate = 1\n", - "gpt4_replicate_1 = df_gpt4_needle_check.groupby(['context size', 'total_needles', 'insertion %']).nth(replicate).reset_index()\n", - "anthropic_replicate_1 = df_anthropic_needle_check.groupby(['context size', 'total_needles', 'insertion %']).nth(replicate).reset_index()" + "## Performance wrt position" ] }, { "cell_type": "code", - "execution_count": 70, + "execution_count": 199, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", - "import numpy as np\n", "import pandas as pd\n", - "import matplotlib.patches as mpatches\n", + "import numpy as np\n", + "\n", + "# Number of needles to focus on\n", + "number_of_needles = 10\n", + "d_for_headmap = df_gpt4_needle_check[df_gpt4_needle_check.total_needles == number_of_needles].copy()\n", "\n", - "def plt_simple_needle_scatter(results_df, model, ax):\n", - " sns.set(style=\"whitegrid\")\n", + "# Label each needle\n", + "s = d_for_headmap[d_for_headmap['context size']==d_for_headmap['context size'].unique()[0]]\n", + "s = s[['needle','insertion %']].drop_duplicates()\n", + "needle_names = [f\"Needle # {int(s)}\" for s in np.linspace(1,number_of_needles,number_of_needles)]\n", + "s['needle_name'] = needle_names\n", + "s.set_index('needle',inplace=True)\n", + "d_for_headmap['needle_name'] = d_for_headmap['needle'].apply(lambda x: s.loc[x,'needle_name'])\n", "\n", - " # Map 'retrieved_needles_check' to colors\n", - " colors = results_df['retrieved_needles_check'].map({1: 'green', 0: 'red'})\n", + "# Group by 'total_needles' and 'context size' and calculate the mean 'insertion %'\n", + "heatmap_data = d_for_headmap.groupby(['needle_name', 'context size'])['retrieved_needles_check'].mean().reset_index()\n", "\n", - " # Scatter plot without offsets for simplicity, plotted on the provided axis\n", - " ax.scatter(results_df['context size'], results_df['insertion %'], s=100, color=colors, edgecolor='black')\n", + "# Correcting the pivot call\n", + "heatmap_data_pivoted = heatmap_data.pivot(index=\"needle_name\", columns=\"context size\", values=\"retrieved_needles_check\")\n", "\n", - " # Turn off grid lines for the axis\n", - " ax.grid(False)\n", - " ax.set_xlim(-2000,200000)\n", - " ax.set_xlabel(\"Context Size (tokens)\")\n", - " ax.set_ylabel(\"Insertion % within Context\")\n", - " ax.set_title(f\"Needle Retrieval Analysis: {model}\")\n", - " ax.invert_yaxis()\n", + "# Now, plot the heatmap\n", + "plt.figure(figsize=(7, 4)) \n", + "sns.heatmap(heatmap_data_pivoted.loc[needle_names], annot=True, cmap=\"coolwarm\", fmt=\".2f\", linewidths=0)\n", "\n", - " # Custom legend for the axis\n", - " green_patch = mpatches.Patch(color='green', label='Needle Retrieved')\n", - " red_patch = mpatches.Patch(color='red', label='Needle Not Retrieved')\n", - " ax.legend(handles=[green_patch, red_patch], loc='lower left')" + "plt.title('Needle Retrieval Analysis Heatmap')\n", + "plt.xlabel('Context Size (tokens)')\n", + "plt.ylabel('Needle #')\n", + "plt.tight_layout()\n", + "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "The `1000 token` context can show irregularities in `Insertion %` due to:\n", + "## Plot retrieval vs reasoning\n", "\n", - "* Needles are fairly large relative to the short context\n", - "* The insertion methods will aim to avoid sentence breaks\n", + "`eval_sets_reasoning`\n", "\n", - "For `1000 token` visualization, we snap to the `Insertion %` for the next larger context length bin." + "* https://smith.langchain.com/public/a85db85f-ee45-4a39-a1ac-52f7279134ac/d\n", + "* https://smith.langchain.com/public/270cd9cd-154d-4ba9-8b34-7b6537007867/d\n", + "* https://smith.langchain.com/public/00658b64-6199-48fc-9443-1478aadbe19a/d" ] }, { "cell_type": "code", - "execution_count": 71, + "execution_count": 185, "metadata": {}, "outputs": [ { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAABvgAAAJICAYAAACkMeMUAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3hT5f/G8XdGW0oXe++NOBkKiAxZIohbERQZIhuV4fYL4kQERKCggICggMqSIRsU2YIbmbKHQqEtFChN8vz+qO2PsppoT9O09+u6einJ8yT3OU3aT88nzzk2Y4xBRERERERERERERERERAKC3d8BRERERERERERERERERMR7avCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAKIGn4iIiIiIiIiIiIiIiEgAUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgE8nijDH+jiAiIiKSpaleEhEREUlL9ZGISPanBp9YrmHDhjidTn744Ycr3l+mTBk6dOiQaXkufr59+/Zhs9mYPHnyf3rMyZMnY7PZLvsKDQ2lbNmy9OrVi9OnT/v0mLGxsbRv3541a9Zcc1xGbcO/0aFDB8qUKZPuOI/HQ6lSpbDZbGzZsiVLZPLW6tWrsdlsrF69OsMe82KbN2+mY8eOlCtXjtDQUPLly0fjxo2ZPn36ZWOv9hqrVq0a7733Hh6PB0h+z11p7MVf3r7nDh48SFRUFIMGDfJpu/r160fDhg3THZfy3nnmmWeueP+gQYOw2Ww+Pfd/cenzNWzY0KvtEBH5r1QvqV5SvXR12ale2rZtG61atSJv3rzkz5+fJ598kmPHjl1zTkp9MmLEiCven9Hfz/Rc+nyZ/fNJRHIO1Ueqj1QfXV12qo8udq3jSSNHjqRChQqEhoZSvXp1Fi1adM3HSnmN16xZE5fLddn9Vn+P0nu+zD7mJdmT098BJGdwu9106NCBrVu3Ehwc7O84lpk9ezZFixZN/fepU6dYvHgxH374IcePH2fmzJleP9ZPP/3E1KlT6dSp0zXHFS1alPXr11O+fPl/ndtqy5Yt49ixY1SpUoVx48Yxfvx4f0fyWvXq1Vm/fj3XXXddhj/2iBEjGDBgAPXr12fgwIGULVuWU6dOMWvWLNq1a8f69ev58MMP08zp3LkzTz31VOq/ExISmD17Ni+88AKnTp3inXfeITo6mvj4+NQxPXr0ACA6Ojr1toIFC6abzxhDp06d0jyWN4YNG8bw4cNp0KCB13NGjx7Nww8/TL169Xx6LhGR7ET1kuol1UuXy0710pEjR2jUqBHly5dn2rRpnD17lpdffpkmTZrw448/EhQUdM35r7zyCvfccw8VKlRI97lERLIL1Ueqj1QfXS471UcXu9bxpOHDh/P8888zcOBAatasycSJE2ndujWrV69O91jSli1bGDJkCK+88opPeUQCgRp8kimioqL4/fffef3113nrrbf8Hccyt9xyy2Wf9mnRogV//fUXX3zxBRMnTiQ8PDxDnzMkJITatWtn6GNmtEmTJnH77bfTvHlz3nzzTYYNG0ZkZKS/Y3klMjLSkv27evVq+vXrR69evS4ruu69915uuukm+vfvT9u2bdM8f4kSJS7L07hxY7Zv386YMWMYPHjwZcVjyr72dTvGjh3L9u3bvR6/d+9e+vXrx9dff01UVJRPzxUZGUnHjh355ZdfCA0N9WmuiEh2oXpJ9ZLqpbSyW700fvx44uLimD9/Pvnz5weSD5I1atSIlStX0rx582vODwkJoVOnTnz77bf6tLeI5Biqj1QfqT5KK7vVR5D+8aRz587xxhtv0K9fP1577TUA7rrrLurWrcvrr7/OsmXLrvn4efLkYfDgwdx3331Uq1bNp20Ryep0ik7JFDfffDPt27fnvffe82pJ/YQJE6hWrRohISGUKlWKQYMG4Xa704xZs2YNDRo0IHfu3OTLl48nn3yS48ePpxnzyy+/0LRpU8LDwyldujSfffZZus994MABHnvsMfLly0fu3Llp3LgxP/74o28bfIk8efKkLmX3Jv/q1atp1KgRAI0aNUpdmt6wYUMef/xxHnroIcLCwmjatOkVT6mQ3jZUrlyZhx566LKcN998M/feey+Q/Cm5IUOGcP311xMaGkpYWBh169Zl1apVPm37qVOnmDt3Lq1ataJt27acPXuWadOmXTbOZrMRHR3NU089Rb58+YiIiOCRRx7hr7/+Sh3ja6YBAwYQGhpKXFxcmtvffPNNoqKiOHv2LOfOnaNHjx6UKFGCkJAQqlSpwvvvv5869tLl8+mNh+TTdqR3WsfBgwdTsmRJ3nvvvSve/8wzz3Dv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f//+xhhjPv74YwOYDRs2pI7xeDymfv36pmbNmsYYY3777TcDmLFjx6aOcbvd5rrrrrtqg2/Hjh3GZrOZd999N802vPrqqyZXrlzmxIkT5ujRowYwn332Wer9sbGx5rnnnkv9+SUiciWql1QvqV5KK7vXS5UqVTKACQ0NNYsXL77m2IvroYMHD5qoqChTv3791AM9l34/vXnvePMeWLBggQHMN998kzrmzJkzpkCBAldt8C1dutQAZsaMGWm24fHHHzdFixY1SUlJZv369Ze9vnfv3m2ef/55c/DgwfR2nYjkIKqPVB+pPkoru9dHV3vOd955xwAmKSkpze3Lli274msixaWv8QceeMCEhISk/jy49HvkzfEkb44NeTweU6hQIfPoo4+mGdOtW7erNvg8Ho8pUaKEueuuu9LMWb58uQFSXycZ8TqS7EWn6JRMdc899/D4448zZMgQtm7detn969ev59y5c7Ru3RqXy5X6dc899wDJF9c9e/YsGzZsoGXLlhhjUseUK1eOqlWrpp53ec2aNdSpU4cCBQqkPv5tt91GqVKlrppvxYoV3HzzzRQvXjz1ce12Oy1atEj3fM4AX3/9NZs3b2bt2rU89dRTBAcHM3jwYIYPH556rnRv819N1apVCQkJ+U/bULZsWW6//XZmzJiROm/69Ok8/PDDqY/92Wef8cwzz3D8+HG+//57Jk2alHoqhMTExHT3BSSf0mLr1q08+OCDxMbGEhsby5133klYWBgfffTRZePr1KmT5t8lSpRIswz932Tq3Lkza9asSV0GP3nyZCpXrpz6XI0aNWL8+PHcfffdjB49mr179/Laa6/RsmXLKz6er+Ov5GqnNVqxYgVBQUFpvho3bpxmzBtvvJF6X3BwMKVKleL111+na9euDBo0yOsMF7/2Ur4Atm/fzquvvsrHH3/s83X0/qvw8HAmTpzIrl27rnrh4xUrVtCwYUNy586dmjsyMpI77rgj9fW9YsUKihQpQo0aNVLHuN1u7rnnHn744QdOnTrFmjVrAFJ/tgDY7fYrnmokxcqVKzHGcM8996TZb61bt+b8+fOsWbOGwoULc91119GlSxeefPJJPv/8czweD8OHD9d53kXEa6qXVC+pXsr+9dKYMWNYsmQJjRs3plWrVixZssSreSVKlGDYsGF89913VzwVlLfvHW/eA2vWrCE4ODjN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uXPnZafeaNCgAdu2bePmm29OzV2jRg2GDx/OnDlzUsccPHiQQoUKpdm+pUuX8t577+F0OrnzzjsB+PLLL9M8/vz586+aq379+gCcOHEizeMeP36c1157jZiYGNavX0/hwoXZvHkzNpuNm2++mTfffJMbbrjB59eIiIjqJdVLqpeyV700depU2rdvn+bT56dPn2b9+vXceOONPmUrWbIk77//Pt9++y3z5s1Lvd3b944374HGjRvjcrmYO3du6uNfuHCBpUuXXjVXgwYNOHPmDMaYNI/766+/8vrrr+Nyufjqq68oWLAgx44dw+FwUKdOHaKjo8mTJ4/qJRFJl+oj1Ueqj7JXfeSNunXrEhYWxldffZV6mzGG2bNn06BBA58b6OPGjSMsLIyXXnopze3eHE/y5thQxYoVKVmypE/HnKpUqUKhQoXYu3dvmsctXrw4L774Ij/++GOGvo4kG8mka/1JDna1C7LGxMSYwoULp7lIsTHJFyUNCQkxr776qlm+fLmZMmWKKVWqlCldunTqRVqXLFliHA6Hadu2rVm4cKH5+uuvTf369U1ISEjqxXFPnDhhihYtaqpVq2a++uorM2PGDFO+fHmTK1euq14U+fDhw6ZQoUKmVq1aZubMmWb58uWmS5cuBjAjRoy46jamXBR57969V7y/fv36xmazmY0bN3qd/5dffjGA6d+/v/npp5+uui//yzbMnTvXOBwOA5gdO3ak3h4bG2siIyNNrVq1zIIFC8ySJUtMly5djN1uN4D5+uuvjTHXvihyixYtTKFChdJc1PdigwcPTnNhWa5w4d2LLzb7XzNVrlzZAGbmzJlpbm/Tpo2JiIgwH374oVm9erX56KOPTJ48eVJfI5decDe98cYkX/T4999/v+J2X2z06NEmODjY1K5d24wbN86sWrXKzJ8/3/Tr18/kzZvXhIaGprlw8pX2kTd8vSjypf7N83r7nNd67zz11FOpFxdP8fPPP5vcuXOb5s2bm7lz55rFixeb+++/39hsNjNr1ixjjDFnzpwxlStXNpUqVTKTJ082K1euNC+99JKx2+3mmWeeSX2sp59+2oSEhJh33nnHLF682LRr186Ehoameb5Lt+Pxxx83UVFR5r333jMrV640Y8eONXnz5jXVq1c3LpfLnDt3zpQpU8ZUrlzZTJ8+3axatcq88sorad6jIiJXonpJ9dKVqF7KXvXStm3bTFhYmGnQoIFZsGCBmTVrlrn11ltNRETENffFxd/jSzVt2tQAab6f3rx3vH0PNG/e3OTJk8dER0ebhQsXmubNm5vQ0NA0z1e6dOnU763b7Tb169c3RYsWNdHR0WbVqlVmyJAhJiQkxNx7773GGGOOHDli8ubNa2677TYzZ84cs2LFCvP0008bm81mVq5cec19KCI5i+oj1UdXovooe9VH3j7nwIEDjc1mM6+++qpZtGiReeihh4zT6TTff//9VR/r0tf4xaZNm5Z6zCnle+Tt8aT0jg0ZY8znn39uAPPUU0+ZJUuWmEGDBpnIyMg0z3dpjTd+/Hhjt9tN7969zdKlS80XX3xhbrjhBpM3b17z559/GmO8ex1JzqIGn1juWr8MZs+efVlBZowxY8aMMdddd50JDg42hQsXNu3atTP79+9PM2b58uXmjjvuMKGhoSYqKsrceeedZs2aNWnG7Nmzx9xzzz0mPDzcFClSxAwfPtzcdtttVy3IjDFm9+7d5uGHH079hXjTTTeZiRMnXnMb0yvIfv75Z+NwOEytWrWMx+PxKr/b7TaPPfaYyZUrl6lWrdpV9+V/2YYLFy6Y/Pnzm1q1al1236pVq0zNmjVNaGioKVSokGnevLn5/vvvTUREhBkwYIAx5urFz+HDh43D4TA9e/a86j7bu3evsdls5tFHHzXGpF+Q/ddMffv2NXnz5jXnz59Pc3t8fLzp06ePKVWqlAkODjYlSpQw/fv3N2fPnk19zot/+aY33pjkgxzeFkC//fab6dmzp6lYsaIJDQ01ERERpmbNmuZ///ufOXToUJqx2aEgu9S13jtxcXGmZMmSlx3Q2rJli7nrrrtMRESECQ8PN7Vr1zbz5s1LM+avv/4ynTp1MoUKFTIhISGmcuXK5r333jNutzt1jMvlMv/73/9M8eLFTWhoqLn//vvNm2++ec0GX1JSkhk8eLApV66cCQoKMiVKlDDdu3c3MTExqWN27txpHnjgAVOoUCETHBxsqlWrZj766KN094WI5Gyql1QvXYnqpWTZqV7aunWrad68ucmbN6+JiIgwrVq1Mr/++us151yrwbd//34TERFx2ffTm/e+N++BhIQE06tXL1OgQAETHh5uOnfubJ555pmrNviMST449txzz5kSJUqY4OBgU7ZsWfPSSy+Zc+fOpY7ZtGmTadasmcmXL5/JlSuXqVmzppk9e/Y194OI5Dyqj1QfXYnqo2TZqT7y5jndbrd54403TMmSJU2uXLlM9erVzaJFi675WNdq8BljTOvWrdN8j4zx7niSN8eGjDFmxowZplq1aiYkJMTUrFnTTJ8+/ZoNPmOMmTlzpqlRo4YJCQkx+fPnN61btza//PJL6v3evI4kZ7EZ4+XVTUVEApQxhmrVqtG8efPLzq8tIiIiIqqXRERERC6l+khEsjo1+EQk2zp9+jTDhw9n8+bNLF++nD/++IOyZcv6O5aIiIhIlqF6SURERCQt1UciEijU4BORbMvlclGqVCncbjcjRoygbdu2/o4kIiIikqWoXhIRERFJS/WRiAQKNfhEREREREREREREREREAojd3wFERERERERERERERERExHtq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKI098BrOLxeDhy5AgRERHYbDZ/xxERERE/M8Zw+vRpihUrht2uzziB6iURERFJS/XSlalmEhERkYtllZop2zb4jhw5QsmSJf0dQ0RERLKYgwcPUqJECX/HyBJUL4mIiMiVqF5KSzWTiIiIXIm/a6Zs2+CLiIgAkndwZGSkn9OIiIiIv8XHx1OyZMnUGkFUL4mIiEhaqpeuTDWTiIiIXCyr1EzZtsGXcsqEyMhIFV8iIiKSSqdV+n+ql0RERORKVC+lpZpJRERErsTfNZNOqC4iIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAKIGn4iIiIiIiIiIiIiIiEgAUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiNPfAUREREQkazlx4gTz58/n77//xul0Ur58ee6++26Cg4P9Hc0yZ8+eZf78+Rw4cABjDMWKFaN169ZERkb6O5qIiIhkUX/88Qfbt28nMTGRAgUKUK9ePXLlyuXvWJY6ePAgP/74IwkJCURFRVGnTh3y5s3r71giIiI5khp8IiIiIgLAb7/9xntD32PGjBkkJSXhCHWA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ffrQtm3bbPk3gUhGySq1gRp8IiIikiOoNric9onkRAkJCezevZuEf1YeVK5cGafT6e9Yljp//jy///576oHJqlWrEhER4e9YljLGsGvXLk6ePEmuXLkoU6YMefLk8XcskSxPtcGVab9ITuN2u/n555+JiYkhV65cVKhQgaJFi/o7lqWMMfz6668cPXoUh8NByZIlqVy5sr9jWe7w4cMcOHAAl8tFoUKFqFSpUrZq4IpYJavUBmrwiYiISI6g2uBy2iciIiJyMdUGV6b9IiIiIhfLKrVB4F9UQ0RERERERERERERERCQHUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAKIGn4iIiIiIiIiIiIiIiEgAUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAKIGn4iIiIiIiIiIiIiIiEgAUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAKIGn4iIiIiIiIiIiIiIiEgAUYNPREREREREREREREREJICowSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiBp8IiIiIiIiIiIiIiIiIgFEDT4RERERERERERERERGRAOL0dwAREREREREREZFAcuzYMSZPnsyOHTtITEwkf/783Hfffdx5553YbDZ/x7NEfHw8n332GVu2bCEhIYGoqCjuvPNO7r//foKCgvwdT0REJMdRg09ERERERERERMQL+/fv5/nnn2fW7FkYu8FexI5xGGzxNkaPHk35iuX536v/o3379v6OmmHi4+N5+eWXmfLJJ5w7f55bHA4iPB5+s9v56KOPKFKgAL2fe44XXngBh8Ph77gZ6sKFC8ydO5dVq1YRFxdHeHg4NWvWpG3btoSHh/s7niU8Hg9Lly5l3rx5xMTEEBISQpUqVejYsSPFihXzdzzLHDhwgJkzZ3L06FHsdjulS5emTZs2FCxY0N/RLHPixAmmT5/O3r17cblcFClShIcffpiKFSv6O5qIeMlmjDH+DmGF+Ph4oqKiiIuLIzIy0t9xRERExM9UG1xO+0REREQuptrgylL2y/r167nn3nuIvRCLq7YLbgJC/xlkgP3ARuAPeOGFF3jnnXcCfjXf8ePHadKwIft27OBZt5suQImL7v8NiAY+ttlo1aoVX86alS1W87lcLoYMGcLoDz7g2IkTXO90UsAYTtts/Oh2ExYaSsennuLNN98kIiLC33EzhDGGiRMn8s4bb/DngQNUcjop5fGQaLOxFThvDPfffz/vDxtG6dKl/R03w2zZsoXBgwaxYOFCQu12StjtyW9ntxtjt/PwI48wcNCgbNX02rt3L4MGDmTmjBkYt5tyDgcO4IDHw2m3m+ZNmvDqwIHUq1fP31FFsqysUjOpwSciIiI5gmqDy2mfiIiIyMVUG1xZyn4pVKQQMbYY3O3ccK3FW+uApfDhhx/Su3fvzIqZ4ZKSkqh/++38uXUrK9xurr/G2IXA/TYbT3bqxPgJEzIroiUuXLjAww8+yMKFC+liDD0hzbYfAD4GRjocVLzuOpatWkX+/Pn9EzaDGGPo17cvIz74gEeBZ4DaQEp7Og6YCgx1OrmQJw/LVq3i+uuv9YoIDPPmzePRhx+mgsfDM243j/H/b+0YYDIwyunkdFgYC775hjp16vgta0bZunUrdzVpQsjp0/R2uegIpKxRPAd8SfJr+xdg8pQptGvXzm9ZRbKyrFIzqcEnIiIiOYJqg8tpn4iIiMjFVBtcWcp+sYfY8fT0gDe7ZgFE7ork2NFjhIaGpj8+C/ryyy955JFHWAvU9WJ8NNAT2LFjB5UqVbI2nIU6d+rEtClTmOPxcPc1xv0MNHE4qFyrFqvXrMHpDNwrIQ0bNoz+/fszmuTv4dX8DTRzOIgpWJAtP/9MoUKFMilhxlu3bh2NGjTgHrebz4wh5CrjYoF77HZ+Dw9n4w8/BPRKvv3793Nr9eqUjotjkdtNgauMSwK6ANPsdhZ98w3NmjXLxJQigSGr1Ex2vz2ziIiIiIiIiIhIgPBU87K5B1A3+eDfzJkzLc1kpehRo7jD4fCquQfQCcjvcDBu3DgrY1nqjz/+4JNJkxiZTnMPks/QOsvtZu2GDSxYsCAz4lkiISGBwQMH0otrN/cACgGL3G5OHT9OdHR0JqSzzgv9+3OTx8Pn12juAeQB5ns8RJw9yxuDB2dSOmu8++672OPjWXiN5h5AEDABuMMYBjz3HNl0fZBItqAGn4iIiIiIiIiISHpu9mFsPrCXtzN5ymSLwljr8OHDrF6zhq5ut9dzcgEd3G6mTZ5sWS6rjRs3joJOJx29HF8fqO1wED1qlJWxLPX5559zOiGB/l6OLwY84XbzcXQ0SUlJVkazzC+//ML369fzgsdDsBfj8wC9XS5mzpjBiRMnLE5njfj4eKZOnkw3lyv1lJzX4gReMoZftm1j3bp1VscTkX9JDT4REREREREREZH0XGvJyxV4Cng4ePigNVksduTIEQCq+TivGnD81KmAbfx8NmUKHV2ua67oulQ3t5tlK1dy7Ngxy3JZadqUKbSw2Sjtw5yuwNHjx1m9erVFqaw1efJkijidtPZhTkcAj4fp06dblMpas2bN4lxiIl18mNMEKO90MjmAm/Yi2Z0afCIiIiIiIiIiIhaw2Wz+jvCvpOT29cR8KeMDcbsTExOJiYv7V01N+P+maKA5cugQ1/l4CsbrUuYG6DYfPHiQG9xugnyYkx8o5XBw8GBgNu0PHjxIIYeDYj7MsQM3uVwcCtBtFskJ1OATERERERERERFJz9++Dbf/badM6TKWRLFa8eLFAfjZx3k/A0UKFMDpdGZ4Jqv926ZkIDc1Aew2m8+NXM8//w3UbfZ4PP/qoLj9n7mByOPx/Kvvlw3w+HCqXhHJXGrwiYiIiIiIiIiIpOdHH8YeB8+fHjp16GRZHCsVLVqUZk2aMM7h8HpOAjDF4eDJzp2tC2ah4OBgCubN63NT8xeSG10pTdFAU7JMGX6y+3aIOGUflSpVKuMDZYKiRYuyw+HAl1bdaeCQ203RokWtimWpYsWKcdzlwpcrCBrgD6eTogH62hbJCdTgExERERERERERSYdtmw1OeTHQAN9D3vx5efDBB62OZZkevXqx0e1mhZfjxwHxHg9du3a1Mpal2nfqxGSHg3M+zBnncHBXs2YUKlTIslxWerJTJ1Z4POz0Yc5YoEyJEtxxxx1WxbJU27Zt2edyscyHOZ8BicCjjz5qUSprPfDAAzicTib5MGctsM3lol27dlbFEpH/SA0+ERERERERERGRdJQoVgLH5w6Iu8YgA6wGfoahQ4YSEhKSOeEs0KpVKxrVr8/DDgeb0xk7E3jeZqNP796ULVs2M+JZolu3bpx0u/nIy/FLgR/cbnr06mVlLEs9/PDDFMiTh7fx7pqLu4EZdjvdevXC4cMKz6ykTp063FStGkNtNq9W8Z0HPnQ4uKdVK0qUKGF1PEsUKFCARx59lDFOJ2e8GG+AoUDFsmVp3LixxelE5N9Sg09ERERERERERCQd8+bMo0iuIjjHO5ObeKcvutMD7AD7NDt8C2+//TadA/RUlSkcDgez582jcvXqNLDbeRbYcdH9BlgHtAPakLwqatjw4X5ImnEqVKhAzx496G+zMSudsZuARx0OGjdsSIsWLTIjniVy5crFu++/zxRgENdu8u0F7nI6KVO2bECv1LTZbLz57rusBJ6Fazb5EoG2Nht7HQ5eGzgwU/JZ5aWXX+ZkcDAP2u0kXGOcAV4EvgbeGjIEu4+ncBWRzKN3p4iIiIiIiIiISDrKly/PD5t+oONjHcm1MRe2D2wEjQsiaEIQzhFOmA435bmJ2bNn89JLL/k7bobIkycPK7/9ludefJHP8uShClA5KIiaQUGUCQridmBj6dKMGjWKT6dODdgVXRf7YORIHn7kER4G2gMbSNv02kFyU6ih3U7VGjWYNXduwG93586defvttxkMNLHbmQe4Lrr/EPA/oJbDAcWL882yZeTJk8cfUTNMq1atiI6OZrTNRjObjcWkbfRdAL4AbrfbWeR08sVXX1G9enX/hM0gVatWZe78+awNCeE2h4NPSV6dmMJD8qrUFjYb7wEjRozg4Ycf9ktWEfGOzRjjzerrgBMfH09UVBRxcXFERkb6O46IiIj4mWqDy2mfiIiIyMVUG1zZlfZLbGwsn3/+OTt37iQxMZF8+fJx3333UatWLT+ntU5iYiJfffUVW7du5cyZM0RFRXHnnXfSrFmzbLfCx+PxMGrUKEYOG8begwcp7XRSEIi32diZlESBPHl4ukcPXn31VUJDQ/0dN8PMmzePd954g41btpDf6aS4zcZ5YLfLRVhoKE906MCgQYMoWLCgv6NmmIULF/Lqiy/y02+/UdrppJLbjcdm4ze7nb9cLurffjvvDh1KnTp1/B01w/z00088378/y1asIL/TyQ3G4DSG3XY7+1wubqhaldffeov777/f31FFsqysUjOpwSciIiI5gmqDy2mfiIiIyMVUG1yZ9kvO5fF4WLx4MStXriQuLo7w8HBq1qzJQw89FNDXV0zPli1b+Prrr4mJiSEkJIQqVarQpk0bIiIi/B3NEsYYNmzYwOeff87Ro0dxOByULFmSDh06cP311/s7nmV27drF5MmT2bt3Ly6Xi8KFC9OmTRvq1q2LzWbzdzyRLC2r1AZq8ImIiEiOoNrgctonIiIicjHVBlem/SIiIiIXyyq1QfZaPy8iIiIiIiIiIiIiIiKSzanBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEAogafiIiIiIiIiIiIiIiISABRg09EREREREREREREREQkgKjBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEA4tcG3+HDh3nooYfIly8fxYsXp2/fvpw/fx6AvXv30qRJE8LCwrjuuutYunSpP6OKiIiIiIiIiIiIiIiIZAl+a/AZY3jooYc4e/Ysa9asYcaMGcyfP5/XXnsNYwz33XcfRYoU4YcffuCJJ57g/vvv58CBA/6KKyIiIiIiIiIiIiIiIpIlOP31xDt27GDDhg0cO3aMwoULAzB48GD69+9PixYt2LNnD+vWrSMsLIyqVauyYsUKPvnkEwYNGuSvyCIiIiIiIiIiIiIiIiJ+57cVfEWKFGHx4sWpzb0UcXFxbNiwgerVqxMWFpZ6e7169Vi/fn1mxxQRERERERERERERERHJUvy2gi9Pnjw0b9489d8ej4fRo0fTuHFjjh49SrFixdKML1y4MIcOHbrq4yUmJpKYmJj67/j4+IwPLSIiIhLAVC+JiIiIpE81k4iIiAQCv63gu9Tzzz/P1q1beeuttzh79iwhISFp7g8JCUlTXF3qnXfeISoqKvWrZMmSVkcWERERCSiql0RERETSp5pJREREAkGWaPC98MILfPDBB0ybNo3rr7+eXLlyXdbMS0xMJHfu3Fd9jJdeeom4uLjUr4MHD1odW0RERCSgqF4SERERSZ9qJhEREQkEfjtFZ4revXszduxYpk2bxoMPPghA8eLF+f3339OMO3bsGEWLFr3q44SEhFy26k9ERERE/p/qJREREZH0qWYSERGRQODXFXyvv/4648aNY8aMGbRp0yb19tq1a7N161bOnTuXetv3339P7dq1/RFTREREREREREREREREJMvw2wq+P/74gzfeeIOXXnqJevXqcezYsdT7GjRoQMmSJenYsSOvvfYa8+fPZ9OmTUyaNMlfcUVERERERERERERERESyBL+t4Js3bx5ut5s333yTokWLpvlyOBzMmzePo0ePUqNGDaZNm8acOXMoVaqUv+KKiIiIiIiIiIiIiIiIZAl+W8H34osv8uKLL171/goVKvDtt99mYiIRERERERERERERERGRrM+v1+ATEREREREREREREREREd+owSciIiIiIiIiIiIiIiISQNTgExEREREREREREREREQkgavCJiIiIiIiIiIiIiIiIBBA1+EREREREREREREREREQCiNPfAURERERERERERAKNy+XixIkTJCYmki9fPiIiIvwdyXIej4eYmBgSEhKIiooiT5482Gw2f8cSERHJkdTgExERERERERER8dKePXsYN24c4yeMJy42LvX2hnc2pHfP3rRu3RqnM3sdcvv777+ZOHEi40aP5sCRI6m333z99fTo04e2bdsSFhbmx4TW+euvv/j++++Jj48nLCyMGjVqUL58eX/Hssz58+f54osvmDdvHiePHyckNJTKVarw9NNPU61aNX/Hs9SxY8c4evQodrud4sWLU6BAAX9HstzJkyc5dOgQLpeLwoULU7x4cX9HEhEf2Iwxxt8hrBAfH09UVBRxcXFERkb6O46IiIj4mWqDy2mfiIiIyMVUG1xZyn6JjY1l5MiRDBo0CHtuO+4b3VAGcABx4PjFgXu/m8pVK7PkmyWULl3az8kzxvTp0+nUoQO4XDzm8dAKiACOAzPsdhZ4PBTMn5+vFy7ktttu82/YDLRhwwZGfvABs2bNIsnlSnNfsyZN6NWnD61atco2Kxg9Hg9Dhgxh2JAhxMTFUc9up6THQyKw1unkL5eLBvXqMXrsWK6//np/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RAJGVqkNnH57ZhERERERERERERGRLCInNrmCg4P9HUFE/iVdg09EREREREREREREREQkgKjBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEAogafiIiIiIiIiIiIiIiISABRg09EREREREREREREREQkgKjBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEAogafiIiIiIiIiIiIiIiISABRg09EREREREREREREREQkgKjBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEAogafiIiIiIiIiIiIiIiISABRg09EREREREREREREREQkgKjBJyIiIiIiIiIiIiIiIhJA1OATERERERERERERERERCSBq8ImIiIiIiIiIiIiIiIgEEDX4RERERERERERERERERAKIGnwiIiIiIiIiIiIiIiIiAUQNPhEREREREREREREREZEAogafiIiIiIiIiIiIiIiISABx+juAiIiIiIiIiIhIIDHGsH79enbs2EFiYiL58+enadOm5MmTx9/RLPX777+zZcsWEhISiIqKon79+pQoUcLfsSSDGWM4dOgQMTExhISEULJkScLDw/0dS0RELqEGn4iIiIiIiIiIiBcSExOZOHEiH47+kB1/7ADAZrdhPIaQXCE83u5x+vbty3XXXefnpBnHGMOXX37J6JEjWbNuHQAOmw23MTjsdlrfcw/P9u1L/fr1/Zw04/3xxx+MHTuWlUuWEB8fT1ju3NSsU4fuPXpQp04dbDabvyNmqISEBKZPn070hx/y46+/pt6eO1cu2rZrR4+ePbnlllv8mNAaZ8+eZcaMGXw+dSrHjhzBbrdTqmxZOnTqxL333ktQUJC/I2a4CxcuMGfOHCZNmMDe3btxud0UKVqUR9u1o3379tn+wwoi2YXN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PHEeqlStwhuvvUHz5s2DHVUk08osNZPf9+ALFZllgUVERCRzUG1wPq2JiIiInE21wYVdaF1s22bp0qVs2rSJlJQU8ufPT8OGDbP8um3cuJEVK1aQkJBATEwM9erVo0iRIsGO5ZjU1FS+++475s2bR1xcHLly5aJq1ao89NBD5MqVK9jxHLNy5UqmTZvG0aNHiYiIoGLFirRr1y5LX/P69ev58ssv2b9/P6ZpUqJECTp06ECpUpe76Wbo2rVrF2PHjmXnzp14PB4KFSpEu3btqFq1arCjiWR6maVmuuIG3+HDh0lOTubf00uWLBmQYFcrsyywiIiIZA6hWhs4WXOF6pqIiIiIM7JKbRDo+imrrIuIiIgERmapDfw+IHru3Ll07NiRAwcOAOnvWDIM48zvmeWIThEREZFQpppLRERExD+qn0RERCQ78bvB17t3b+rXr8+zzz4b8jdTFREREcmsVHOJiIiI+Ef1k4iIiGQnfjf4du3axcyZMylTpowTeUREREQE1VwiIiIi/lL9JCIiItmJy98J9evXZ9GiRU5kEREREZF/qOYSERER8Y/qJxEREclOfNrB9/rrr5/5c/HixXnssceYPXs25cqVwzTNc8a++uqrgU0oIiIikk2o5hIRERHxj+onERERya4M27btyw2qX7++b09mGMybN++qQwVCfHw8MTExxMXFER0dHew4IiIiEmShUBtkdM0VCmsiIiIiGScUa4OMqJ9CcV1ERETEOZmlNvBpB9/8+fPP/Hn37t0UL14cl+vc0z0ty2L16tWBTSciIiKSjajmEhEREfGP6icRERHJrvy+B1+ZMmU4evToeR/fsWMHderUCUgoERERkexONZeIiIiIf1Q/iYiISHbi0w6+kSNH8vbbbwNg2zZVq1Y97xzz48ePc9111wU+oYiIiEg2oZpLRERExD+qn0RERCS78qnB16lTJ8LDw/F6vXTt2pX//Oc/xMTEnHncMAxy5sxJgwYNHAsqIiIiktWp5hIRERHxj+onERERya58avCFhYXRsWNHIP24g9tuuw2326epIiIiIuIj1VwiIiIi/lH9JCIiItmVTxXP66+/ztNPP01UVBS//vorv/7660XHvvrqqwELJyIiIpKdqOYSERER8Y/qJxEREcmufGrwzZ8/n379+hEVFcX8+fMvOs4wDBVLIiIiIldINZeIiIiIf1Q/iYiISHZl2LZt+zNh+/btlC1b1qk8ARMfH09MTAxxcXFER0cHO46IiIgEWajVBhlRc4XamoiIiIizQr02cKp+CvV1ERERkcDKLLWBy98JlSpV4tprr6Vfv37MnDmTU6dOOZFLREREJFtTzSUiIiLiH9VPIiIikp343eA7duwYH330EW63m+eee478+fPTpEkT/u///o/169c7kVFEREQk21HNJSIiIuIf1U8iIiKSnfh9ROe/bdq0iddee41JkyYBYFlWQIJdrcyyRVJEREQyh1CvDZyouUJ9TURERCSwslptEKj6Kauti4iIiFydzFIbuP2dsGvXLn777Td+++03Fi1axIYNG6hQoQLdu3enbt26TmQUERERyXZUc4mIiIj4R/WTiIiIZCd+N/jKlCmDy+WiWbNmvPHGG9StW5e8efM6kU1EREQk21LNJSIiIuIf1U8iIiKSnfjd4Pviiy9YsGABCxYsoHPnztSqVYu6detSp04dqlevTnh4uBM5A8q2bZKTk4mMjMQwjGDHyRCnrzkiIgKXy+9bL4aUTZs2MWzYML78+kuOHT6GGWZStmxZejzWg44dOxITExPsiCIiIpeVFWouERERkYyk+klERESyk6u6B9+hQ4dYuHAhM2bMYOLEiRiGQVJSUiDzXbF/n4GakpLClClTGDhoIH/88Qdey4vLdFGrVi369ulL69ats1yh5/V6mTNnDoMGD2L27NmkpaZhGAYVr6tIn1596NChA7lz5w52zIA5deoUXbp2YdJXkzBzmlg3WpAX8IKx14CNEBEewUf/9xE9evQIdtyAS05OZubMmezduxeAokWL0rx5c3LkyBHkZM5JSEjg66+/ZsuWLaSmphIbG0vr1q2pWLFisKM5xrZt5s+fz8qVK0lKSiImJobGjRtTqVKlYEcTyfQyy/noV8KpmiuU10REREQCLyvVBoGsn7LSuoiIiMjVyyy1gd87+ABOnjzJwoUL+eWXX5g/fz5//fUXN998M02bNg10voBYsmQJrVq34tCBQ5hlTbxNvBAJ3mQvSzYs4bcHfqNw0cL88P0PVK1aNdhxA2Lnzp3c3fJu1q1Zh7uIG8/tHsgFdprNxu0b6dO3D8889wzjxozj3nvvDXbcq5acnEyTO5uweMliaAFWZQvC/ve4jQ3xkPxrMj179iQuLo7nnnsueIED6MCBA3z0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6SbKly9/3lnio0aNCmjAK5VZFlhEREQyh1CrDTKi5gq1NRERERFnhXpt4FT9FOrrIoFh23aWbGReSna7Ztu2OXXqFC6Xi8jIyGDHyRAnTpxg//79eDweChYsSKFChYIdSSQkZJbawO3vhGPHjvHggw+e+W8/+4MiIiIi4gPVXCIiIiL+Uf0kTspOja7Tsts1G4ZBVFRUsGNkqDx58pAnT55gxxCRK+R3g2/06NFO5BARERGRs6jmEhEREfGP6icRERHJTlxXMun777/ntttuI1++fMTExFC9enXGjRsX6GwiIiIi2ZpqLhERERH/qH4SERGR7MLvBt/w4cN56KGHqFevHmPHjmXs2LHccccd9O7dm5EjRzqRUURERCTbUc0lIiIi4h/VTyIiIpKdGLafB5KXK1eO/v3707Fjx3M+PnbsWN5++202bdoU0IBXKrPc5FBEREQyh1CrDTKi5gq1NRERERFnhXpt4FT9FOrrIiIiIoGVWWoDv3fwHTx4kFq1ap338dq1a7N79+6AhBIRERHJ7lRziYiIiPhH9ZOIiIhkJ343+G655ZYLnl0+ZswYrrvuuoCEEhEREcnuVHOJiIiI+Ef1k4iIiGQnbn8nvPfeezRs2JD58+dTo0YNAJYsWcKqVauYPn16wAOKiIiIZEequURERET8o/pJREREshO/d/DVqlWL5cuXU716dTZs2MCOHTuoV68eGzdupH79+k5kFBEREcl2VHOJiIiI+Ef1k4iIiGQnhm3bdrBDOCGz3ORQREREMgfVBufTmoiIiMjZVBtcmNZFREREzpZZagOfjuhs0KABU6ZMIU+ePNSvXx/DMC46dt68eQELJyIiIpKdqOYSERER8Y/qJxEREcmufGrw3X777YSHhwNwxx13OJlHREREJNtSzSUiIiLiH9VPIiIikl351ODr37//mT+XKVOGdu3aERERcc6YxMREPv/888CmExEREclGVHOJiIiI+Ef1k4iIiGRXPt2D78iRIyQlJQHpxdLSpUuJjY09Z8zq1atp27Ytp06dciapnzLLGagiIiKSOYRCbZDRNVcorImIiIhknFCsDTKifgrFdRERERHnZJbawKcdfL/88gtt27bFMAxs26Zq1arnnGl+ukf48MMPO5NSREREJBtQzSUiIiLiH9VPIiIikl351OC777772LlzJ16vl7Jly/Lnn39S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wYNV2YIbSG8ApQCbwb3SjXXS4v333+epp54K6UbXaUuWLKH5Xc2JS4jDe703vZEdA3iAneBe7saz38PDDz/M559/Tni4rzevy7z+/PNP7mx2J/Ep8Vg3W3ArkPefBw8Cy8BcY1KsSDHmzpnLNddcE8S0gbF+/XoaNm7IkfgjeG7xpF9znn8eTAZWpx/BasabfD3pa1q1ahW8sCKZWGapmdTgExERkWxBtcH5tCYiIiJyNtUGF/bvdYmPj2f8+PEMGTaELZu3kJaaRkzeGO5rcx+9evXillt8valX6EhNTWXq1KkMHDSQ5SuWk5yUTM7cOWnUsBF9+/SlQYMGWaLJdbY9e/YwfPhwhg4fyrEjx858PEfOHHTp1IWePXtyww03BDFh4B0+fJgRI0YwaMgg9v+9/8zHDZfB3XffTe9evWnSpEmW+lzv3r2bjz/+mJGjRnIy7iSGaYANttcmtmAsvXr0ol+/fuTPnz/YUQNm//79DBgwgFFjRpGYkEhYdBi4wDppYWDQpnUbXnjhhSz5d5lIoGSWmkkNPhEREckWVBucT2siIiIiZ1NtcGGXWxfbtrNUw8MX2emaU1NTWb9+PXFxceTKlYsKFSqQK1euYMdylGVZrFq1iqNHjxIZGck111xD0aJFgx3LUUlJScyaNYv9+/fjcrkoWbIkTZo0ISwsLNjRHJOQkMCUKVPYuXMnHo+HggUL0qZNmyz/uRYJhMxSM13q9rgiIiIiIiIiIiJyCdml0XW27HTN4eHh3HzzzcGOkaFM0+TWW28NdowMFRUVRZs2bYIdI0PlypWLjh07BjuGiFwFV7ADiIiIiIiIiIiIiIiIiIjv1OATERERERERERERERERCSFq8ImIiIiIiIiIiIiIiIiEEDX4REREREREREREREREREKIGnwiIiIiIiIiIiIiIiIiIUQNPhEREREREREREREREZEQogafiIiIiIiIiIiIiIiISAhRg09EREREREREREREREQkhKjBJyIiIiIiIiIiIiIiIhJC1OATERERERERERERERERCSFq8ImIiIiIiIiIiIiIiIiEEDX4REREREREREREREREREKIGnwiIiIiIiIiIiIiIiIiIUQNPhEREREREREREREREZEQogafiIiIiIiIiIiIiIiISAhRg09EREREREREREREREQkhLiDHUBEREREMpelS5cy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6U5v4p193zIL2ACucS5YAO+88w5dunQJUtLAME2T76Z8R9XKVXGNdcEM4NBZA2xgFxjfGDAFOjzcgffffz9IaQPnmWee4eWXX4afwRxtpjeB0v550AtsBtdEF3wN97W5jxGfjcAwjCAmvnoDBw7kttq34RrvgiVA8gUG7Uu/btcmF199+RWVKlXK6JgB1bt37/TdptOAn7jwfQiPAt8DC2DAgAG0aNEiQzMGWtOmTXnvvffSd6h+Dxy/wKBTwEIwvjZo3bp1+veCiGRahm3bvm7KDSnx8fHExMQQFxcXstvFRUREJHBUG5xPayIiIiJnU21wYWevS3JyMv3792fsF2NJPpWMu4AbTLDjbTwJHqpVr8bLL71My5Ytgx07YE6dOsWAAQMYPHQwx44cIyw2DCLATrTxnPBQ9pqyPP3U0/To0SPkG11nmzFjBh9+9CHzfp4HBpiRJt5UL7ZlU/nmyjz5+JN07NgRlytr7J84deoUvXr3Yty4cRhhBlYFC2IAD5h7TKw9FkWLF2XMqDE0btw42HEDwrZt3n77bd58+01SklOgAtj57fQjOQ+48G7zEpM3hg/f/5Bu3UL33pL/9vnnn/Pkf57kZPxJXOVdeIt6wQCOgWuDC5ftonev3nzwwQe43e5gxxXJlDJLzaQGn4iIiGQLqg3OpzURERGRs6k2uLALrUt8fDxffvklmzdvJiUlhXz58nHPPfdQpUqVIKd1TmpqKlOmTGHFihUkJCQQExNDw4YNadiwYZZq7P3b5s2b+eWXX4iLiyNXrlzceuutVKtWLcte899//81nn33GN1O/4ejRo0RERHB9pevp2aMnzZs3xzTNYEcMuLi4OL744gvGjR/Hvn37cJkuSpcszSPdHuH+++/PkkdUJiYm8tVXX/HZyM/YsXMHHo+HggUL0qF9B7p160bhwoWDHVEkU8ssNZMafCIiIpItqDY4n9ZEREREzqba4MK0LiIiInK2zFIbZI095CIiIiIiIiIiIiIiIiLZhBp8IiIiIiIiIiIiIiIiIiFEDT4RERERERERERERERGREKIGn4iIiIiIiIiIiIiIiEgIUYNPREREREREREREREREJISowSciIiIiIiIiIiIiIiISQtTgExEREREREREREREREQkhavCJiIiIiIiIiIiIiIiIhBA1+ERERERERERERERERERCiBp8IiIiIiIiIiIiIiIiIiFEDT4RERERERERERERERGREKIGn4iIiIiIiIiIiIiIiEgIUYNPREREREREREREREREJISowSciIiIiIiIiIiIiIiISQtTgExEREREREREREREREQkhavCJiIiIiIiIiIiIiIiIhBA1+ERERERERERERERERERCiBp8IiIiIiIiIiIiIiIiIiFEDT4RERERERERERERERGREKIGn4iIiIiIiIiIiIiIiEgIUYNPREREREREREREREREJISowSciIiIiIiIiIiIiIiISQtTgExEREREREREREREREQkhavCJiIiIiIiIiIiIiIiIhBA1+ERERERERERERERERERCiBp8IiIiIiIiIiIiIiIiIiFEDT4RERERERERERERERGREKIGn4iIiIiIiIiIiIiIiEgIUYNPREREREREREREREREJISowSciIiIiIiIiIiIiIiISQtTgExEREREREREREREREQkhQW3w7dmzh7vvvpvo6GhKly7Nxx9/fOaxlStXUqNGDaKioqhWrRrLly8PXlARERERERERERERERGRTCKoDb62bduSK1culi9fzieffMJLL73E1KlTSUxMpHnz5tStW5fly5dTu3Zt7rrrLhITE4MZV0RERERERERERERERCTo3MF64ePHj7NkyRJGjBhB+fLlKV++PHfeeSdz587l+PHj5MiRg/fffx/DMPj444+ZMWMGkydPpnPnzsGKLCIiIiIiIiIiQnJyMlOnTmXTpk2kpKSQP39+WrZsybXXXhvsaI6xLIvZs2ezfPlyEhMTiYmJoUGDBlSvXh3DMIIdzzEpKSmsXbuW+Ph4cubMSaVKlcidO3ewY2WI1NRU3G43Llf2uMvTzp07OXDgAC6Xi+LFi1O0aNFgR3JcWloaR48exePxkD9/fnLkyBHsSCLih6D97ZwjRw6ioqIYPXo0aWlpbNq0id9++41bbrmFJUuWUKdOnTPFgWEY3Hbbbfz+++/BiisiIiIiIiIiItnc8ePHee655yhctDDt27fn7Y/f5sMRH/LcS89RoUIFGjZuyLx584IdM6DS0tJ4//33KV22NHfddRevv/86//f5//HKG69Qs2ZNbq5yMxMmTMC27WBHDahdu3bxwgsvUKRYEapWrUqDBg2oUaMGBQsXpEePHvz111/Bjhhwtm2zePFiHnr4IaJyRRER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ZhK5ONVMIiICqpdELkX1koiIs1zBDhAMp89Dj4qKCnISkczp9PeG7h0gIpK9qWYSuTTVTCIionpJ5NJUL4mIOCdbNvhO05EJIhem7w0RETmb/l0QuTB9b4iIyGn6N0HkwvS9ISLinGzd4BMREREREREREREREREJNdnyHnyXsztuN0eSjmT468ZGxVIypqRfcxo0aADAtGnTyJUr1zmPPf/88/z999988cUXAct4IRUqVGDAgAG0adOGgQMHMnXqVObNm3dVz/dvkZGRFCtWjAceeICOHTv6/FxpaWlMmDCBzp07X3TMlClTeOGFF9i0adOVxA2IzJBBRETEH6FUL4FqpstRzSQiIhJ4waqXQD9jOvv5/k31koiIZBVq8P3L7rjdVBhUgWRPcoa/dqQ7kk19NvldgP3999+89957vP766w4ly3gvvvgizZs3P/Pfx44d48svv+Stt94iNjb2nMcuZfr06QwYMOCSxVfz5s2pW7fu1UYWERHJNkKxXgLVTJeimklERCSwglkvgX7GdDbVSyIiklXpiM5/OZJ0JGjFV7In+Yre2VWiRAkmTZrE4sWLHUgVHLlz56ZAgQJnflWoUIH+/ftTokQJZsyY4fPz2LZ92TGRkZEUKFDgauKKiIhkK6FYL4FqpktRzSQiIhJYwayXQD9jOpvqJRERyarU4MsCWrZsSa1atXjppZdISEi46LiTJ0/yyiuvULNmTW699VY6duzImjVrzhkzf/582rRpQ+XKlWncuDEff/wxqampZx4/cOAAPXv25JZbbqFevXr88MMPl8zmy2v6yjAMwsPDcbv/t/H04MGDPPnkk1StWpUaNWrQo0cPdu7cCfzvSAJIP5Lhjz/+YODAgTz88MM8+eSTVKlShTfeeIMpU6acc2TDpTLv2bOHihUr8uuvv56T7YUXXuDBBx8EIDU1lffff5+6detyyy230LZtWxYtWnTO+Dlz5tCiRQtuvPFG2rdvz759+65oTURERMR3qplUM4mIiMilqV5SvSQiIqFDDb4swDAM3nrrLeLi4nj33XcvOMa2bR599FH27NnD8OHD+frrr7n55pt58MEHWb9+PQALFizgiSeeoG3btkyfPp3+/fszc+ZMnnnmGQA8Hg+PPPIIx48fZ/z48XzyySd8/vnnF83ly2v6Kikpic8++4xt27bRqlWrMx/r0KEDAOPHj+eLL74gb968tG3bloMHD9K8eXNefPFFABYtWsQtt9wCwNKlS4mNjeX7778/M9/XzCVKlKBatWpMnz79zJyUlBR++ukn2rRpA6QXYr/99hsffPABU6dOpVmzZvTo0YNffvkFgBUrVtC3b1+aNm3KtGnTaN26NZ999plf6yEiIiL+U82kmklEREQuTfWS6iUREQkdugdfFlGsWDGee+45Xn31VZo2bUqdOnXOeXzJkiWsWrWKJUuWkCdPHgCeeuopVqxYwbhx43jnnXcYNmwYbdu25YEHHgCgZMmSvPbaa3Tq1Im9e/eyY8cOtmzZwpw5cyhZMv0M9wEDBnDPPfdcMJMvr3kx/fv354033gDSC6KUlBQqVqzIxx9/TP369QH48ccfiY+P5/333z/zjqu33nqLP/74g6+//pq+ffuSO3dugPOOR+jXr9+Zx1asWOFX5jZt2vD6669z6tQpcuTIwbx587Asi2bNmrFr1y6mT5/Od999R6VKlQDo0qULGzdu5PPPP+eOO+5g/PjxVKlShT59+gBQpkwZNm/ezLhx4y66HiIiIhIYqplUM4mIiMilqV5SvSQiIqFBDb4spF27dsyePZuXX375nHf/AKxbtw7bts8ULqelpqaSkpICwPr16/nrr7/45ptvzjx++nzxbdu2sXXrVmJiYs4UXgCVKlUiMjLygnl8ec2L6devH02aNMHj8TBz5kw+//xz2rZtS7Nmzc6MWb9+PXFxcVSrVu2cuSkpKWzbtu2iz50/f/4zhdeVZG7atCmvv/46c+fO5e6772batGk0atSIXLlysXDhQgDat29/zvy0tDSio6MB2Lx5M7fddts5j99yyy0qvkRERDKIaqZ0qplERETkYlQvpVO9JCIimZkafFnMm2++SYsWLRgwYMA5H/d6veTKlYspU6acNyc8PPzMmEceeYTWrVufN6ZAgQJs27YNr9d73mNnn1fu72teTP78+SlVqhTAmXch/fe//yUmJobmzZufef4yZcowdOjQ8+ZHRUVd9LkvViz6mjkqKoo777yTH374gTp16rBw4cIzxx+cLlYnTJhAzpw5z5nvcqWfiGsYxnnrGBYWdtFMIiIiEniqmdKpZhIREZGLUb2UTvWSiIhkVroHXxZTtGhRnn/+eb755huWLVt25uPXXnstCQkJpKWlUapUqTO/RowYwdy5cwEoX748O3bsOOfxAwcO8N5775GYmEilSpU4efIkW7ZsOfO8O3fuvOhNl315TV/17NmTm2++mf79+3Po0KEzz79v3z5y58595rmLFi3Khx9+yNKlS4H0Qscfvma+9957+e233/juu++IjY2lZs2aZ9YQ4PDhw+fMnzJlypmCrmLFiqxcufKc1127dq1fOUVEROTqqGZSzSQiIiKXpnpJ9ZKIiGRuavBlQffffz916tRhz549Zz5Wt25dKlWqxJNPPsmSJUvYtWsXAwYMYMqUKZQrVw6ARx99lNmzZzNo0CB27NjB77//zgsvvMDJkycpUKAANWrU4KabbuLZZ59l1apVrFmzhmefffbMu4b+zZfX9JVpmrz11lucOnXqzLnpLVu2JCYmhn79+rF69Wq2bdvG888/z4IFC6hQoQLwv3dZrV27luTk5Mu+jq+Zq1atSpEiRfj0009p1arVmTUoX7489evXp3///sybN489e/YwYsQIhg8ffubYia5du7Jx40beffddduzYwbRp0xg/frxf6yEiIiJXTzWTaiYRERG5NNVLqpdERCTzUoMvi3rzzTfPOQPcNE1GjRrFDTfcwBNPPEHLli1ZunQpgwYNolatWgDceeedfPTRR/z888+0aNGCZ555hjp16jBo0CAgffv/8OHDKVu2LF27dqV79+7cdddd5MuX74IZfHlNf1xzzTX06NGDn376iTlz5pA7d27Gjx9P3rx56datG/fddx8HDx5k1KhRZwqlmjVrctNNN/HAAw8wf/78y76GP5lbt25NYmIibdq0OefjH330EU2aNOHVV1+lefPmfPfdd7z11ltnjqWoVKkSI0aM4I8//qBly5aMGTOGHj16+L0eIiIicvVUM6lmEhERkUtTvaR6SUREMifDPn2gcxYTHx9PTEwMcXFxZ248e1pycjI7duygTJky552VvTtuNxUGVSDZc/l34gRapDuSTX02UTKm5OUHizjoUt8jIiKh6lK1QXZ1uTW52L8HqpdE0qlmEpGsRvXShV3Jz5iCWS+BaibJPFQviUhWlFlqpgvfuTYbKxlTkk19NnEk6UiGv3ZsVKwKLxEREcn0VC+JiIiIXFow6yVQzSQiIpIdqMF3ASVjSqoIEhEREbkE1UsiIiIil6Z6SURERJyke/CJiIiIiIiIiIiIiIiIhBA1+ERERERERERERERERERCiBp8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", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "Getting data for eval set: multi-needle-eval-pizza-reasoning-1\n", + "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--f5a3\n", + "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--986f\n", + "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--978e\n", + "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--10e6\n", + "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--b560\n", + "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--6538\n", + "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--fc8f\n", + "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--802f\n", + "Getting data for eval set: multi-needle-eval-pizza-reasoning-3\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8a25\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a9e5\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a663\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6d1a\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--d3db\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c29c\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fa83\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8413\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fb02\n", + "Getting data for eval set: multi-needle-eval-pizza-reasoning-10\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--a2fc\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9653\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9548\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6194\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--7c4d\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--d1ed\n", + "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6aa9\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--b225\n", + "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506\n" + ] } ], "source": [ - "# Create a 1x3 subplot structure\n", - "fig, axes = plt.subplots(1, 3, figsize=(18, 6), sharey=True)\n", + "# Get data\n", + "eval_sets_reasoning = [\"multi-needle-eval-pizza-reasoning-1\",\n", + " \"multi-needle-eval-pizza-reasoning-3\",\n", + " \"multi-needle-eval-pizza-reasoning-10\"]\n", "\n", - "# Loop through your needle counts and plot each on a subplot\n", - "needles = [1, 3, 10]\n", - "for i, n in enumerate(needles):\n", - " \n", - " # Isolate data \n", - " d = gpt4_replicate_1[gpt4_replicate_1.total_needles == n]\n", - " # Visualization \n", - " context_sizes = list(reversed(d['context size'].unique()))\n", - " insertion_percents_1000 = d[d['context size'] == context_sizes[0]]['insertion %'].unique()\n", - " insertion_percents_next_context_increment = d[d['context size'] == context_sizes[1]]['insertion %'].unique()\n", - " mapping_dict = dict(zip(insertion_percents_1000, insertion_percents_next_context_increment))\n", - " rows_to_update = d['context size'] == context_sizes[0]\n", - " d.loc[rows_to_update, 'insertion %'] = d.loc[rows_to_update, 'insertion %'].map(mapping_dict)\n", - " # Plot\n", - " plt_simple_needle_scatter(d, f\"GPT-4 {n} Needles\", axes[i])\n", - "\n", - "plt.tight_layout()\n", - "plt.savefig(\"combined_needle_retrieval_analysis_gpt4.png\", dpi=300, bbox_inches='tight')\n", - "plt.show()" + "df_gpt4_reasoning = get_data(eval_sets_reasoning,\"gpt-4-0125-preview\")" ] }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 192, "metadata": {}, "outputs": [ { - "data": { - "image/png": "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uXLlbhoH3hwzvPnsxMTEmO+884758MMPm2XLljVfffVVc+jQoYne78btiI6ONt99912zZs2aZokSJcxHHnnE/Pjjj82rV68mLLN9+3aza9euZqVKlcxSpUqZLVu2NJctW3bHfSEiyZPqI9VHSVF95KH6yDTXrl1rPvXUU2a5cuXMihUrmv379zePHz9+23Vu9fdsmqa5Y8cOs1ixYjdt5/fff2+2aNHCLFmypFmpUiWzV69e5t69exMt4812njt3znzxxRfNhx56yKxYsaL50Ucfmc8//3yi97txPJ89e9YcNGiQWaVKFbNkyZJmgwYNzEmTJpmGYSQs8+uvv5pt27Y1y5cvb5YpU8Z8+umnzQ0bNtx+54lIsqBaSLVQUlQLeagWSuxW54ri4uLMYcOGmVWqVDHLlCljtmvXzty2bdttX+vGv7t/i4+PN1u0aHHTdnrz2fHmvI9p3nm/JjVW73TsO336tPnKK6+Y1atXN0uUKGHWrVvXHDduXKKaSlI2m2n6cKdNEZFkxjRNmjRpQvXq1Xn11VetjiMiIiJiOdVHIiIikpqpFhKRlEJTdIpIihQVFcWUKVOIjIzkyJEjdOjQwepIIiIiIpZSfSQiIiKpmWohEUlp1OATkRQpbdq0zJw5E7fbzbvvvkvevHmtjiQiIiJiKdVHIiIikpqpFhKRlEZTdIqIiIiIiIiIiIiIiIgkI3arA4iIiIiIiIiIiIiIiIiI99TgExEREREREREREREREUlG1OATERERERERERERERERSUacVgcItK1bt2KaJkFBQVZHERERkXtEfHw8NpuNcuXKWR3FEqqPRERE5Eaqj1QfiYiISGL3Wn2U6hp8pmlimqbVMUREROQektprA9VHIiIicqPUXhuoPhIREZEb3Wu1Qapr8F3/5VWpUqUsTiIiIiL3isjISKsjWEr1kYiIiNxI9ZHqIxEREUnsXquPdA8+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWTEaXUAEREREbn3REVFMW3aNFavXk1UVBQhISHUqFGDdu3akSFDBqvjWWbz5s189dVXHD9+HIC8efPSsWNHypQpY3Eya/31119s2LCBqKgoQkNDqVKlCrly5bI6lqUuX77MwoULOX78ODabjbx589KsWTPSp09vdTRL/fHHHwljJWPGjFSrVo08efJYHctSsbGxLFu2jOPHj2O327n//vupW7cuQUFBVkez1Llz59ixYwdRUVGEhYVRrlw5QkNDrY5lKdM02bJlCydOnMBut5MvXz5KlChhdaxUJT4+noULF7J582ZiYmIICwujXr16VK1aFZvNZnU8yxw8eJA5c+Zw6tQpnE4nBQsW5MknnyQ8PNzqaJY6fvw4O3fuTBgrlSpVStV1NHjqoyVLlnD69OmEsfLoo4/icDisjmapAwcOsH37dmJiYsiUKRPVq1dP9Z+f6OhoVq5cyZkzZ3A6nRQqVIhq1aql6mMtwOnTp9m7dy+xsbGEh4dTrlw5goODrY5lKcMw2Lp1K2fPniUoKIhChQqRP39+q2MFjpnK7Nixw9yxY4fVMUREROQektrrg39vf3R0tPn888+b6UPSmza7zXTc7zApjOnI6zBtdpuZITSD2b9/fzMmJsbi1IG1YsUKs/xD5U3AdIY7TXshu2kvZDedYU4TMB+u/LC5atUqq2MG3PLly82mzZqaNrvNBBL+szvsZqtWrcxffvnF6ogBd/DgQbN3795mugzpTMB0pHOYjnQOEzBDw0LN//znP+axY8esjhlwixYtMuvWr5tonACmzW4zmz/W3Pzpp5+sjhhwR48eNV966SUzc1iYZ6zYbKb97/2SM1s288033zTPnj1rdcyAW79+vdm+Q3szKDgo0VhJlyGd2adPH3PXrl1WRwy4ixcvmiNHjjSLFCx402foobJlzcmTJ5tXr1696++r+uif7Y+NjTXffvttM1v2bCZgBmUKMoOyB5nOEE8dULxkcfPLL7803W63xakDa/Xq1WaDhg1Mm81mOtI4zKD7gsygrEGmzWEz06RLY3br1s3866+/rI4ZcCtXrjQfb/G4aXfYE31eQzKGmM8995y5b98+qyMG3L59+8xevXqZadOn9Xz/O20mNs9+yZ03t/nuu++aly9f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ERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZMTyBt/FixcZPHgwNWvWpHz58jz11FNs2rQp4fm1a9fSsmVLypQpQ8OGDfn+++8tTCsiIiIiIiIiIiIiIiJiLcsbfP3792fr1q2MGDGCuXPnUqxYMbp168bBgwf5448/6NmzJzVq1GDevHm0bt2al19+mbVr11odW0RERERERERERERERMQSTivf/PDhw6xevZrp06dToUIFAN544w1+/fVXFi5cyLlz5yhatCgvvPACAIUKFWL37t189tlnVKlSxcroIiIiIiIiIiIiIiIiIpaw9Aq+TJkyMXHiREqVKpXwmM1mw2azcfnyZTZt2nRTI69y5cps3rwZ0zQDHVdERERERERERERERETEcpY2+DJmzEitWrUIDg5OeGzp0qUcPnyYGjVqcPLkSXLkyJFonfvuu4/Y2FguXLgQ6LgiIiIiIiIiIiIiIiIilrP8Hnz/tmXLFgYNGkT9+vWpXbs2V69eTdT8AxL+/9q1a1ZEFBEREREREREREREREbHUPdPgW7FiBV27dqVs2bIMHz4cgDRp0tzUyLv+/+nSpQt4RhERERERERERERERERGr3RMNvq+//ppnn32WOnXqMH78eNKkSQNAzpw5OX36dKJlT58+Tfr06QkNDbUiqoiIiIiIiIiIiIiIiIilLG/wTZ8+nSFDhvD0008zYsSIRFNyPvTQQ2zYsCHR8uvWraN8+fLY7ZZHFxEREREREREREREREQk4p5VvfujQId59913q1atHz549OXv2bMJzadOmpUOHDrRo0YLhw4fTokULVq1axZIlS/jss88sTC0iIiIiIiIiIiIiIiJiHUsbfEuXLiU+Pp7ly5ezfPnyRM+1aNGC999/n7Fjx/LRRx/x5ZdfkidPHj766COqVKliUWIRERERERERERERERERa1na4OvVqxe9evW67TI1a9akZs2aAUokIiIiIiIiIiIiIiIicm/TjexEREREREREREREREREkhE1+ERERERERERERERERESSETX4RERERERERERERERERJIRNfhEREREREREREREREREkhE1+ERERERERERERERERESSETX4RERERERERERERERERJIRp9UBRERERERERERE7nUul4tFixaxZcsWYmJiCAsLo27dulSuXBmbzWZ1PMv8+eefzJkzh9OnT+N0OilQoABt2rQhLCzM6miWOnfuHLt3704YK+XKlSNNmjRWx7KUaZocOHCA06dPExQURL58+ciePbvVsSx36dIl9u3bR0xMDOHh4ZQoUQKnM3Wftne73Wzfvp0zZ87gdDopWLAg+fPntzqW5c6ePcvevXuJjY0lPDycMmXKEBwcbHUsS7ndbrZt28bZs2cJCgqiYMGC5MuXz+pYAZO6jxQiIiIiIiIiIiK3ERcXx0cffUTE2AhOnThFUFgQpAEz2mTw4MGUKlOKl196maeffjpVNfrWrVvHkKFDWPzDYmxBNhxhDnCD64KL5/7zHJ06dOL1118nT548VkcNqHXr1hExJoJZs2bhinclPJ4pSyZ69uhJr169UtXJZ4Do6GimTZvGqIhR7IrclfC4zW6jSZMm9Ovbj/r166eqzw/A5s2biYiIYPqM6VyLu5bwePac2enTqw89evQgZ86cFiYMvAsXLjB58mTGjR7NH4cPJ3qubp069Hn2WZo3b47D4bAooTXWrFlDxOjRzJkzh3jXP8eVHFmz0qN3b3r27Enu3LktTBh458+fZ/LkyYweM5q//vwr0XN169WlX99+NGvWDLs9ZU9iaTNN07Q6RCBFRkYCUKpUKYuTiIiIyL0itdcHqX37RURE5GapvT64vv358uWjcdPGrF23FncpN1QErp9vdwN/gH2jHfc+N/369WPUqFGpokkxa9Ys2ndoj5nFxKhoQCng+kUkl4Et4NziJHP6zKxcvpKSJUtamDYwTNPktdde47333sOZ1YmrvAsK49kv0UAkOLY7CCKIWTNn0bx5c4sTB8aBAweo16Aefx76E3sRO+5ybsiM5/NzFJybnbhOuGjRsgXTvp5GunTprI7sd6bp+XHA0KFDcWb611gJAqKASLBH2kkbnJZv531LvXr1LE4cGJGRkTSuX5/Tp0/T2u2m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AE//Zp3NxgIgXdq0jPj0U3r06GFx2sBZunQpHdu14/T58zxqt9PA7SYdntmjpzudHHK5qF6lCrPnzSNHjhxWxw2ImJgYunXvxswZM3FkcGCUNCAccIPtqA1+h3Tp0xExKoIuXbrc1fe+1+ojNfhEREQk1Uvt9UFq334RERG5WWqvD5La/tOnTzN58mS2bt1KVHQU4WHh1KtXjyeffJJ06dJZFdVSbrebH3/8kVmzZnHq1CmCgoLInz8/Xbt2pUSJElbHs0R8fDzffvstEWMi2LptK1djrhIaFkrDBg3p17cflStXTjVNrH+LjIxk3LhxzJg1w9PUcti5P//99OrRi65du5ItWzarIwZcbGws33zzDaPHjGZn5E7irsaRITQDjRs2pm/fvtSsWTNVjpUDBw4wYcIEZk+fzulz5whyOilUsCA9evemffv2hIaGWh0x4OLi4pg7dy7jIyLYERlJzNWrhIeG0qhpU/r07UulSpVS5VjZv38/48ePZ8Y3Mzh/9jxBQUEUKlyI3j17065dO7+MlXutPlKDT0RERFK91F4fpPbtFxERkZul9vogtW+/iD8ZhoHdbk+VDYnbcbvd2O26o5bIvexeqw+cVgcQERERERERERERkdTB4XBYHeGepOaeiPhKRw0RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZEQNPhEREREREREREREREZFkRA0+ERERERERERERERERkWREDT4RERERERERERERERGRZOSuN/hOnjx5t19SRERERP4HqstEREREElN9JCIiIimFzw2+YsWKsWPHjiSf27RpE40aNfq/Q4mIiIjInakuExEREUlM9ZGIiIikFk5vFpo8eTIxMTEAmKbJ7Nmz+eWXX25abuvWrQQHB9/dhCIiIiKSQHWZiIiISGKqj0RERCQ18qrBFxcXR0REBAA2m43Zs2fftIzdbic0NJTevXvf3YQiIiIikkB1mYiIiEhiqo9EREQkNbKZpmn6ssKDDz7IN998Q+nSpf2Vya8iIyMBKFWqlMVJRERE5F6RXOuDu1WXJdftFxEREf9JrvWB6iMRERHxl3utPvD5Hnxr1qy5bZG0devW/yuQiIiIiHhHdZmIiIhIYqqPREREJLXwucHXvHlzfvvtt5sev3btGh988AHt27e/K8FERERE5PZUl4mIiIgkpvpIREREUgufG3wFCxakR48eDB06lGvXrgGwY8cOHn/8caZOnUrHjh3vekgRERERuZnqMhEREZHEVB+JiIhIauH0dYWpU6fy5ZdfMnLkSNavX8/DDz/MzJkzKVKkCLNnz6Z48eL+yCkiIiIiN1BdJiIiIpKY6iMRERFJLXxu8AF06tSJAgUK0KtXLw4cOECxYsWYOXMmwcHBdzufiIiIiNyG6jIRERGRxFQfiYiISGrg8xSd8fHxRERE0K9fP3LlykXnzp3Zv38/rVq1Yvv27f7IKCIiIiJJUF0mIiIikpjqIxEREUktfG7wNW/enDFjxtCyZUu+++47Bg4cyNy5cwkKCuKpp55i6NCh/sgpIiIiIjdQXSYiIiKSmOojERERSS18bvDFxcUxefJk3nrrLdKnTw+QMI95nz59mDVr1l0PKSIiIiI3U10mIiIikpjqIxEREUktfL4H38KFC8mQIcNNjzscDvr160fdunXvSjARERERuT3VZSIiIiKJ+bM+Mk2Tn376iS1bthATE0NYWBh169alRIkS/0/kZO/06dN8++23nD59GqfTSYECBWjevDnp0qWzOpqlYmJiOHToENHR0YSHh1O4cGHsdp+vtUhRTNNk586dicbK/fffb3Usy126dIn9+/cTExNDpkyZKFasGE6nz6ftU5zjx49z5swZnE4nefLkISwszOpIlrtw4QL79u0jNjaW8PBwSpYsqbECnDhxgrNnzxIUFETu3LkJDQ21OlLA+Py3f71IWrVqFWvWrOH06dP079+fPXv2UKJECR588MG7HlJEREREbqa6TERERCQxf9RHLpeLsWPH8unoTzl44CCOtA7swXaMWAN3vJvqNaoz4KUBNG/e/G5vzj1tx44dfPD++8ye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EZG0VB+JiIhIVuNTg2/fvn08/PDDHDt2jBIlSqS5LywsjOeff55Tp07Rvn17Dh8+HJCgIiIiIqK6TERERORSqo9EREQkK/KpwTdq1ChiY2OZPXs2TZs2TXNfZGQknTp14rPPPiMiIoKRI0cGJKiIiIiIqC4TERERuZTqIxEREcmKfGrwrVy5kkceeYRcuXJddUyePHno0qULy5cv/8dhfv/9d2688UZmzZp18bZt27bx4IMPcsMNN3D77bczadKkf/z7i4iIiGR2warLRERERDIL1UciIiKSFfnU4Dty5AjFixe/5riyZcty6NChfxQkJSWFZ599lqSkpIu3nTx5ks6dO1O0aFFmzpxJz5496d+/PzNnzvxHjyEiIiKS2QWjLhMRERHJTFQfiYiISFZk+DIoV65cHDly5JrjTp48SUxMzD8KMnjwYKKiotLcNn36dMLCwnjrrbcwDINSpUqxe/duRo0aRevWrf/R44iIiIhkZsGoy0REREQyE9VHIiIikhX5tIOvRo0aaY7NvJo5c+ZQsWJFv0OsXbuWadOm8c4776S5fd26ddSsWRPD+P8+ZK1atfjjjz84duyY348jIiIiktkFui4TERERyWxUH4mIiEhW5FOD76GHHmL16tW88847nDt37rL7z58/z3vvvceSJUvo0KGDXwHi4+N5/vnneeWVVyhQoECa+w4dOkT+/PnT3JY3b14ADh486NfjiIiIiISCQNZlIiIiIpmR6iMRERHJinw6orNy5cq89NJL9OvXj7lz51K7dm0KFy6MaZocOHCA1atXc/LkSZ544gluvfVWvwK88cYb3HjjjbRo0eKy+5KTkwkPD09zW0REBMAVCzYRERGRUBfIukxEREQkM1J9JCIiIlmRTw0+gA4dOlC+fHnGjh3Ld999d7HBliNHDm655Ra6dOlC1apV/XrwOXPmsG7dOubPn3/F+7Nly8b58+fT3HbhcbNnz+7XY4mIiIiEikDUZSIiIiKZmeojERERyWp8bvABVKtWjWrVqgFw4sQJDMMgOjr6Hz/4zJkzOX78OPXr109z++uvv84XX3xB/vz5L7tI8oX/zpcv3z9+XBEREZHMLr3rMhEREZHMTvWRiIiIZCV+Nfj+KleuXP/6wfv3709ycnKa25o0aUKfPn24++67mTt3Lp9++immaeLxeABYtWoVJUqUIHfu3P/68UVERERCQXrUZSIiIiKhRPWRiIiIhDq3kw+eL18+ihUrluYfgNy5c5MvXz5at25NQkIC//nPf/j111+ZNWsWEyZMoFu3bk7GFhEREREREREREREREXGMow2+a8mdOzdjxozh999/p2XLlgwZMoTnn3+eli1bOh1NRERERERERERERERExBH/+IjOQNmxY0ea/65SpQrTpk1zKI2IiIiIiIiIiIiIiIhIxpKhd/CJiIiIiIiIiIiIiIiISFr/aAefbdts27aNpKQkbNu+7P4aNWr862AiIiIicm2qy0RERETSCmR9tGHDBtavX09iYiKxsbE0aNCAIkWK/Ju4md6ZM2f46quvOHz4MIZhULJkSRo2bIjH43E6mqNOnjzJ9u3bL66VKlWqEB4e7nQsx+3bt48jR44QFhZG4cKFiYuLczqS486cOcOuXbtISkoiNjaWsmXLZvmfH9u22blz58W1Urx4cfLnz+90LMelpKRw8OBBkpKSiIuLI2/evLhcLqdjOe7w4cMcPXqUsLAwChUqRFRUlNORgsbvBt+mTZt44oknOHTo0GX32baNy+Vi27Zt6RJORERERK5OdZmIiIhIWoGojyzL4uOPP+ajQR+xft16ANxhbqwUC5fbxV133cUzTz9DvXr10uU5ZBa//fYbH374IZMnTOBMUhJhLhembWMBRQsWpFvPnvTq1Yvo6GinowbV2rVrGTpkCJ9Oncq5lJSLt+fLnZtHu3enW7duFC5c2MGEwZecnMyMGTMYNngwq9auvXi74fHQunVrevTsya233prlGhWbNm1i2LBhTJk4kcTk5Iu3FytUiMd79aJr167kyZPHwYTBl5CQwOTJkxk2aBBbtm+/eLvb5eKuO++kR69eNGnSJMutld9//52RI0cyduRIjp06dfH2GypVokefPrRv354cOXI4F9AB586dY+bMmQwbPJjlq1ZdvD1beDgPtG9Pjx49ssQXnl32lb7K9DfatWvHsWPH6NmzJ/nz58ftvvyUz5o1a6ZbwPS2efNmACpXruxwEhEREckoMmt9kF51WWZ9/iIiIhI4mbU+SO/6qFy5cjz00ENMnz4dd2k3VnULygAeIBnYAp51HsxDJu+//z7PPvts+j6hDOr777/n3hYtiDx3jke9Xh4FLuxj/BEYDnzidlOqTBm+/PbbLLHL0bZtXnvtNfr27Utxw+Bx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HD9+nKSkJGJjY4mNjXU6UoaQkJDA8ePHCQ8PJ3fu3AHdTZ/R6oN/9HWR5cuX8/3333P27FksK+3pyS6Xi379+qVLOBERERH5e6rLRERERNJSfSQZRVhYGGFhYU7HyFA8Hg9xcXFOx8iQ1MBKKywsjDx58jgdI0PxeDzkzZvX6RgZTlRUVJbdSe93g2/cuHG89957REREkCtXrsu+ZaFvXYiIiIgEh+oyERERkbRUH4mIiEhW4XeDb8qUKbRo0YL//e9/WebCwSIiIiIZkeoyERERkbRUH4mIiEhW4fe+32PHjtGmTRsVSSIiIiIOU10mIiIikpbqIxEREckq/G7wVaxYkV9++SUQWURERETED6rLRERERNJSfSQiIiJZhd9HdL788ss8+eSTZM+enapVqxIZGXnZmIIFC6ZLOBERERG5OtVlIiIiImmpPhIREZGswu8GX7t27bAsi5dffvmqFybetm3bvw4mIiIiIn9PdZmIiIhIWqqPREREJKvwu8HXt2/fQOQQERERET+pLhMRERFJS/WRiIiIZBV+N/hatmwZiBwiIiIi4ifVZSIiIiJpqT4SERGRrMLvBh/AiRMnGDduHGvWrCE+Pp64uDiqV69Op06dyJ07d3pnFBEREZGrUF0mIiIikpbqIxEREckK3P5OOHToEC1btmTixIlERERQsWJFDMNg/Pjx3HvvvRw+fDgQOUVERETkEqrLRERERNJSfSQiIiJZhd87+N5//30Mw+CLL76gSJEiF2/fu3cvXbp0YcCAAbzzzjvpGlJERERELqe6TERERCQt1UciIiKSVfi9g2/ZsmX06dMnTZEEUKRIEXr27MmSJUvSLZyIiIiIXJ3qMhEREZG0VB+JiIhIVuF3g880TeLi4q54X65cuUhISPjXoURERETk2lSXiYiIiKSl+khERESyCr8bfOXKlWP+/PlXvG/u3LmULVv2X4cSERERkWtTXSYiIiKSluojERERySr8vgZfjx496Nq1K6dPn6Z58+bkyZOHo0eP8vnnn7Ns2TIGDRoUiJwiIiIicgnVZSIiIiJpqT4SERGRrMLvBl/dunV555136N+/f5pzy6+77jr69etH48aN0zWgiIiIiFyZ6jIRERGRtFQfiYiISFbhd4MP4N577+Wee+5h165dnD59mpiYGEqWLInL5UrvfCIiIiLyN1SXiYiIiKSl+khERESyAp8afAcOHCBPnjyEhYVx4MCBi7dHRkYSGRkJwMGDBy/eXrBgwXSOKSIiIiKgukxERETkUqqPREREJCvyqcHXsGFDpk2bRpUqVbj99tuv+Y2nbdu2pUs4EREREUlLdZmIiIhIWqqPREREJCvyqcHXr18/ihQpcvHXOtJARERExBmqy0RERETSUn0kIiIiWZFPDb6WLVte/HWtWrUuHntwqXPnzrF169b0SyciIiIiaaguExEREUlL9ZGIiIhkRW5/JzRs2PCqRxls2rSJzp07/+tQIiIiInJtqstERERE0lJ9JCIiIlmFTzv43n33XU6dOgWAbdsMGzaMuLi4y8Zt27aNnDlzpmtAEREREfl/qstERERE0lJ9JCIiIlmRTw2+kiVLMnz48Iv/vWXLFsLDw9OM8Xg85MyZk5deeil9E4qIiIjIRarLRERERNJSfSQiIiJZkU8NvrZt29K2bVsA6tevz4gRIyhfvnxAg4mIiIjI5VSXiYiIiKSl+khERESyIr+vwZcjRw4OHjyYriHmzJlD8+bNqVy5MnfeeSdffvnlxfv27dtHt27duOmmm7jlllv46KOPME0zXR9fREREJDMKRF0mIiIikpmpPhIREZGswu8G36FDh4iMjEy3AHPnzuU///kPHTp04PPPP+euu+7i6aefZsOGDaSkpNC1a1cAPv30U9544w2mTp3K0KFD0+3xRURERDKr9K7LRERERDI71UciIiKSVfh0ROdftWjRggkTJlCyZEny5s37rx7ctm0GDhzIww8/TIcOHQDo3r0769atY82aNezfv58DBw4wffp0YmJiKFu2LMePH+e9997j8ccfv+w8dREREZGsJD3rMhEREZFQoPpIREREsgq/G3x//PEH69ato169esTGxpI9e/Y097tcLhYuXOjT7/X777+zf/9+WrRokeb2sWPHAvDGG29w/fXXExMTc/G+WrVqkZCQwLZt26hataq/8UVERERCRnrWZSIiIiKhQPWRiIiIZBV+N/gKFChwWUPun/r9998BSEpKomvXrvz8888ULlyY7t27c/vtt3Po0CHy58+fZs6Fb18dPHhQDT4RERHJ0tKzLhMREREJBaqPREREJKvwu8H39ttvp9uDJyQkAPDCCy/Qq1cvnn32Wb7++mt69OjB+PHjSU5OJjo6Os2ciIgIAM6dO5duOURE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EVhC6mvzFlDcMOgD9OjZk1GjR4f0+4rL/gdnN/3444/8+OOP1KxZ8+IFct99911q167Nbbfdlt4Z09XmzZsBqFy5ssNJREREJKPIzPVBetRlmfn5i4iISGBk5vog0PWRZVkkJycTGRkZ0h8a+is5ORnDMDAMw+kojjtz5gwff/wxGzduJDExkdjYWBo3bsydd96ZJRp7l7Isi0WLFjFsyBDmzZ+PaaVe1DImKorOjzzC448/Trly5RxOGXx//PEHo0aNYsSoEZw8/v9nAF9f+Xqe6P0E7dq1IyoqysGEzti6dSvDhw9nxtSpHDt1CsPjoVTx4jzy+ON06tSJXLlyOR0x6H799VdGjBjBuNGjORkff/H2SuXL0/OJJ+jQoQM5c+Z0MGHwpaSkMGfOHIYNHszipUsv3p49WzYefPhhunfvfrEGSE8ZrT76Rw2+zCyj/QGIiIiI87J6fZDVn7+IiIhcLqvXB1n9+YsEyrlz5zhx4gRhYWHExcVlyYbnpVJSUjh06BBJSUnExsaSN29efXngTxdaF3o9Up07d479+/dz9uxZYmNjKViwoF4b4Pjx4xw9epTw8HDy589P9uzZA/ZYGa0++EdfqVm+fDnff/89Z8+exfrzGxcXuFwu+vXrly7hREREROTvqS4TERERSUv1kUjGFRERQYECBZyOkaGEhYVRpEgRp2NkSGpepRUREUHJkiWdjpHh5M6dm9y5czsdwxF+N/jGjRvHe++9R0REBLly5brsh0w/dCIiIiLBobpMREREJC3VRyIiIpJV+N3gmzJlCi1atOB///sf4eHhgcgkIiIiIj5QXSYiIiKSluojERERySrc/k44duwYbdq0UZEkIiIi4jDVZSIiIiJpqT4SERGRrMLvBl/FihX55ZdfApFFRERERPygukxEREQkLdVHIiIiklX4fUTnyy+/zJNPPkn27NmpWrUqkZGRl40pWLBguoQTERERkatTXSYiIiKSluojERERySr8bvC1a9cOy7J4+eWXr3ph4m3btv3rYCIiIiLy91SXiYiIiKSl+khERESyCr8bfH379g1EDhERERHxk+oyERERkbRUH4mIiEhW4XeDr2XLloHIISIiIiJ+Ul0mIiIikpbqIxEREckq3E4HEBERERERERERERERERHf+bSDr3z58lc9t/xSLpeLn3/++V+FEhEREZErU10m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iAgymQzu7u5wd3eXupRCxc7ODmXKlJG6jELHxsbG6oa0zYudnR08PT2lLqNQsbW1ReXKlaUuo9ApW7YsypYtK3UZkuDPAYiIiIiIiIiIiIiIiIiKEHbwERERERERERERERERERUh7OAjIiIiIiIiIiIiIiIiKkLYwUdERERERERERERERERUhLCDj4iIiIiIiIiIiIiIiKgIYQcfERERERERERERERERURHCDj4iIiIiIiIiIiIiIiKiIoQdfERERERERERERERERERFCDv4iIiIiIiIiIiIiIiIiIoQdvARERERERERERERERERFSHs4CMiIiIiIiIiIiIiIiIqQtjBR0RERERERERERERERFSEsIOPiIiIiIiIiIiIiIiIqAhhBx8RERERERERERERERFREcIOPiIiIiIiIiIiIiIiIqIihB18REREREREREREREREREUIO/iIiIiIiIiIiIiIiIiIihB28BEREREREREREREREREVIezgIyIiIiIiIiIiIiIiIipC2MFHREREREREREREREREVISwg4+IiIiIiIiIiIiIiIioCGEHHxEREREREREREREREVERwg4+IiIiIiIiIiIiIiIioiKEHXxERERERERERERERERERQg7+IiIiIiIiIiIiIiIiIiKEHbwERERERERERERERERERUh7OAjIiIiIiIiIiIiIiIiKkLYwUdERERERERERERERERUhLCDj4iIiIiIiIiIiIiIiKgIYQcfERERERERERERERERUREieQefWq3G119/jRYtWiAwMBADBgzAxYsX9dOvXr2KgQMHolatWmjZsiU2btwoXbFEREREREREREREREREEpO8g2/lypX46aefsGDBAuzcuRNeXl4YPnw4Hj9+jGfPnmHo0KGoWLEitm3bhjFjxuCLL77Atm3bpC6biIiIiIiIiIiIiIiISBJKqQs4dOgQOnfujMaNGwMAZs6ciZ9++gkXL17ErVu3YGNjg/nz50OpVKJKlSq4c+cO1qxZg3feeUfiyomIiIiIiIiIyJpER0fj4sWLSElJgaurKxo1aoQSJUpIXZakMjIy8Pvvv+Px48dQKpXw8vJC3bp1IZPJpC5NMlqtFocPH8aFCxf050rbtm1Ro0YNqUuTnBACCQkJsLGxgYODg1WfJ69KT09HSkoKXFxcoFAopC6nUEhOTkZ8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bkLx4sWlLtnk5HI5tmzeAq/KXliydAnUf6qh9dECxaEbkvO+AppbGriXdMc333+Dvn37Sl2yWVStWhVn/zqLUaNH4Zc9v0B+SA5NRQ1gC8iSZcBtwN7BHqPHj8aiRYtga2srdckmV7p0afz5x59o274trq65CrmXHNpaL88VxALK80qo49UY+N5ArF2z1uI7JwBg6tSpUCgUmDp1KuQX5dDU1ABVAdgASAJk4TIgEnBxc8Evh39B7dq1pS7Z5IoXL44///gTHTt3xPn156Eop4CmlgZwh24401hAeVEJdaIakyZPwueff27xP6YAgA8//BA2NjaYOXMm5Bfkun1SBYbnylXAtbgr9h3Zh8DAQKlLNrnKlSvj+LHjaNu+LWJDYgEfQNQSgBt07ysxgPKcEupHavTt3xehoaEW/b4iE0Lk1B9uscLDwwHoHlRJREREBDAfWPv2ExERUXbWng9e334hBI4fP44VK1bg9NnTSElJgZubGzq07YDRo0db9FCLb/L06VOsX78eYVvC8PDhQyhtlPB+yxsjR4xEz549raITKye3b9/G2rVrcf78eSQmJaJE8RJo27YtBg0aBBcXF6nLM7uMjAzs2LEDy0OW48/jf+pfV9oo0adPH4z5YAwaNGhgFR02r4qKisKqVauwdt1aJL54Obart8ob48eOx+DBg+Hq6iphhean0Wiwf/9+hHwTgl/3/YqsrgtHZ0cEDwnG6NGjUb16dYmrNL9r165h1apV+Db0WyQlvBybsqpPVYwfOx6DBg2yunMlKSkJmzdvxrKQZYi4/HLMaLlCjh7de+CDDz5AixYtCvx9pbDlI3bwERERkdWz9nxg7dtPRERE2Vl7PrD27ScylYcPH+LJkyewsbFB2bJlrbLD83VpaWmIjY1FSkoKXF1dUbFiRavr7MxJcnIy4uPjYWNjg5IlS8LGxkbqkiSXlpaGu3fvIjU1FW5ubjxXoPsBzo0bN/DkyRPY2tqiUqVK8PDwMNn6Cls+4BCdRERERERERERERGRynp6e8PT0lLqMQsXe3h7e3t5Sl1HoODo6wtHRUeoyChV7e3urvWM8NzKZDFWrVkXVqlWlLkUSljv4KBEREREREREREREREZEFYgcfERERERERERERERERURHCDj4iIiIiIiIiIiIiIiKiIoQdfERERERERERERERERERFCDv4iIiI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RERE+cN8xHxEREREhpiPmI+IiKjwk4mswZ2tRHh4OADA398/x+lpaWm4desWvLy8DMbUvvviLnxCfJCmzvvXOgXNXmmPa2OvoaJrxbxnJjKx3K4RIqKiLK98YOnetP1vet9nPiJiNiIiy8V8lP98JGU2ApiPqPBgPiIiS1XY8lHOT7GlbCq6VsS1sdcQlxJn9nWXLFaS4YyIiIgKHeYjIiIiopekzEYA8xEREZG1YQdfPlR0rcigRERERPQK5iMiIiKil5iNiIiIyFz4DD4iIiIiIiIiIiIiIiKiIoQdfERERERERERERERERERFCDv4iIiIiIiIiIiIiIiIiIoQdvARERERERERERERERERFSFKqQsgIiIiIiIiIiIqCp4+fYrIyEjY29sjJSUFtra2kMut+/fzQgikpqZCrVZDJpPB1tYWdnZ2UpclOa1Wi4yMDGi1WigUCtja2kImk0ldVqGQkZEBhUIBhUIhdSmFghACSUlJSElJgaurK+zt7aUuqdAQQgAAr51XCCGQmZkJW1tbqUuhQsC6EwgREREREREREVEezpw5g/eGvAfPMp7o378/Hj9+jJs3b+LS35cQGxuL9PR0qUs0O41Gg8ePH+PylcuIiIjA9evXce3aNYSHh+PatWt49uyZ/st5a5KWlobY2FhcunQJly/r9k14eDguX7mMR48eQa1WS12iJC5cuIDhw4fD2dUZdnZ2UCqVKF+xPBYsWIAHDx5IXZ4k4uLisHjxYlR+qzJcXFzg6ekJBwcHNG3eFD/99BMyMzOlLlESERERGDduHEqWKgmlUgk7Ozv4VPfBV199hadPn0pdniSSkpKwevVq+Nf0h9JGt0/sHezRvUd3/Pbbb1b5Xgu8PFc8SntAaaOEvYM9avjVwPLly/HixQupyzMLdvARERERERERERHlQAiBuXPnol69etiyewsym2YC/QA4A3AHNHYaPHz8EJcvX8azZ8+kLtds0tLScOXKFdy9exfpsnSgOIBS///nBiSmJyI6OhpRUVHQaDTSFmtGjx49wuXLl/Hw8UNo7DVACQAlARQH0mXpiImJQfjlcCQlJUldqtkkJiaiS9cuCAoKwoZtG5BUKwnoDqArcM/jHj759BNUqFgBixYtsqpOirCwMJQrXw6z5szCXde7wDsA+gLoDJy4cwK9e/eGt8obV69elbpUs0lOTkavd3vB19cXqzauQnzVeGg7aJHZOhNRNlGYOn0qypQtg5CQEKlLNaudO3eiTLkyGP3BaFzJuAJtey3QHUhvlI69J/eidevWqBlYE3fv3pW6VLNJTk7GO73e0Z8rcd5x0LTVIL15OiIRiQmTJsCzjCfWrFkjdakmxyE68+PuXSAuzvzrLVkSqFgxX4u0bNkSALBr1y44OTkZTJs5cybu3buHTZs2FViJOfHx8cGiRYvQs2dPLF++HDt27MDhw4f/UVuxsbFo1aoV2rZti+XLl2eb3rJlS/To0QPjxo0zqr2UlBTs2LEDAwYMeOP6XlesWDFUqlQJI0aMQKdOnYyuP6/1AfjX+6ggFIYaiIioiGE+yhfmI+PXBxSObFIYaiAiIunMmzcP8+fPB1oB6kZq3U/lHaH7XxsADgCcAfFCIDo6Gip7e7hkZEhTrJnyUXp6OiKvRUIjNLoOvde/XVQCKAYgDUh4loAbN26gatWquQ5laon5yM7eDp7lPdGlXxc0bNlQ96I9ABdA81yDa9euoVq1anB0dMzX+oDCkU2MrSE1NRXtO7THuUvngHcAdQ018OqonEGAto0W+BP48MMPkZCQgEWLFpm2+ELgu+++Q3BwMFALQBvo3lNeoamjAR4C93bew9uN3sbpU6ehUqkkqNR8UlNT0aZtG5w+dxroDqj91AbvLaK+ANoBGccyMG7cOCQkJODDDz+UrF5z+eGHH9CvXz+gOiDaCsDNcLq6sRq4DVzddRX1G9bHmdNnUL58eSlKNZuUlBS0at0KZy+czflcaSCARCDtaBref/99JCQkYOrUqZLVa2rs4DPW3buAjw+Qlmb+ddvbA9eu5Tuk3bt3D4sXL9YFUQtx4MAB7N27N19fHuUkNDQU27dvf2NgAnSBJTAwEIDuV3tPnjzB6tWrMXXqVJQrVw61atUqsPUFBwfnWQ8REVGhwnxUKDAfERERmUZGRgbmzZsHtATQ5A0zygG4Abb3H8Kp8zuAVB18ZspHd+/ehVqr1t2Z9qZHqNkDKA4kxifi8ePH8PT0zFdd/4a589GXX36pe26aIyCcBJ7HP8fPm3/GNwu/QUnPkqhao6puRgWA4oCIF7gRfQMB/gEGzxaztHz03//+F2cvnIX2PS1QLpeZHAC0BlBMN3+DBg3QrVs3M1ZpXpGRkRgxcgRQG0BnALk9Ws4T0LynQdJ3SejavSsiLkdY9PM+J02ahNNnT0M7SAtUyGUmJwAdARQDZs+ejTp16qBt27ZmrNK8oqKiMHDQQMAfEN1FzmMxygB4AeqhasR9F4ce7/TAX6f+suhnFk6cOBFnzp+BdrAWyK0v0xm666sYMG3aNNSuXRstWrQwY5XmY7nvCgUtLk6aL68A3Xr/wS/jK1SogB9++AEnTpwwQVHSqFChAubPn4+4f3mngLG3/Lu6usLDwwMeHh4oVaoUfH198cUXX8DW1hb79u0r0PU5OjqiePHiRrdJREQkOeajQoH5iIiIyDRevHgBpbsSaGTEzDJAmfEccqk69wCz5KP09HTdc42c8ebOvSx2AByAx08em3X4RXPnI61WC/cS7nCr6Ab3Eu7wUnlhzOwxsLGxwekjpw1nlgFwBTIzMvH8+fN8r6+o5CONRoMdO3ZA2+QNnXuvaggoKivw5ZIvTV6blFasWAGZvQzogNw797I4AOqOaly7es2iR5OIj49H6HehunMlt869VzUDFOUV+PzLz01em5RWrFgB2AGiSy6de69yAdQd1Dj711mcPn06j5mLridPnuC79d9B2/QNnXtZZABaAsqySnz5leW+r7CDz4J17doVDRs2xOzZs984tndiYiI++ugjNGjQALVr18bgwYMRHh5uMM+RI0fQs2dPBAQEoE2bNli6dCkyXgmtDx8+xOjRoxEYGIimTZti9+7db6zNmHXmZOrUqVAoFPjkk0/eOF90dDRGjRqF+vXro3bt2hg/fjzu3bsHQPer85CQENy7dw8+Pj6IjY3Nc72vksvlUCqVUCpf3gAbHR2NESNGIDAwEI0bN8aUKVPw5MmTXNc3c+ZMjB8/HsHBwQgKCsLatWuxfPly/dAYgG7c9kmTJqFOnTqoX78+Ro0ahdu3bwMATp8+DR8fH0RHRxvUNnjwYP0tx8bs4x9++AFt2rRBQEAARo0aZTUPHyUiIuvFfMR8xHxERETGSkpOgjpQbVxHFlBkx8nKTz6aNWsWRo0aheG9h2Ph5IW4ee2mwTznT57H7JGzMaTdEEweMBk/hf6ETJtMZKRnICEhwWLz0YuEFxDFhEGHjVwhh0KpgEL58gS6d+ceFs9cjOCuwRgzZgxmzJhhsfkoOTlZd6dnYJ6z6sh0Q1P+8fsfuHLlipELFS3JyckIXR8KdS218e8XlQClpxIh31juc+fWr18PjVaTv3OltgaHDhzCjRs3TFqbVFJSUrDuu3VQ11TrhoM2hjegLGHZ50poaCi00AJBRi4gA9S11fhl7y/690VLww4+CyaTybBw4UK8ePECn332WY7zCCEwYsQIxMTEYPXq1fjxxx9Rq1Yt9OvXDxEREQCAY8eOYeLEiejduzf27NmDuXPnYt++fZg2bRoAQK1WY/jw4Xj27BnCwsLw9ddfY926dbnWZcw6c+Pu7o558+bh4MGDuYbAe/fuoU+fPrC1tcWGDRsQGhqKJ0+eYODAgUhKSkJwcDCCg4Ph6emJ48ePo0yZMsbsTgC6X+/997//RWpqKjp37gxAF6T69++PSpUqYevWrVi1ahWSkpLQp08fpKSk5Lq+/fv34+2338a2bdv0bWVJSUnBoEGDAOgeurtp0ya4u7ujd+/eePToEerVq4fy5csb7IOHDx/izJkz6Nmzp1H7eM+ePZg/fz6GDBmCn3/+GUFBQdi8ebPR+4KIiKgoYj5iPmI+IiIiYwmtALylrsL08pOPYmNjMfXDqZi/Yj68q3tj3rh5uB11GwBw6a9LWD5vOVp2bonPQj/DkIlDcProaaz8YiUg13UkWWo+ElqhG5L0/yUnJmPzis1IT01Hw1a6Z/A9i3uG+ePnw7OcJz5d/Smmzp2KhIQEi81HaWlp0JbX6oZVNFY1QKaU4ciRI/lYqOj4+++/kZyYDPjmYyEZoK6uxtHfj5qqLMn9uv9XaN/K57niB8jkMvz2228mq0tK58+fR+KLRMA/HwvJdefK/oP7TVaX1Pbt3wdtFa3uOa/G8td9nljqucIOPgtXrlw5zJgxAz/++COOHz+ebfqpU6dw8eJFLF26FDVr1kSVKlUwefJk1KpVCxs3bgQArFq1Cr1790bfvn1RsWJFNG7cGPPmzcOvv/6K2NhYnDx5ElFRUVi8eDF8fX0RGBj4xgfiGrPON2nTpg06d+6MTz/9VP8rp1dt2bIFxYoVwxdffIFq1aqhZs2aWLZsGeLj4/Hzzz/D0dERxYoVg0KhgIeHBxSK3H+Kl/Wr88DAQNSsWRNvv/02rly5gtDQUFSvXh0A8P3338PT0xNz5sxBlSpV4Ofnh6VLlyI+Ph6//vprrutzdXXF8OHD4eXllS0k7t27FwkJCfj8889RrVo1qFQqLFy4EE5OTvjxxx8hk8nQo0cP7NmzR7/Mnj17ULp0aTRo0MCofbxp0yZ07NgRAwYMgJeXF0aOHGmxYxETERG9ivmI+Yj5iIiIjGbsnRNFnLH5aNq0afD28UbZimXRZ0QfeFf3xq/bfgUA/Bz2M1p2bolWXVuhdLnSCKgbgKGThuL076cR9yQOZ8+etdh8tHix7q684A7BGNp+KEb3GI1b129h5hczUdm7MgDg0K5DKO5RHIPHDUbZimXhVdUL48aNs9h8pNFqDDo9jaIEFA6KbEOXWoqEhATdPxzyuaA9kJyUXOD1FBZPnz0FHPO5kA2gsLfcc0V/l2x+OrIAwBFISsj9Tuyi7h+dK7aWfa4U0cEDKD/69OmD/fv3Y86cOQYf6ABw5coVCCGyfTBnZGQgPT0dABAREYG///4bW7du1U/PGhM8OjoaN27cgKurKyq+8hDn6tWr6x4unANj1pmXOXPmoHPnzpg7d65uPOJXXL9+HX5+frC1tdW/5uHhAS8vL1y/ft2o9rN8+umnqFmzJtLS0vDDDz9g7969GDZsGBo0aKCfJyIiAlFRUQgMNLyPPD09PdsQCK+qVKlSrtMiIiLw4sUL1K1bN9c2u3fvjpCQEFy4cAGBgYHYtWsXunXrBrlcbtQ+vn79eraHTQcGBiIyMvINe4SIiMgyMB8xH2VhPiIiojdKBuAhdRHmYUw+Gj58OARePidOnalGZkYmAOB21G1ER0bjyN7sd1/FxsYiKTHJYvPRiBEjUKVOFWSIDBzefRgnD59Epz6d4Bv48lat29dvI/ZWLII7BL9cUOi2xxLzkVwmB/L7SEoBaNO1cHLKz61cRYd+u/L7GPN0oJhjfnt6ig4nJycgex/8m2kBTYYGjo757e0pGvTbld9rKANwKJbfHuSiw7GYI5CYz4W0gDZDa7HnCjv4rMSnn36KLl26ZPtllFar+9Dcvn17tmWyAo5Wq8Xw4cPRo0ePbPN4eHggOjoaWq0227RXn8GS33XmJWuohTFjxuDnn382mJbbA4m1Wi1sbPL307vSpUvrg9THH3+M1NRUTJw4ERs2bEDt2rX17TZo0ABz587Ntryzs3OubecWYLPa9PLywsqVK7NNK1ZM94Fevnx51KtXD7t374ajoyOuXbuG5cuX65c3Zh+/ftzyu3+IiIiKMuYj5qMszEdERJQTpVIJhAOoLHUl5pNXPlq7di3u378PlIT+2YRZn5VarRad+3ZGk3ZNDBtNA9xkbrhy5YrF5qMSJUrAs7gn4AoMmTAEGWkZWDZvGWZ/NRs+/j66doUWNYJqYOjEoQAA2VMZnBycULlSZYvMR7a2tlDcV+g6KIw7XMAt3RfxWZnS0vj7+8PewR5pkWmAp5ELCUBxTYG3G75t0tqkVCeoDk6sOQF1Zj6eN3cLEGqBWrVqmbI0yfj5+UFpo4T6ulr3fmskxQ0F6tSpY7rCJFa3dl2c3XAWanU+nmMZrRtG2VLPFQ7RaSXKli2LmTNnYuvWrTh79qz+dZVKhaSkJGRmZqJSpUr6v7Vr1+rHpa1atSpu3bplMP3hw4dYvHgxkpOTUb16dSQmJiIqKkrf7u3bt3N9MLMx6zRG69at0aVLFyxcuNBgXT4+PggPD0dGxsufOMTFxeHOnTuoUqUKAN348v/EnDlzULp0aUyfPh2pqakAdPsnOjoaZcqU0W+Lq6sr/vOf/+h/8ZXf9alUKty/fx/Ozs76NsuWLYsvv/wSZ86c0c/Xs2dPHDhwAHv37kVQUJD+yzZj9nH16tVx/vx5g/Ua86BqIiIiS8F8xHzEfERERG/i4uICebgcSDVygfzeaVEI5ZWPHB0dUbZsWXi6ecKznCd2f78b5/48BwCo4FUBD+4+gGc5T/3f0ydP8f3q76FQKhAQEGCx+cjV1VV3nvx/n+Hg8YNR3KM4Vi5aifS0dP3+uX/nPkp4lICnhydKlygNr8peFpuPnJ2doU3X6jrJjSQ7K0O1GtXQuHFj4xcqQlxcXDB40GAoLygBjZEL3QM09zQYO2asSWuT0siRI6FOUgNvfrSmgaxzpVGjRqYrTEIlS5ZE7969oTyvBLL/LiJn9wBNjAZjP7Dcc+X999+HOkEN5GOAFdlZGfwC/FC/fn3TFSYhdvBZkXfffReNGzdGTEyM/rUmTZqgevXqmDRpEk6dOoU7d+5g0aJF2L59uz7MjBgxAvv370dISAhu3bqFkydPYtasWUhMTISHhwfq16+PmjVrYvr06bh48SLCw8Mxffp0yOU5n17GrNNYc+bMga2t7ctxiQH069cPycnJmDZtGiIjI/H3339jwoQJcHd31w8pUKxYMbx48QK3bt1CZmam0etzdHTEggULEBsbi6+//hoA0L9/fyQmJmLq1KmIjIxEZGQkJk2ahPDwcKhUqn+0vq5du8LV1RXjx4/HpUuXEB0djZkzZ+LYsWPw8fHRz9euXTukpKRg06ZN6Nmzp/51Y/bxyJEjcfDgQXz77be4ffs2Nm3ahP37LfchrERERDlhPmI+Yj4iIqLcODs7w97WHvIdckCdx8waAEn/7Mcyhc2b8tHUqVNx7949PIx+iLBlYTi27xjKVSoHAOjcrzP+OvYXtm/YjgcxD3D53GWsXrQaKckpqF6tukXnI3d3d8iEDHgOQAD2DvYYPmU4njx4gp9CfwIAtO7WGinJKfjm029w9+JdPHz4EHPnzrXYfKRUKtG8eXMo/1ACL/KcHbgOIBKYMG7CP/7hWVEwZswYaBI0gDF91BmAYp8ClbwqoX379iavTSo+Pj5o2bolFL8rAGMeHxcF4Jrlnytjx4yFOk4NnDBi5kxAcUCB8hXLZxtS15L4+vqiSdMmUBxVAClGLHAdENeFRZ8r7OCzMp9++qnBbf8KhQKhoaHw8/PDxIkT0bVrV5w5cwYhISFo2LAhAKB9+/ZYsmQJDh06hC5dumDatGlo3LgxQkJCAAByuRyrV6/GW2+9heDgYLz//vvo1KkTihcvnmMNxqzTWG5ubpg3b57Ba+XLl0dYWBgSEhLQp08fDBs2DB4eHvj+++/h4uICAGjbti08PDzQtWtXRETk4+chAN5++2307NkTGzduRHh4OCpUqICwsDAkJyejX79+GDhwIGxsbLBx40b9Psjv+pydnREWFgZ3d3cMGzYMvXr1wqNHjxAaGmoQYh0cHNChQwdotVp06NBB/7ox+7h58+b48ssvsW3bNnTp0gUHDhxAcHBwtlqIiIgsHfMR8xHzERER5UShUGDn9p2Q35JDvkUOPMphJgEgDZDFyaCUKcxdosm8KR8tXLgQs2bOQuTFSEyaPUn/nLn6zepj3MfjcPb4WcwcNhMrF65EgF8APvvsM7i5uVl0PrKxsUHlypV1d/E9B6AB/Gr7oVn7Zti/bT9uXruJUmVK4aMvPkJaQho++fgTfPLJJxafj+bNm4dSTqWg3KgEHucykwBwGZD/JEeXLl0wYsQIo9ouqgICAvDVV1/pOm1+Re53/j4HFJsUsH1ui53bd0KhsJz3l5ysW7sO7kp3KDYpgKe5zCQAXNWdKx07dsTw4cPNWaLZNWzYEHPmzAEOATiG3O/6TAbk38uhfKTE1h+3Wvy58l3od3ARLrpz5XkuMwkAEYB8q+59ZejQoWas0LxkIrcBpy1U1i3k/v7+OU5PS0vDrVu34OXlZTjG9d27gI8PkJbfp6AWAHt74No14JWHEBNJJddrhIioCMsrH1i6N23/G9/3mY+ImI2IyGIxH73c/mPHjuHdPu/i8cPHUFRWoHzD8lj1/iqULFUSsnQZhFqgWLFi8La1ha2/vzTZCDBrPtJqtbhz5w7i4+N1tw84QPc8JAEgE0CqbrjJ8uXLo3Tp0iavp7B4+vQpbt++rXtmnQMAOwAy6IbYSwWQAdja2aKqd1U4ODhIWqspvZqPHjx4gLbt2+LG9RuQV5VDG6gF3KHbJ/cA5Tkl1I/U6N27NzZs2GA1eWr58uWYOHEiZHYyaAI0QFXonj+XBMjCZcB1oHiJ4vj1l18t+plqr7p69Sratm+Le7H3gGqACBQvz5UYQHFOAc19Dbr36I4tm7dY9DWURQiBTz75BPPnz4fSTQl1oBqoAv25gr8BeYQcTo5O2P3zbjRt2lTiis3j8uXLaNu+LR4+fAhU//9zxQ26TtBXzpWe7/RE2KawAj1XCls+MvZRhFSxoi4kxcWZf90lS/LLKyIiIip8mI+IiIjICjRt2hSxd2Oxc+dOhKwIQdylOCAVkKfJ4eriilKlSsHJyUk3/JdU2Qgwaz6Sy+Xw8vJCmTJlEBcXh/j4eKhT1IAMsLO1g0cFD5QoUQJKpXV99Vi8eHG4uLggPj4ej588RvrzdP00Z2dnlKpQCm5ubhY7VFxOvLy88PfFv/HDDz9gWcgyXPjxgn6aXCFHt+7d8MEHH6BFixZWtV/GjRuHLl26YPXq1Vi1ZhWen36un1bNtxomrJiAAQMGwMnJSboizax69eqIuByBjRs3YlnIMlzffF0/TSaToV3Hdhizdgzat2+f69C+lkYmk2HevHno0aMHVqxYgU1hm5B25OWPSMpXLI9xn45DcHAwSpYsKWGl5uXn54erV65iw4YNWBayDNGbovXTrO1c4R18r+EvcInejNcIEVmiwvYLLHP7x3fwERGvESKyWMxHzEf072m1Wmi1WigUCqvqvHrTNXLnzh08fvwYNjY2qFChAkqUKCFRlYVHZmYmHjx4gJSUFLi6usLT09OqzpecCCFw9epVPHnyRD8EbtmyZaUuS3IJCQm4efMmUlNT4ebmBpVKZfFDcuZFCIErV67gyZMnsLW1ReXKlVGuXDmTra+w5SPr+hkNERERERERERERkRnI5XKLv3skvypVqoRKlSpJXUahYmNjg4ocncSATCZDjRo1pC6j0HFxcUGtWrWkLqNQkclk8PPzk7oMyfAThoiIiIiIiIiIiIiIiKgIYQcfERERERERERERERERURHCDr5cWNmjCYmMxmuDiMg68f2fKGe8NoiIrBc/A4hyxmuDiMg82MH3GqVS91hCtVotcSVEhVNmZiYAWP0DXImIrAWzEdGbZV0bWdcKERFZPuYjojdjPiIiMg928L1GoVBAoVAgISFB6lKICh0hBF68eAE7OzvY2NhIXQ4REZkBsxHRmyUkJOivEyIisg7MR0RvxnxERGQe/BnFa2QyGUqVKoUHDx7Azs4Ojo6OkMlkUpdFJCkhBDIzM/HixQskJSWhXLlyUpdERERmwmxElDMhBJKTk5GQkIAyZcrwuiAisiLMR0Q5Yz4iIjIvdvDlwNXVFampqYiLi8OTJ0+kLoeo0LCzs0O5cuXg4uIidSlERGRGzEZEOZPJZHBzc4Orq6vUpRARkZkxHxHljPmIiMh82MGXA5lMhjJlyqBUqVL6540RWTuFQsFhOYmIrBSzEVHObGxsOPQUEZGVYj4iyhnzERGR+bCD7w04VjQRERHRS8xGRERERIaYj4iIiEgqcqkLICIiIiIiIiIiIiIiIiLjsYOPiIiIiIiIiIiIiIiIqAhhBx8RERERERERERERERFREWJ1z+DLzMyEEALh4eFSl0JERESFREZGBmQymdRlSIb5iIiIiF7HfMR8RERERIYKWz6yug6+wrTziYiIqHCQyWRWnRGseduJiIgoZ8xH1rvtRERElLPClo9kQgghdRFEREREREREREREREREZBw+g4+IiIiIiIiIiIiIiIioCGEHHxEREREREREREREREVERwg4+IiIiIiIiIiIiIiIioiKEHXxERERERERERERERERERQg7+IiIiIiIiIiIiIiIiIiKEHbwERERERERERERERERERUh7OAjIiIiIiIiIiIiIiIiKkLYwUdERERERERERERERERUhLCDj4iIiIiIiIiIiIiIiKgIYQcfERERERERERERERERURHCDj4iIiIiIiIiIiIiIiKiIsSqO/i0Wi2WLVuGJk2aoFatWhgxYgRiYmKkLstoz58/x8cff4ymTZsiKCgI/fr1w9mzZ/XThw4dCh8fH4O/QYMG6aen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XAMyIV65B5uIiIiIiIiIiIiIiIiICrXCP9g5EREREREREREREREREemxg4+IiIiIiIiIiIiIiIioCGEHHxEREREREREREREREVERwg4+IiIiIiIiIiIiIiIioiKEHXxERERERERERERERERERQg7+IiIiIiIiIiIiIiIiIiKEHbwERERERERERERERERERUh7OAjon9NCFGk2pWKpW0PERER5Y75yDiWtj1ERESUO+Yj41ja9hCR6bCDj8iChIeHY9q0aWjevDkCAgLQunVrfPTRR4iJiTHJ+hISEjB9+nScPXu2wNtesWIF1q1bl+d8169fx6RJk9CoUSP4+fmhcePGmDhxIiIjIw3mGzRoEAYNGlTgdeZm//796N+/PwAgIyMD//nPf7B79+58tbF9+3b4+PggNjbWFCXmy82bN9GyZUskJCRIXQoREVG+MB8xH5kK8xERERVVzEfMR6bCfERkXuzgI7IQmzdvRt++fREfH48pU6Zg7dq1GDlyJP766y/06tUrW2ApCFevXsXPP/8MrVZb4G1//fXXSE1NfeM8UVFR6NOnD54/f445c+YgNDQU06dPx/3799G7d29cvHhRP+/cuXMxd+7cAq8zJ/Hx8Zg3bx5mz54NAHj8+DE2bNgAtVptlvWbwltvvYVWrVrh008/lboUIiIiozEfMR+ZEvMREREVRcxHzEemxHxEZF5KqQsgon/v3LlzWLhwIQYMGKAPBQBQv359tG7dGt27d8eHH36I7du3S1hlwfvuu+/g7u6OtWvXQql8+XbWunVrtG/fHitWrMCaNWsAAN7e3mara+XKlQgICICvr6/Z1mkOI0eORPPmzfHee+9Z3LYREZHlYT5iPjIH5iMiIipKmI+Yj8yB+YjIfHgHH5EFWLduHZydnTF58uRs04oXL46ZM2eiVatWSElJAQBoNBps3rwZXbp0QUBAAJo3b44vvvgC6enp+uVmzpyJIUOGYNu2bWjXrh38/PzQrVs3HDt2DABw+vRpDB48GAAwePBgg+ELDh06hJ49e8Lf3x+NGjXCp59+ql93UlISWrRogfbt2yMjIwOAbmzxwYMHo1GjRnj69Cl8fHwAACEhIfp/5yQuLg5CiGy/ACtWrBg+/PBDdOjQQf/aq0MsZA1dkNPfzJkz9cucPXsWAwcORM2aNVGvXj3MmDEDT58+feOxePr0KbZu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ooXBcjExMUKlUolt27YJIYTQaDRi8uTJwt/fX3Tq1Ek/3969e0WPHj2En5+fqFevnhg1apSIjIwUQghx9epV4evrKz755BODthctWiSqVasmzp49K4QQIjQ0VNSpU0fUrFlT3Lt3L9dtvnz5spg0aZJo2rSp8PPzE0FBQWLgwIFi//79BvMNHDhQDBw4UP9vlUqV49+r23zixAnRv39/ERAQIGrXri0GDx4szpw588ZjEB8fL/z8/MTevXuzbV+tWrVE3bp1RUZGhhBCiF9//VX06NFD+Pr6ivr164upU6caHKtt27YJlUolYmJi9K8dOXJEqFQqERISIoQQIjMzU4SEhOiPZdOmTcXcuXPFs2fPctz2LKdOnRIqlUqcOnVKCCFEYmKiWLBggWjevLm+nf/+978iNTXVYLnhw4eLCRMmvHEfEBERFSbMR8xHzEdERESGmI+Yj5iPiCyDTAghpO5kJCKyJAsWLEBUVBQ2btwodSkF6t69e2jTpg22bt2KGjVqSF0OERERFSHMR0RERESGmI+I6N/iM/iIiArYqFGjEBkZib///lvqUgpUaGgo2rdvz3BGRERE+cZ8RERERGSI+YiI/i3ewUdEZAK//PILNm7ciP/9739Sl1IgoqOjMXz4cOzYsQNubm5Sl0NERERFEPMRERERkSHmIyL6N9jBR0RERERERERERERERFSEcIhOIiIiIiIiIiIiIiIioiKEHXxERERERERERERERERERQg7+IiIiIiIiIiIiIiIiIiKEHbwERERERERERERERERERUh7OAjIiIiIiIiIiIiIiIiKkLYwUdERERERERERERERERUhLCDj4iIiIiIiIiIiIiIiKgIYQcfERERERERERERERERURHCDj4iIiIiIiIiIiIiIiKiIuT/ACJUrGzRDZsEAAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" + "name": "stdout", + "output_type": "stream", + "text": [ + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506' to 5.\n", + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3' to 5.\n", + "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7' to 5.\n" + ] } ], "source": [ - "# Create a 1x3 subplot structure\n", - "fig, axes = plt.subplots(1, 3, figsize=(18, 6), sharey=True)\n", - "\n", - "# Loop through your needle counts and plot each on a subplot\n", - "needles = [1, 3, 10]\n", - "for i, n in enumerate(needles):\n", - " # Isolate data\n", - " d = anthropic_replicate_1[anthropic_replicate_1.total_needles == n]\n", - " # Visualization \n", - " context_sizes = list(reversed(d['context size'].unique()))\n", - " insertion_percents_1000 = d[d['context size'] == context_sizes[0]]['insertion %'].unique()\n", - " insertion_percents_next_context_increment = d[d['context size'] == context_sizes[1]]['insertion %'].unique()\n", - " mapping_dict = dict(zip(insertion_percents_1000, insertion_percents_next_context_increment))\n", - " rows_to_update = d['context size'] == context_sizes[0]\n", - " d.loc[rows_to_update, 'insertion %'] = d.loc[rows_to_update, 'insertion %'].map(mapping_dict)\n", - " # Plot\n", - " plt_simple_needle_scatter(d, f\"Claude3 {n} Needles\", axes[i])\n", - "\n", - "plt.tight_layout()\n", - "plt.savefig(\"combined_needle_retrieval_analysis_anthropic.png\", dpi=300, bbox_inches='tight')\n", - "plt.show()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Plot retrieval vs reasoning\n", + "# Manual audit of grader\n", "\n", - "`eval_sets_reasoning`\n", + "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506', 5)\n", + "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3', 5)\n", + "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7', 5)\n", "\n", - "* https://smith.langchain.com/public/a85db85f-ee45-4a39-a1ac-52f7279134ac/d\n", - "* https://smith.langchain.com/public/270cd9cd-154d-4ba9-8b34-7b6537007867/d\n", - "* https://smith.langchain.com/public/00658b64-6199-48fc-9443-1478aadbe19a/d" + "# Set stat\n", + "df_gpt4_reasoning['fract per turn'] = df_gpt4_reasoning['retrieved needles'] / df_gpt4_reasoning['total needles']\n", + "df_gpt4_reasoning.to_csv(\"multi-needle-datasets/gpt4_reasoning.csv\")" ] }, { "cell_type": "code", - "execution_count": 73, + "execution_count": 193, "metadata": {}, "outputs": [], "source": [ - "# Here is a csv of the data\n", - "df_gpt4_reasoning=pd.read_csv(\"multi-needle-datasets/gpt4_reasoning.csv\")" + "df_gpt4_reasoning = pd.read_csv(\"multi-needle-datasets/gpt4_reasoning.csv\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 194, "metadata": {}, "outputs": [], "source": [ - "# Manual audit of grader\n", - "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--e759',7)\n", - "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9db6',5)\n", - "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--04e6',5)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "df_gpt4_grp_reasoning=plot_groups(df_gpt4_reasoning)" + "# Combine\n", + "df_gpt4_retrieval = df_gpt4.copy()\n", + "df_gpt4_retrieval['mode'] = 'retrieval'\n", + "df_gpt4_reasoning['mode'] = 'reasoning'\n", + "combined = pd.concat([df_gpt4_retrieval,df_gpt4_reasoning],axis=0)" ] }, { "cell_type": "code", - "execution_count": 82, + "execution_count": 195, "metadata": {}, "outputs": [ { "data": { - "image/png": "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Hm3YsEG+vr4qWLCgZXnx4sU1adIkxcbG6rffftOaNWv0xRdfqEiRIgneN/s04/7mm280fvx4DRgwQC1atFDOnDklSe+//74OHz6cqJjufUrx77//xttHeHi4cuTIkeiYn0S+fPl0+vTpeO33388KALAvcju5/WmQ24G0gds04HBZsmRRmTJldPLkSXl7e1u+XnjhBc2cOVN79uyRJLm4uDzR9v38/HTq1CkVK1bMavtr1qzR8uXLLdvNmjWr/P399eOPP+q7775TkyZN5OTkJEk6efKkIiIi1L59e5UsWVLOznd/dbZt2yZJj30++v1KlCghLy8vrV+/Xlu3blWTJk0sy7799lu9+OKLCg8Pl4uLi3x8fDRixAhlzZpV58+fT/JxHzhwQFmzZlXXrl0tJys3btzQgQMHLGN6XEzFihVTnjx5tG7dOqv9nz17Vr/++qsqVqxoU9y28vPz07lz5/T7779b2m7duvXIibMAAMmL3E5ufxrkdiBtoBiBZ0K/fv20fft2BQQEaOvWrfrpp5/UtWtX7dq1y3Iporu7uyRpy5YtOn78eKK33bFjR8XFxaljx47asGGDdu3apWHDhunzzz9XsWLFrPo2adJE27Zt0z///GO511OSihUrpixZsmju3LnasmWLtm/frmHDhmnp0qWSlKgZt+/XtGlTrVq1SsYY1a9f39JesWJFxcXFqVevXvrhhx+0a9cuBQYG6r///tOrr75q0z4SM+5y5copMjJS48eP1549e/TNN9/orbfe0r///msZ0+NicnZ2jnf8Vq9erU6dOilbtmzq1KmTTXHbqlGjRipRooR69eqlNWvWaPPmzerevbsuX75sOeEEANgfuf0ucrvtyO1A2kAxAs+E6tWrKyQkRBcvXlTv3r01cOBAubi46JNPPlGFChUk3Z1sqVGjRlqyZIn69++f6G3ny5dPy5YtU8GCBTVixAi9/fbb+u233zRmzBh17NjRqm+tWrXk7u4ub29vq5MZd3d3zZ49W8YYvf/++xo4cKDOnz+vxYsXK3PmzNq/f79N423UqJGcnJzk7+9vORGTpLx582rBggVyd3fXhx9+qB49eujo0aOaOXOmXnzxRZv2kZhxN2/eXL169dLGjRvVrVs3BQUFqXLlyho5cqQiIiIUGhqaqJhatGihoKAgnTp1Sr169dL48ePl4+Oj5cuXK0+e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", + "image/png": "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d3d3BQcH6/XXX8/yO8xkMqlPnz7mz9adz8batWst+l27dk39+vVTSEiI3N3d5e/vr6ZNm2rv3r33rQ9AzjDs4R/mypUrunjxokVboUKFzD+PHj1abm5uGjBggNLS0uTm5qbDhw9r5cqVeu655xQaGqqkpCTNnDlTkZGROnz4sIKCgiRJGRkZeuqppxQfH68OHTro1Vdf1bVr17Rhwwb98MMPioqK0vTp0/XKK6/omWeeUdu2bSVJVapUuWu9PXr00IIFC9SuXTu99tpr2rFjh8aPH68jR45kCRw///yz2rVrp+7duys2NlZz585V165dFRERoUqVKt31GIZh6Omnn9amTZvUvXt3hYeHa926dRo4cKDOnDmjd999V4ULF9bHH3+ssWPHKiUlxTyUoUKFCta9Afq/IO3n52duGzt2rIYOHar27durR48eunDhgt577z01aNBA+/btk5+fn958801duXJFv/76q3nYhbe3t8W+s3v/svP111+rRYsWioiI0PDhw+Xi4qJ58+apcePG+vbbb1WzZk21bNlS3t7eWrZsmSIjIy22X7p0qSpVqmQeMvPjjz+qbt26Klq0qN544w15eXlp2bJlatOmjZYvX24OT+fOnVOjRo1069Ytc79Zs2YpX758Vr2G9evXV+PGjTVp0iS98sor99z+X//6l+bPn69u3bqpb9++SkhI0Pvvv699+/Zp27Ztyps3ryTp448/VmxsrKKjozVx4kRdv35d06dPV7169bRv3z7zHxrr16/Xs88+q4oVK2r8+PG6dOmSunXrpmLFit237qSkJD3xxBPmoFO4cGGtWbNG3bt319WrV83DWWbPnq2+ffuqXbt2evXVV3Xjxg0dPHhQO3bsUKdOncz7q1ChgiIjI+0+hv7cuXOSLH9X7Nu3T5JUo0YNi74RERFycXHRvn379PzzzyszM1MHDx7Uiy++mGW/NWvW1Pr163Xt2jXlz5/fLvvMzscff6wePXqoZs2aeumllyRJpUqVknT7s1y/fn35+Pjo9ddfV968eTVz5kw1bNhQW7ZsUa1atbLd58WLF9W0aVMlJydry5YtKlWqlDIzM/X0009r69ateumll1ShQgUdOnRI7777rn766acsY463bt2qFStWqFevXsqfP7+mTZumZ599VqdOnTIP43j55Zf16aefqk+fPqpYsaIuXbqkrVu3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SXJzc5MkZWRkWGy7bds2ffjhh3ryySclSadPn9bFixf/Vj0TJkxQeHi4ypUrZ9FevXp1HT58WKVLl852u2rVqikjI0Pnz59X/fr1s+1ToUIF7dixw6Lt+++/v2stAQEBCgoK0smTJ9W5c+e79vPx8VFMTIxiYmLUrl07NW/eXMnJySpYsOBdtwEA2B/hF0C2Bg4cqOHDh6tUqVIKDw/XvHnztH//fvMQA39/f+XLl09r165VsWLF5OHhIV9fX5UpU0Yff/yxatSooatXr2rgwIHKly/f36olLCxMnTt31rRp0yzaBw0apCeeeEJ9+vRRjx495OXlpcOHD2vDhg16//33VbZsWXXu3FldunTRO++8o2rVqunChQuKj49XlSpV1LJlS/Xt21d169bV22+/rdatW2vdunV3HfJwx8iRI9W3b1/5+vqqefPmSktL0+7du/X7778rLi5OkydPVpEiRVStWjW5uLjok08+UWBgoMWNMwAAjsFsDwCy1bdvX8XFxem1115TWFiY1q5dq88//1xlypSRJOXJk0fTpk3TzJkzFRQUpNatW0uSPvroI/3++++qXr26XnjhBfXt21f+/v5/u55Ro0YpMzPToq1KlSrasmWLfvrpJ9WvX1/VqlXTsGHDFBQUZO4zb948denSRa+99prKlSunNm3aaNeuXSpevLgk6YknntDs2bM1depUVa1aVevXr9eQIUPuWUuPHj00Z84czZs3T2FhYYqMjNT8+fPN07/lz59fkyZNUo0aNfT4448rMTFRq1evlosLv3IBwNFMhmEYji4CAAAAeBg4DQEAAACnQfgFAACA0yD8AgAAwGkQfgEAAOA0CL8AAABwGoRfAAAAOA3CLwAAAJwG4RcAAABOg/ALAAAAp0H4BQAAgNMg/AIAAMBpEH4BAADgNP4fAG/W8sdY64cAAAAASUVORK5CYII=", "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -695,51 +612,28 @@ } ], "source": [ - "def plot_grouped_subplots(df_1000,df_120k):\n", - " # Create a figure with two subplots\n", - " fig, axes = plt.subplots(1, 2, figsize=(12, 4), sharey=True) # Share the Y-axis\n", - " \n", - " # Plot\n", - " sns.barplot(data=df_1000, \n", - " x='total needles', \n", - " y='frac_retrieved', \n", - " hue='mode', \n", - " ax=axes[0],\n", - " palette=sns.color_palette(\"bright\", len(df_1000['mode'].unique())))\n", - " axes[0].set_title('Fraction correct: 1000 token context \\n retrieval vs reasoning')\n", - " axes[0].set_xlabel('Total Needles')\n", - " axes[0].set_ylabel('Fraction correct')\n", - " axes[0].legend(title='Challenge', bbox_to_anchor=(1.05, 1), loc='upper left')\n", - " axes[0].grid(False)\n", - " \n", - " # Plot\n", - " sns.barplot(data=df_120k, \n", - " x='total needles', \n", - " y='frac_retrieved', \n", - " hue='mode', \n", - " ax=axes[1],\n", - " palette=sns.color_palette(\"bright\", len(df_120k['mode'].unique())))\n", - " axes[1].set_title('Fraction correct: 120k token context \\n retrieval vs reasoning')\n", - " axes[1].set_xlabel('Total Needles')\n", - " axes[1].set_ylabel('Fraction correct')\n", - " axes[1].legend(title='Challenge', bbox_to_anchor=(1.05, 1), loc='upper left')\n", - " axes[1].grid(False)\n", - "\n", - " # Adjust layout for legend and tightness\n", - " plt.tight_layout(rect=[0, 0, 0.9, 1]) # Adjust as needed to make room for legend\n", - " plt.show()\n", - "\n", - "# Combine\n", - "df_gpt4_grp_retrieval = df_gpt4_grp.copy()\n", - "df_gpt4_grp_retrieval['mode'] = 'retrieval'\n", - "df_gpt4_grp_reasoning['mode'] = 'reasoning'\n", - "combined = pd.concat([df_gpt4_grp_retrieval,df_gpt4_grp_reasoning],axis=0)\n", - "\n", - "# Suppress specific FutureWarnings from seaborn\n", - "with warnings.catch_warnings():\n", - " warnings.simplefilter(\"ignore\", category=FutureWarning)\n", - " plot_grouped_subplots(combined[combined['context length']==1000],\n", - " combined[combined['context length']==120000])" + "def plot_reasoning_performance_vs_needles(df,context_length):\n", + " with warnings.catch_warnings():\n", + " \n", + " # Ignore specific FutureWarnings\n", + " warnings.simplefilter(action='ignore', category=FutureWarning)\n", + " \n", + " plt.figure(figsize=(8, 5)) \n", + " ax = sns.barplot(data=df, \n", + " x='total needles', \n", + " y='fract per turn', \n", + " hue='mode', \n", + " palette=sns.color_palette(\"bright\", len(df['mode'].unique())))\n", + " ax.set_title(f'Fraction of Retrieved Needles: {context_length} tokens')\n", + " ax.set_xlabel('Total Needles')\n", + " ax.set_ylabel('Fraction of Retrieved Needles')\n", + " ax.grid(False)\n", + " ax.legend(title='Test', bbox_to_anchor=(1.05, 1), loc='upper left')\n", + " plt.tight_layout(rect=[0, 0, 0.9, 1])\n", + " plt.show()\n", + "\n", + "context_length = 120000\n", + "plot_reasoning_performance_vs_needles(combined[combined['context length']==context_length],context_length)" ] }, { diff --git a/viz/multi-needle-datasets/gpt4_reasoning.csv b/viz/multi-needle-datasets/gpt4_reasoning.csv index 61bc717e..1703f024 100644 --- a/viz/multi-needle-datasets/gpt4_reasoning.csv +++ b/viz/multi-needle-datasets/gpt4_reasoning.csv @@ -1,37 +1,29 @@ -run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,percent -120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--1e0c,https://smith.langchain.com/public/727fbd2e-956e-4db5-af20-916182faeff4/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",1.0 -90250-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--c153,https://smith.langchain.com/public/c86c950f-43ea-4263-9243-34f965f95254/r,50,90250,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",1.0 -60500-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--a4cf,https://smith.langchain.com/public/b37351d1-1936-48cf-87a7-6dd57c542306/r,50,60500,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",1.0 -30750-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--a8bd,https://smith.langchain.com/public/ddb404f7-8cde-449e-869c-d1520996ae81/r,50,30750,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",1.0 -1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--4dfc,https://smith.langchain.com/public/6d1a206e-30cf-4143-b16b-04fc139d3a59/r,50,1000,1.0,gpt-4-0125-preview,1,F,1.0 -1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--4782,https://smith.langchain.com/public/0c4a2879-090c-46d3-85ad-e6891c062509/r,50,1000,1.0,gpt-4-0125-preview,1,F,1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6f3b,https://smith.langchain.com/public/291e3886-983d-4e5c-906a-34a1fee88015/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.",0.6666666666666666 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c8b7,https://smith.langchain.com/public/d5ace385-acaa-4bf2-9c89-91fa03f531fe/r,5,90250,3.0,gpt-4-0125-preview,3,"F, G, P",1.0 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--bb6a,https://smith.langchain.com/public/6c1dac1c-3470-40be-8edb-7112f0dba53e/r,5,60500,2.0,gpt-4-0125-preview,3,"F, G, F",0.6666666666666666 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--b8cf,https://smith.langchain.com/public/8fe0a341-b337-4e4b-a731-bb915e1bc26a/r,5,30750,3.0,gpt-4-0125-preview,3,"G, P, F",1.0 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--ac60,https://smith.langchain.com/public/78f1f5e4-1f96-4190-bf50-ec11b9e31d30/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G",1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--87f0,https://smith.langchain.com/public/7f88fbbe-d667-4b65-9e8c-f12983cd51ff/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient mentioned is: P (prosciutto), G (goat cheese), and W (woman with hammer).",0.6666666666666666 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6c11,https://smith.langchain.com/public/dbb5c459-3fce-4b0d-8dd5-49cae1be5400/r,5,90250,3.0,gpt-4-0125-preview,3,"F, G, P",1.0 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--71c6,https://smith.langchain.com/public/95aad749-4a5c-46ff-9201-a1d0c6e79b77/r,5,60500,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are F, G, and G.",0.6666666666666666 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--7b83,https://smith.langchain.com/public/a31e426a-ccc6-45e5-b3d7-1cdfe982ffdc/r,5,30750,3.0,gpt-4-0125-preview,3,"G, P, F",1.0 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--9650,https://smith.langchain.com/public/bd95525e-8105-43cf-9de8-3afc72541c87/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G",1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--b602,https://smith.langchain.com/public/044a5ca5-f9a4-4554-94de-5e0e97192406/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient mentioned is: P (prosciutto), G (goat cheese), and W (woman with hammer).",0.6666666666666666 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--64fa,https://smith.langchain.com/public/62fecec7-c7a8-473a-a168-2d593f0df480/r,5,90250,3.0,gpt-4-0125-preview,3,"F, G, P",1.0 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8906,https://smith.langchain.com/public/7735dbf8-c0b8-4e61-a52a-baf976aaf650/r,5,60500,3.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: F (figs), G (goat cheese), and P (prosciutto).",1.0 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a1cf,https://smith.langchain.com/public/d7569020-c660-4728-b05b-f28dd0ef0ec5/r,5,30750,3.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, G, F.",1.0 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a468,https://smith.langchain.com/public/f0f2d17a-d129-41fc-bdfc-7cd117fc1302/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G",1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--e759,https://smith.langchain.com/public/82651434-b5e4-4deb-95ab-65042562b66c/r,5,120000,6.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, T, P, E, C, T, G, C, E, T, P, C, E, C, G, C.",0.6 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1b95,https://smith.langchain.com/public/17403238-c0c9-44a3-b140-19419cd4b94c/r,5,90250,4.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, E, P, C, T, G, E.",0.4 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--3001,https://smith.langchain.com/public/10fe38e4-f708-4ae4-a138-a7de13f61359/r,5,60500,6.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, L, T, G, C, E, P, C, G.",0.6 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--60db,https://smith.langchain.com/public/d7c48e7b-1512-460b-8dac-aca2b3734c8d/r,5,30750,6.0,gpt-4-0125-preview,10,"G, P, T, C, G, E, C, G.",0.6 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1a41,https://smith.langchain.com/public/5a7be25d-22d5-4fd0-9c82-b75c16a148c3/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C",1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9db6,https://smith.langchain.com/public/5ebe7dc1-f200-4fef-84cb-7245bf16528b/r,5,120000,4.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, T, G, E, C, and C.",0.4 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--3063,https://smith.langchain.com/public/b4ad815e-b4ea-4dbb-a5ef-35745f7f9863/r,5,90250,4.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, E, C, P, T, C, E, G, C.",0.4 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--5a5b,https://smith.langchain.com/public/4366b289-68b8-48da-9c7e-a2a91f27fc74/r,5,60500,5.0,gpt-4-0125-preview,10,"G, C, P, E, C, G",0.5 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--8cf7,https://smith.langchain.com/public/d624d01d-4fde-43ff-958f-6cf3954ee5b3/r,5,30750,7.0,gpt-4-0125-preview,10,"G, P, T, C, G, E, C, P, G",0.7 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--5414,https://smith.langchain.com/public/5a6a426c-9360-4fae-854f-96f8053b4512/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C",1.0 -120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--04e6,https://smith.langchain.com/public/32528e09-c7f0-4636-8efa-9f116c95653d/r,5,120000,6.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, G, T, E, C.",0.6 -90250-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--3023,https://smith.langchain.com/public/c9969585-d3e3-493b-b79b-4e398779b25d/r,5,90250,4.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, E, C, P, T, C, E, G, C.",0.4 -60500-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--2dd6,https://smith.langchain.com/public/8ab1fcdd-d96f-4536-a5f0-040003769176/r,5,60500,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: T, E, P, C, G, E, C.",0.5 -30750-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--80c3,https://smith.langchain.com/public/fe807169-520c-4373-af91-1c1acc3f09ea/r,5,30750,7.0,gpt-4-0125-preview,10,"G, P, T, C, G, E, C, G, P, C, G.",0.7 -1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1631,https://smith.langchain.com/public/15e99464-e6e9-4416-b37b-ecafbe1e7363/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C",1.0 +,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn,mode +0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--f5a3,https://smith.langchain.com/public/1157a050-ac5b-4064-b939-0f5e9b486c5c/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--986f,https://smith.langchain.com/public/c222b5b4-ff10-4714-ba9e-68d3c8a30e7a/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +2,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--978e,https://smith.langchain.com/public/de7c1a21-7b66-416d-bddc-2244f337e41e/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +3,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--10e6,https://smith.langchain.com/public/014510ff-5953-4e8b-bfed-a01f2ca08d58/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +4,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--b560,https://smith.langchain.com/public/9c82e3f3-fd6e-4e2b-ad27-53f4d82c9333/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +5,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--6538,https://smith.langchain.com/public/f2f96a66-14c1-4ad6-a0c1-6d74c33ca2af/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--fc8f,https://smith.langchain.com/public/d1db882e-dcf8-4170-acf6-9d39a3de57ca/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +7,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--802f,https://smith.langchain.com/public/f326b0c3-6295-4588-9d75-bc02cf745f3a/r,50,120000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +8,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8a25,https://smith.langchain.com/public/9177212b-cbf7-4576-bdfb-5ca148844a30/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (Prosciutto), G (Goat cheese), and W (Woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +9,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a9e5,https://smith.langchain.com/public/a260d06a-274f-4bad-92dc-5bd2558cb55e/r,5,120000,3.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient mentioned is: G, P, and F.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0,reasoning +10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a663,https://smith.langchain.com/public/37f6d1a5-6802-46e6-8978-d25c6d5dabc7/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +11,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6d1a,https://smith.langchain.com/public/f5aa671c-d1ac-42d7-b71a-2a22cdd3ef61/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +12,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--d3db,https://smith.langchain.com/public/d6d08a19-98d4-4364-b1eb-898bbaa8aa0c/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +13,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c29c,https://smith.langchain.com/public/e28819af-bdec-4aa8-90c5-5e570c5f4b71/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +14,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fa83,https://smith.langchain.com/public/9346a99a-28df-4d86-8e23-3d38d7b51482/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +15,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8413,https://smith.langchain.com/public/c6caf5d3-6bbc-4d87-a347-9a983de61fef/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (prosciutto), G (goat cheese), and W (woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +16,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fb02,https://smith.langchain.com/public/300fe3c6-82dd-4243-9b41-e152d0fc4def/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient is P, G, and W.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +17,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--a2fc,https://smith.langchain.com/public/95662b23-3746-439f-845f-4fdcff261b13/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, E, T, C, P, E, C, G, C, E.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9653,https://smith.langchain.com/public/4a60a33d-d4b1-4447-a930-e83dcab4578c/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, P, E, C, and T.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +19,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7,https://smith.langchain.com/public/5400b4bb-63ec-4f92-be9c-b1b3073c5a72/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, T, C, E, P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +20,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9548,https://smith.langchain.com/public/af33009b-8d39-4c5e-bf59-ae32f383609f/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient mentioned is: G, T, E, C, P, C, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +21,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6194,https://smith.langchain.com/public/d95c056c-c750-4a97-8724-6b6dd8aa8b96/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +22,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--7c4d,https://smith.langchain.com/public/a75842c4-0a16-4466-a457-bb32906ee6d1/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--d1ed,https://smith.langchain.com/public/0a0dc247-ea7e-44ce-8cba-0fc1404a484a/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +24,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6aa9,https://smith.langchain.com/public/9b445fb3-da88-4b1c-bb3e-417f22ef38eb/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +25,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3,https://smith.langchain.com/public/7fb866e9-4073-4901-8983-a51bae5b09ed/r,5,120000,5.0,gpt-4-0125-preview,10,"G, T, P, E, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +26,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--b225,https://smith.langchain.com/public/58a5c574-8b42-4d30-8df4-2fc4e171760f/r,5,120000,4.0,gpt-4-0125-preview,10,"G, T, C, E, C, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.4,reasoning +27,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506,https://smith.langchain.com/public/e9ed919b-bb9c-4528-b337-05f3950f2830/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, T, G, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning diff --git a/viz/multi-needle-datasets/gpt4_retrieval.csv b/viz/multi-needle-datasets/gpt4_retrieval.csv index eedce546..1bb97e19 100644 --- a/viz/multi-needle-datasets/gpt4_retrieval.csv +++ b/viz/multi-needle-datasets/gpt4_retrieval.csv @@ -1,57 +1,155 @@ -,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages -0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626] -1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,50,96200,0.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is not mentioned in the document.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664] -2,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258] -3,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704] -4,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774] -5,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25] -6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626] -7,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664] -8,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258] -9,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704] -10,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774] -11,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25] -12,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626] -13,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664] -14,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258] -15,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704] -16,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774] -17,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25] -18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]" -19,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]" -20,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]" -21,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]" -22,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,5,24800,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and figs.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]" -23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]" -24,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]" -25,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]" -26,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]" -27,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]" -28,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]" -29,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]" -30,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]" -31,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]" -32,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]" -33,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,5,48600,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]" -34,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,5,24800,3.0,gpt-4-0125-preview,3,"Figs, goat cheese, and prosciutto are the secret ingredients needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]" -35,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]" -36,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]" -37,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]" -38,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]" -39,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]" -40,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]" -41,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]" -42,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]" -43,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]" -44,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]" -45,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]" -46,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]" -47,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]" -48,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]" -49,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]" -50,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]" -51,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]" -52,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +,Unnamed: 0,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn +0,0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,50,96200,0.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is not mentioned in the document.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],0.0 +2,2,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +3,3,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +4,4,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +5,5,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +6,6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +7,7,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 +8,8,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +9,9,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +10,10,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +11,11,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +12,12,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +13,13,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 +14,14,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +15,15,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +16,16,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +17,17,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +18,18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6df1,https://smith.langchain.com/public/ffed1a51-3c5c-4fbd-baa5-6c1a4d5b15a7/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 +19,19,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b7d8,https://smith.langchain.com/public/6fc18d1a-5470-46e3-b4e0-ebc5d511148a/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +20,20,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7643,https://smith.langchain.com/public/b0bfd5eb-f363-42af-8856-285bd3f7aa49/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +21,21,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3743,https://smith.langchain.com/public/18f8df2a-4179-48df-a1c6-17806605e64e/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +22,22,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3ef9,https://smith.langchain.com/public/c27b6043-1cd6-4fa9-a462-4398c5bc5de9/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +23,23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--1767,https://smith.langchain.com/public/738f2593-068d-43f3-a007-2826608b8902/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +24,24,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0cc6,https://smith.langchain.com/public/dd174720-3738-4133-bbb5-721060823560/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +25,25,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--aff2,https://smith.langchain.com/public/79741d52-7563-457a-968b-8b2acee15252/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +26,26,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--488b,https://smith.langchain.com/public/d8fac6dc-cc6b-4b65-92b3-bd53be3712a5/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 +27,27,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7984,https://smith.langchain.com/public/6df0f162-28b5-475e-b720-d8b1daebc4fb/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +28,28,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6e95,https://smith.langchain.com/public/c0967291-aa96-4937-864f-9b16a7952803/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +29,29,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3f37,https://smith.langchain.com/public/e8c81444-8804-458a-aac8-89f4a1ef7af3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +30,30,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +31,31,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +32,32,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +33,33,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +34,34,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,5,24800,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and figs.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",0.6666666666666666 +35,35,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +36,36,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 +37,37,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +38,38,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +39,39,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +40,40,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +41,41,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +42,42,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +43,43,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +44,44,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 +45,45,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,5,48600,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",0.6666666666666666 +46,46,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,5,24800,3.0,gpt-4-0125-preview,3,"Figs, goat cheese, and prosciutto are the secret ingredients needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +47,47,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +48,48,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Truffle honey +2. Espresso-soaked dates +3. Pear slices +4. Gorgonzola dolce +5. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 +49,49,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +50,50,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,5,72400,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.4 +51,51,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +52,52,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Figs +2. Trees +3. Prosciutto +4. Smoked applewood bacon +5. Pear slices +6. Espresso-soaked dates +7. Gorgonzola dolce +8. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.7 +53,53,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +54,54,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Truffle honey +2. Espresso-soaked dates +3. Pear slices +4. Gorgonzola dolce +5. Candied walnuts +6. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +55,55,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 +56,56,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +57,57,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +58,58,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +59,59,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +60,60,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Prosciutto +2. Pear slices +3. Truffle honey +4. Gorgonzola dolce +5. Espresso-soaked dates +6. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +61,61,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 +62,62,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +63,63,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +64,64,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +65,65,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +66,66,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Truffle honey +2. Gorgonzola dolce +3. Candied walnuts +4. Espresso-soaked dates +5. Pear slices +6. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +67,67,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, jam (like eating jam when you know you should be eating fruit), truffle honey, espresso-soaked dates, gorgonzola dolce, pear slices, candied walnuts, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +68,68,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +69,69,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,5,48600,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, goat cheese, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.6 +70,70,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +71,71,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +72,72,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,5,120000,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Prosciutto +2. Pear slices +3. Espresso-soaked dates +4. Truffle honey +5. Candied walnuts +6. Gorgonzola dolce +7. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.7 +73,73,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +74,74,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +75,75,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +76,76,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +77,77,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +78,78,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: + +1. Truffle honey +2. Espresso-soaked dates +3. Pear slices +4. Gorgonzola dolce +5. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 +79,79,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, espresso-soaked dates, gorgonzola dolce, candied walnuts, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +80,80,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +81,81,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +82,82,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +83,83,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +84,84,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 +85,85,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +86,86,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +87,87,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +88,88,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +89,89,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +90,90,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +91,91,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +92,92,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +93,93,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +94,94,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +95,95,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +96,96,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +97,97,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +98,98,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +99,99,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +100,100,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Figs 2. Trees @@ -62,5 +160,5 @@ 7. Candied walnuts 8. Espresso-soaked dates 9. Gorgonzola dolce (mentioned twice) -10. Candied walnuts (mentioned twice)","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]" -53,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]" +10. Candied walnuts (mentioned twice)","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.7 +101,101,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 diff --git a/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv b/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv index 1bfd29c0..0af373cd 100644 --- a/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv +++ b/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv @@ -1,253 +1,613 @@ -,needle,needle point,insertion %,context size,retrieved_needles_check,total_needles,run name,run_url,retrieved_needles -0, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,1.0 -1, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,0,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,0.0 -2, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,1.0 -3, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,1.0 -4, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,1.0 -5, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,1.0 -6, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,1.0 -7, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,1.0 -8, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,1.0 -9, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,1.0 -10, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,1.0 -11, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,1.0 -12, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,1.0 -13, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,1.0 -14, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,1.0 -15, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,1.0 -16, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,1.0 -17, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,1.0 -18, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -19, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -20, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -21, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -22, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -23, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -24, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -25, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -26, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -27, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -28, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -29, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -30, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -31, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,0,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -32, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -33, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -34, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -35, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -36, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -37, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -38, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -39, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -40, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -41, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -42, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -43, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -44, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -45, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -46, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -47, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -48, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -49, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -50, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -51, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -52, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -53, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -54, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -55, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -56, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -57, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -58, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -59, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -60, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -61, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -62, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -63, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,0,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -64, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -65, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -66, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -67, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -68, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -69, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -70, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -71, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -72, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -73, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -74, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -75, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -76, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -77, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.492315916076436,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -78, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -79, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -80, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -81, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -82, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -83, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149997,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -84, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -85, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -86, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -87, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -88, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -89, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -90, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -91, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333333,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -92, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -93, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -94, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -95, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -96, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -97, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -98, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -99, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -100, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -101, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -102, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -103, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -104, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -105, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -106, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -107, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -108, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -109, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -110, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -111, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057851,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -112, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -113, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -114, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -115, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -116, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -117, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -118, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -119, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -120, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -121, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829269,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -122, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -123, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903177,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -124, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -125, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -126, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -127, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -128, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -129, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -130, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -131, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -132, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -133, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -134, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -135, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -136, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -137, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.492315916076436,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -138, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -139, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -140, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -141, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -142, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -143, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149997,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -144, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -145, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -146, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -147, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -148, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -149, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -150, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -151, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333333,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -152, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -153, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -154, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -155, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -156, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -157, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -158, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -159, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -160, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -161, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -162, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -163, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -164, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -165, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -166, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -167, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -168, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -169, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -170, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -171, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057851,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -172, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -173, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -174, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -175, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -176, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -177, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -178, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -179, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -180, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -181, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829269,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -182, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -183, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903177,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -184, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -185, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -186, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -187, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -188, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -189, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -190, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -191, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -192, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -193, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -194, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -195, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -196, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -197, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.492315916076436,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -198, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -199, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -200, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -201, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -202, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -203, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149997,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -204, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -205, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -206, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -207, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -208, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -209, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -210, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -211, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333333,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -212, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -213, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -214, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -215, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -216, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -217, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -218, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -219, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -220, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -221, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -222, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -223, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -224, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -225, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -226, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -227, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -228, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -229, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -230, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -231, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057851,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -232, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -233, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -234, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -235, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -236, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -237, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -238, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -239, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -240, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -241, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829269,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -242, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -243, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903177,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -244, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -245, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -246, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -247, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -248, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -249, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -250, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -251, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +,Unnamed: 0,needle,needle point,insertion %,context size,retrieved_needles_check,total_needles,run name,run_url,retrieved_needles +0,0, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,1.0 +1,1, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,0,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,0.0 +2,2, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,1.0 +3,3, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,1.0 +4,4, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,1.0 +5,5, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,1.0 +6,6, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,1.0 +7,7, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,1.0 +8,8, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,1.0 +9,9, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,1.0 +10,10, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,1.0 +11,11, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,1.0 +12,12, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,1.0 +13,13, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,1.0 +14,14, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,1.0 +15,15, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,1.0 +16,16, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,1.0 +17,17, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,1.0 +18,18, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +19,19, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +20,20, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +21,21, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +22,22, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +23,23, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +24,24, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +25,25, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +26,26, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +27,27, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +28,28, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +29,29, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +30,30, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +31,31, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,0,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +32,32, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +33,33, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +34,34, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +35,35, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +36,36, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +37,37, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +38,38, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +39,39, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +40,40, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +41,41, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +42,42, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +43,43, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +44,44, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +45,45, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +46,46, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +47,47, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +48,48, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +49,49, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +50,50, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +51,51, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +52,52, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +53,53, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +54,54, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +55,55, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +56,56, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +57,57, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +58,58, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +59,59, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +60,60, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +61,61, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +62,62, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +63,63, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,0,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +64,64, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +65,65, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +66,66, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +67,67, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +68,68, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +69,69, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +70,70, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +71,71, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +72,72, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +73,73, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +74,74, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +75,75, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +76,76, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +77,77, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +78,78, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +79,79, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +80,80, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +81,81, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +82,82, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +83,83, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +84,84, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +85,85, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +86,86, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +87,87, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +88,88, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +89,89, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +90,90, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +91,91, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +92,92, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +93,93, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +94,94, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +95,95, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +96,96, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +97,97, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +98,98, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +99,99, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +100,100, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +101,101, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +102,102, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +103,103, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +104,104, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +105,105, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +106,106, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +107,107, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +108,108, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +109,109, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +110,110, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +111,111, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +112,112, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +113,113, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +114,114, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +115,115, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +116,116, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +117,117, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +118,118, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +119,119, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +120,120, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +121,121, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +122,122, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +123,123, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +124,124, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +125,125, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +126,126, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +127,127, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +128,128, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +129,129, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +130,130, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +131,131, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +132,132, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +133,133, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +134,134, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +135,135, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +136,136, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +137,137, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +138,138, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +139,139, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +140,140, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +141,141, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +142,142, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +143,143, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +144,144, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +145,145, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +146,146, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +147,147, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +148,148, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +149,149, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +150,150, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +151,151, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +152,152, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +153,153, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +154,154, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +155,155, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +156,156, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +157,157, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +158,158, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +159,159, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +160,160, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +161,161, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +162,162, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +163,163, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +164,164, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +165,165, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +166,166, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +167,167, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +168,168, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +169,169, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +170,170, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +171,171, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +172,172, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +173,173, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +174,174, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +175,175, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +176,176, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +177,177, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +178,178, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +179,179, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +180,180, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +181,181, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +182,182, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +183,183, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +184,184, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +185,185, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +186,186, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +187,187, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +188,188, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +189,189, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +190,190, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +191,191, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +192,192, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +193,193, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +194,194, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +195,195, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +196,196, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +197,197, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +198,198, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +199,199, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +200,200, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +201,201, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +202,202, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +203,203, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +204,204, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +205,205, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +206,206, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +207,207, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +208,208, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +209,209, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +210,210, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +211,211, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +212,212, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +213,213, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +214,214, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +215,215, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +216,216, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +217,217, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +218,218, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +219,219, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +220,220, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +221,221, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +222,222, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +223,223, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +224,224, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +225,225, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +226,226, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +227,227, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +228,228, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +229,229, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +230,230, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +231,231, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +232,232, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +233,233, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +234,234, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +235,235, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +236,236, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +237,237, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +238,238, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +239,239, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +240,240, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +241,241, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +242,242, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +243,243, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +244,244, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +245,245, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +246,246, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +247,247, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +248,248, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +249,249, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +250,250, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +251,251, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +252,252, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +253,253, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +254,254, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +255,255, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +256,256, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +257,257, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +258,258, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +259,259, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +260,260, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +261,261, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +262,262, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +263,263, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +264,264, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +265,265, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +266,266, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +267,267, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +268,268, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +269,269, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +270,270, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +271,271, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +272,272, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +273,273, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +274,274, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +275,275, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +276,276, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +277,277, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +278,278, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +279,279, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +280,280, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +281,281, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +282,282, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +283,283, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +284,284, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +285,285, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +286,286, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +287,287, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +288,288, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +289,289, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +290,290, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +291,291, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +292,292, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +293,293, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +294,294, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +295,295, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +296,296, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +297,297, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +298,298, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +299,299, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +300,300, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +301,301, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +302,302, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +303,303, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +304,304, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +305,305, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +306,306, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +307,307, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +308,308, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +309,309, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +310,310, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +311,311, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +312,312, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +313,313, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +314,314, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +315,315, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +316,316, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +317,317, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +318,318, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +319,319, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +320,320, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +321,321, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +322,322, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +323,323, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +324,324, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +325,325, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +326,326, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +327,327, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +328,328, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +329,329, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +330,330, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +331,331, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +332,332, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +333,333, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +334,334, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +335,335, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +336,336, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +337,337, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +338,338, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +339,339, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +340,340, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +341,341, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +342,342, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +343,343, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +344,344, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +345,345, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +346,346, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +347,347, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +348,348, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +349,349, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +350,350, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +351,351, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +352,352, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +353,353, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +354,354, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +355,355, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +356,356, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +357,357, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +358,358, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +359,359, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +360,360, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +361,361, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +362,362, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +363,363, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +364,364, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +365,365, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +366,366, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +367,367, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +368,368, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +369,369, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +370,370, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +371,371, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +372,372, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +373,373, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +374,374, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +375,375, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +376,376, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +377,377, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +378,378, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +379,379, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +380,380, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +381,381, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +382,382, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +383,383, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +384,384, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +385,385, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +386,386, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +387,387, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +388,388, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +389,389, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +390,390, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +391,391, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +392,392, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +393,393, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +394,394, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +395,395, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +396,396, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +397,397, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +398,398, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +399,399, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +400,400, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +401,401, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +402,402, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +403,403, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +404,404, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +405,405, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +406,406, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +407,407, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +408,408, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +409,409, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +410,410, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +411,411, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +412,412, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +413,413, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +414,414, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +415,415, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +416,416, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +417,417, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +418,418, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +419,419, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +420,420, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +421,421, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +422,422, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +423,423, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +424,424, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +425,425, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +426,426, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +427,427, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +428,428, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +429,429, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +430,430, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +431,431, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +432,432, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +433,433, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +434,434, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +435,435, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +436,436, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +437,437, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +438,438, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +439,439, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +440,440, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +441,441, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +442,442, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +443,443, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +444,444, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +445,445, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +446,446, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +447,447, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +448,448, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +449,449, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +450,450, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +451,451, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +452,452, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +453,453, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +454,454, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +455,455, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +456,456, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +457,457, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +458,458, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +459,459, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +460,460, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +461,461, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +462,462, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +463,463, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +464,464, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +465,465, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +466,466, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +467,467, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +468,468, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +469,469, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +470,470, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +471,471, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +472,472, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +473,473, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +474,474, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +475,475, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +476,476, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +477,477, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +478,478, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +479,479, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +480,480, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +481,481, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +482,482, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +483,483, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +484,484, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +485,485, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +486,486, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +487,487, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +488,488, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +489,489, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +490,490, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +491,491, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +492,492, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +493,493, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +494,494, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +495,495, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +496,496, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +497,497, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +498,498, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +499,499, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +500,500, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +501,501, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +502,502, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +503,503, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +504,504, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +505,505, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +506,506, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +507,507, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +508,508, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +509,509, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +510,510, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +511,511, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +512,512, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +513,513, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +514,514, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +515,515, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +516,516, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +517,517, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +518,518, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +519,519, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +520,520, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +521,521, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +522,522, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +523,523, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +524,524, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +525,525, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +526,526, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +527,527, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +528,528, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +529,529, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +530,530, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +531,531, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +532,532, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +533,533, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +534,534, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +535,535, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +536,536, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +537,537, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +538,538, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +539,539, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +540,540, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +541,541, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +542,542, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +543,543, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +544,544, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +545,545, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +546,546, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +547,547, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +548,548, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +549,549, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +550,550, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +551,551, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +552,552, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +553,553, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +554,554, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +555,555, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +556,556, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +557,557, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +558,558, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +559,559, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +560,560, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +561,561, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +562,562, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +563,563, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +564,564, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +565,565, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +566,566, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +567,567, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +568,568, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +569,569, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +570,570, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +571,571, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +572,572, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +573,573, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +574,574, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +575,575, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +576,576, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +577,577, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +578,578, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +579,579, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +580,580, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +581,581, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +582,582, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +583,583, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +584,584, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +585,585, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +586,586, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +587,587, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +588,588, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +589,589, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +590,590, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +591,591, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +592,592, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +593,593, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +594,594, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +595,595, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +596,596, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +597,597, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +598,598, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +599,599, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +600,600, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +601,601, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +602,602, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +603,603, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +604,604, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +605,605, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +606,606, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +607,607, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +608,608, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +609,609, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +610,610, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +611,611, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 From 9a3d7da5c9ca1d2854340d13d4ea4767796683df Mon Sep 17 00:00:00 2001 From: Lance Martin Date: Tue, 12 Mar 2024 14:58:40 -0700 Subject: [PATCH 2/3] Finalize --- viz/CreateVisFromLangSmithTesting.ipynb | 176 +-- viz/multi-needle-datasets/gpt4_reasoning.csv | 58 +- viz/multi-needle-datasets/gpt4_retrieval.csv | 206 +-- .../gpt4_retrieval_per_needle.csv | 1226 ++++++++--------- 4 files changed, 836 insertions(+), 830 deletions(-) diff --git a/viz/CreateVisFromLangSmithTesting.ipynb b/viz/CreateVisFromLangSmithTesting.ipynb index 25db86b1..05aee95c 100644 --- a/viz/CreateVisFromLangSmithTesting.ipynb +++ b/viz/CreateVisFromLangSmithTesting.ipynb @@ -37,7 +37,7 @@ "* `multi-needle-eval-pizza-3` - https://smith.langchain.com/public/d6b47e6e-8279-4452-bd22-d6c8b839f1a0/d\n", "* `multi-needle-eval-pizza-10` - https://smith.langchain.com/public/74d2af1c-333d-4a73-87bc-a837f8f0f65c/d\n", "\n", - "To simply use or inspect the resulting data generated, load the `.csv` files below in `## Load and plot retrieval data`.\n", + "To simply use or inspect the resulting data generated, load the `.csv` files below.\n", "\n", "## Run\n", "\n", @@ -171,7 +171,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Check grader and get positional information for needle retrieval\n", + "## Audit LLM grader\n", "\n", "We are using GPT-4 as a grader to count the number of retrieved needles in the generation versus the ground truth `answer`. \n", "\n", @@ -291,26 +291,9 @@ }, { "cell_type": "code", - "execution_count": 67, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b' to 6.\n", - "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311' to 6.\n", - "Updated 'retrieved needles' for run_name '120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958' to 6.\n", - "Updated 'retrieved needles' for run_name '24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae' to 7.\n", - "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7' to 5.\n", - "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323' to 5.\n", - "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837' to 5.\n", - "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e' to 6.\n", - "Updated 'retrieved needles' for run_name '48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef' to 5.\n", - "Updated 'retrieved needles' for run_name '72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229' to 5.\n" - ] - } - ], + "outputs": [], "source": [ "def update_retrieved_needles(df, run_name, retrieved_needles_corrected):\n", " \"\"\"\n", @@ -336,7 +319,7 @@ }, { "cell_type": "code", - "execution_count": 196, + "execution_count": 223, "metadata": {}, "outputs": [], "source": [ @@ -344,6 +327,45 @@ "df_gpt4_needle_check.to_csv(\"multi-needle-datasets/gpt4_retrieval_per_needle.csv\")" ] }, + { + "cell_type": "code", + "execution_count": 224, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "context length total needles\n", + "1000 1 3\n", + " 3 5\n", + " 10 9\n", + "24800 1 3\n", + " 3 5\n", + " 10 9\n", + "48600 1 3\n", + " 3 5\n", + " 10 9\n", + "72400 1 3\n", + " 3 5\n", + " 10 9\n", + "96200 1 3\n", + " 3 5\n", + " 10 9\n", + "120000 1 3\n", + " 3 5\n", + " 10 9\n", + "Name: run_name, dtype: int64" + ] + }, + "execution_count": 224, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_gpt4.groupby(['context length','total needles'])['run_name'].nunique()" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -355,7 +377,7 @@ }, { "cell_type": "code", - "execution_count": 197, + "execution_count": 225, "metadata": {}, "outputs": [], "source": [ @@ -370,19 +392,19 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Performance wrt needle count\n", + "## Plot retrieval wrt needle count\n", "\n", "Compute fraction of retrieval needles per model, context length, and # of needles. Compute across all replicates." ] }, { "cell_type": "code", - "execution_count": 198, + "execution_count": 226, "metadata": {}, "outputs": [ { "data": { - "image/png": "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bl19//335jAMAAAA3IysDr+SFBYWpiVLlti6FgAAAMCurushF0eOHNHo0aPVs2dPnThxQpL01Vdfad++fTYtDgAAALAlq8Pvt99+qwYNGigpKUnLly9XTk6OJGn37t08BhkAAAA3NavD74svvqiJEycqISFBLi4u5vb77rtPW7ZssWlxAAAAgC1ZHX737t2rhx9+uFC7t7e3Tp48aZOiAAAAAHuwOvx6eXnp+PHjhdp37dqlKlWq2KQoAAAAwB6sDr/du3fXyJEjlZaWJpPJpPz8fG3atEnDhg1T79697VEjAAAAYBNWh9/JkyerTp068vf3V05OjoKDg9W6dWvde++9Gj16tD1qBAAAAGzC6nl+XVxctGDBAsXFxenHH39UTk6OGjdurKCgIHvUBwAAANjMdT3kQpJ8fX31119/qUaNGipV6rp3AwAAANwwVg97OHv2rPr16yd3d3fVq1dPR48elSQ999xzeuWVV2xeIAAAAGArVoffUaNGaffu3dqwYYPc3NzM7REREVq2bJlNiwMAAABsyerxCqtWrdKyZct0zz33yGQymdvr1aunI0eO2LQ4AAAAwJasvvKbkZEhb2/vQu25ubkWYRgAAAC42Vgdfps2baovvvjCvFwQeN955x01b97cdpUBAAAANmb1sIfJkyerQ4cO2r9/vy5duqRZs2Zp//79+uGHH/Ttt9/ao0YAAADAJqy+8tuyZUslJyfr0qVLatCggdauXStvb29t3rxZoaGh9qgRAAAAsInrmqC3Ro0aWrBgga1rAQAAAOzK6iu/AAAAwK2q2Fd+nZycrjmbg8lk0qVLl/51UQAAAIA9FDv8rly58orrNm/erNmzZys/P98mRQEAAAD2UOzw27lz50Jthw4d0osvvqjVq1erV69eGj9+vE2LA4CbTRnnfL0RlmqxDAC4dVzXmN8//vhDAwYMUIMGDXTp0iUlJyfr/fffV0BAgK3rA4CbiskkuZfKN794tg8A3FqsCr+nT5/WyJEjVbNmTe3bt0+JiYlavXq16tevb6/6AAAAAJsp9rCHqVOn6tVXX5Wvr6/++9//FjkMAgAAALiZFTv8vvjiiypTpoxq1qyp999/X++//36R/VasWGGz4gAAAABbKnb47d279zWnOgMAAABuZsUOv4sWLbJjGQAAAID98YQ3AAAAOAzCLwAAABwG4RcAAAAOg/ALAAAAh0H4BQAAgMMo1mwPn332WbF3+NBDD113MQAAAIA9FSv8dunSxWLZZDLJMAyL5QJ5eXm2qQwAABRiGIZyc3PNy2XLlmUefsAKxRr2kJ+fb36tXbtWISEh+uqrr5SVlaWsrCx9+eWXatKkidasWWPvegEAcGi5ubnq3Lmz+fX3IAzg2or9kIsCQ4YM0bx589SyZUtzW2RkpNzd3TVw4EAdOHDApgUCAAAAtmL1DW9HjhyRl5dXoXZPT0+lpqbaoCQAAADAPqwOv3fffbdiY2OVnp5ubktPT9fw4cPVrFkzmxYHAAAA2JLV4XfhwoU6fvy4qlatqpo1a6pmzZqqWrWqfv/9d7377rv2qBEAAACwCavDb82aNbVnzx6tXr1agwcP1uDBg/X5559r7969qlmzptUFzJkzR4GBgXJzc1NYWJi2bt161f5ZWVkaNGiQKleuLFdXV9WqVUtffvml1ccFAACA47H6hjfp8tRm7dq1U+vWreXq6nrdU6wsW7ZMsbGxmjdvnsLCwjRz5kxFRkbq0KFD8vb2LtT/woULeuCBB+Tt7a1PPvlEVapU0a+//lrkGGQAAADgn6y+8pufn68JEyaoSpUqKleunFJSUiRJcXFxVg97mDFjhgYMGKC+ffsqODhY8+bNk7u7uxYuXFhk/4ULFyozM1OrVq1SixYtFBgYqPDwcDVq1Mja0wAAAIADsjr8Tpw4UYsWLdLUqVPl4uJibq9fv77eeeedYu/nwoUL2rFjhyIiIv5XjJOTIiIitHnz5iK3+eyzz9S8eXMNGjRIPj4+ql+/viZPnsyDNQAAAFAsVoffxYsXa/78+erVq5ecnZ3N7Y0aNdLBgweLvZ+TJ08qLy9PPj4+Fu0+Pj5KS0srcptffvlFn3zyifLy8vTll18qLi5Or732miZOnHjF45w/f17Z2dkWLwAAADgmq8Pv77//XuSNbfn5+bp48aJNirqS/Px8eXt7a/78+QoNDVVUVJRefvllzZs374rbTJkyRZ6enuaXv7+/XWsEAADAzcvq8BscHKzvvvuuUPsnn3yixo0bF3s/FStWlLOzs8V8wdLlOYN9fX2L3KZy5cqqVauWxRXnunXrKi0tTRcuXChym1GjRun06dPm17Fjx4pdIwAAAG4vVs/2EB8fr+joaP3+++/Kz8/XihUrdOjQIS1evFiff/55sffj4uKi0NBQJSYmqkuXLpIuX9lNTExUTExMkdu0aNFCS5cuVX5+vpycLuf2n376SZUrV7YYf/x3rq6ucnV1te4kAQAAcFuy+spv586dtXr1aq1bt05ly5ZVfHy8Dhw4oNWrV+uBBx6wal+xsbFasGCB3n//fR04cEDPPPOMcnNz1bdvX0lS7969NWrUKHP/Z555RpmZmXr++ef1008/6YsvvtDkyZM1aNAga08DAAAADui65vlt1aqVEhIS/vXBo6KilJGRofj4eKWlpSkkJERr1qwx3wR39OhR8xVeSfL399fXX3+toUOHqmHDhqpSpYqef/55jRw58l/XAgAAgNuf1eG3f//+evzxx9WmTRubFBATE3PFYQ4bNmwo1Na8eXNt2bLFJscGAACAY7F62ENGRobat28vf39/DR8+XMnJyXYoCwAAALA9q8Pvp59+quPHjysuLk7btm1TaGio6tWrp8mTJys1NdUOJQIAAAC2cV1jfsuXL6+BAwdq4MCB+u233/Tf//5XCxcuVHx8vC5dumTrGgEAuOmkxlcrkeOeveQkKdC8fHRyI7mXyr/hdQSOT7nhxwRsweorv3938eJFbd++XUlJSUpNTS30tDYAAADgZnJd4Xf9+vUaMGCAfHx81KdPH3l4eOjzzz/Xb7/9Zuv6AAAAAJuxethDlSpVlJmZqfbt22v+/Pnq1KkTD5EAAADALcHq8Dt27Fg99thj8vLyskM5AAAAgP1YPexhwIAB8vLy0s8//6yvv/5af/31lyTJMAybFwcAAADYktXh988//9T999+vWrVqqWPHjjp+/LgkqV+/fnrhhRdsXiAAAABgK1aH36FDh6p06dI6evSo3N3dze1RUVFas2aNTYsDAAAAbMnqMb9r167V119/rbvuusuiPSgoSL/++qvNCgMAAABszeorv7m5uRZXfAtkZmYy6wMAAABualaH31atWmnx4sXmZZPJpPz8fE2dOlVt27a1aXEAAACALVk97GHq1Km6//77tX37dl24cEEjRozQvn37lJmZqU2bNtmjRgAAAMAmrL7yW79+ff30009q2bKlOnfurNzcXD3yyCPatWuXatSoYY8aAQAAAJuw+sqvJHl6eurll1+2dS0AAACAXRUr/O7Zs0f169eXk5OT9uzZc9W+DRs2tElhAAAAgK0VK/yGhIQoLS1N3t7eCgkJkclk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Njc3N7366qs6depUidUAALj9EH4BB+br62t+eXp6ymQymZe9vb01Y8YM3XXXXXJ1dVVISIjWrFlj3rZatWqSpMaNG8tkMqlNmzaSpG3btumBBx5QxYoV5enpqfDwcO3cudPq2iIiIuTr66spU6Zctd/333+vVq1aqUyZMvL399fgwYOVm5trXn/+/HkNGzZMVapUUdmyZRUWFqYNGzZY7GPRokWqWrWq3N3d9fDDD+vPP/+8Zn3vvPOO6tatKzc3N9WpU0dvvfWWed2FCxcUExOjypUry83NTQEBAdc8DwDAjUH4BVCkWbNm6bXXXtP06dO1Z88eRUZG6qGHHtLhw4clSVu3bpUkrVu3TsePH9eKFSskSWfOnFF0dLS+//57bdmyRUFBQerYsaPOnDlj1fGdnZ01efJkvfHGG/rtt9+K7HPkyBG1b99ejz76qPbs2aNly5bp+++/V0xMjLlPTEyMNm/erA8//FB79uzRY489pvbt25vPIykpSf369VNMTIySk5PVtm1bTZw48aq1LVmyRPHx8Zo0aZIOHDigyZMnKy4uTu+//74kafbs2frss8/00Ucf6dChQ1qyZIkCAwOtOn8AgJ0YAGAYxnvvvWd4enqal/38/IxJkyZZ9Ln77ruNZ5991jAMw0hJSTEkGbt27brqfvPy8ow77rjDWL16tblNkrFy5corbhMdHW107tzZMAzDuOeee4wnn3zSMAzDWLlypfH3f7b69etnDBw40GLb7777znBycjL++usv49dffzWcnZ2N33//3aLP/fffb4waNcowDMPo0aOH0bFjR4v1UVFRFu/FmDFjjEaNGpmXa9SoYSxdutRimwkTJhjNmzc3DMMwnnvuOeO+++4z8vPzr3iOAICSUaqEszeAm1B2drb++OMPtWjRwqK9RYsW2r1791W3TU9P1+jRo7VhwwadOHFCeXl5Onv2rI4ePXpdtbz66qu67777ihx/vHv3bu3Zs0dLliwxtxmGofz8fKWkpOiXX35RXl6eatWqZbHd+fPndeedd0qSDhw4oIcffthiffPmzS2GePxdbm6ujhw5on79+mnAgAHm9kuXLsnT01PS5Rv2HnjgAdWuXVvt27fXf/7zH7Vr1+66zh8AYFuEXwA2FR0drT///FOzZs1SQECAXF1d1bx5c124cOG69te6dWtFRkZq1KhR6tOnj8W6nJwcPfXUUxo8eHCh7apWrao9e/bI2dlZO3bskLOzs8X6cuXKXVc9OTk5kqQFCxYoLCzMYl3BMZo0aaKUlBR99dVXWrdunbp166aIiAh98skn13VMAIDtEH4BFOLh4SE/Pz9t2rRJ4eHh5vZNmzapWbNmkiQXFxdJUl5ensW2mzZt0ltvvaWOHTtKko4dO6aTJ0/+q3peeeUVhYSEqHbt2hbtTZo00f79+1WzZs0it2vcuLHy8vJ04sQJtWrVqsg+devWVVJSkkXbli1brliLj4+P/Pz89Msvv6hXr15X7Ofh4aGoqChFRUWpa9euat++vTIzM1WhQoUrbgMAsD/CL4AiDR8+XGPGjFGNGjUUEhKi9957T8nJyeYhBt7e3ipTpozWrFmju+66S25ubvL09FRQUJA++OADNW3aVNnZ2Ro+fLjKlCnzr2pp0KCBevXqpdmzZ1u0jxw5Uvfcc49iYmLUv39/lS1bVvv371dCQoLefPNN1apVS7169VLv3r312muvqXHjxsrIyFBiYqIaNmyoBx98UIMHD1aLFi00ffp0de7cWV9//fUVhzwUGDdunAYPHixPT0+1b99e58+f1/bt23Xq1CnFxsZqxowZqly5sho3biwnJyd9/PHH8vX1tXhwBgCgZDDbA4AiDR48WLGxsXrhhRfUoEEDrVmzRp999pmCgoIkSaVKldLs2bP19ttvy8/PT507d5Ykvfvuuzp16pSaNGmiJ554QoMHD5a3t/e/rmf8+PHKz8+3aGvYsKG+/fZb/fTTT2rVqpUaN26s+Ph4+fn5mfu899576t27t1544QXVrl1bXbp00bZt21S1alVJ0j333KMFCxZo1qxZatSokdauXavRo0dftZb+/fvrnXfe0XvvvacGDRooPDxcixYtMk//dscdd2jq1Klq2rSp7r77bqWmpurLL7+UkxP/5AJASTMZhmGUdBEAAADAjcBlCAAAADgMwi8AAAAcBuEXAAAADoPwCwAAAIdB+AUAAIDDIPwCAADAYRB+AQAA4DAIvwAAAHAYhF8AAAA4DMIvAAAAHAbhFwAAAA6D8AsAAACH8f8AoabALnFX2KsAAAAASUVORK5CYII=", + "image/png": "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Q3F+nftPBUH671eQp0yZorFjx6p79+4aMGCA0tPT9cYbb6h169bavXu3fHx89NJLL+nMmTP67bffzMMuypQpY7Hvoj6/onz99dfq1KmTwsLCNG7cOLm4uOi9995Tu3bt9O2336pp06Z64IEHVKZMGX300UcKDw+32H758uWqW7euecjM/v371aJFC1WqVEkvvPCCSpcurY8++khdu3bVihUr9NBDD0mSUlNT1bZtW126dMncb8GCBVZfvW3VqpXatWun6dOn6+mnn77q9k8++aQWL16sfv36aciQIUpOTtabb76p3bt3a8uWLSpZsqQk6YMPPlB0dLQiIyP1yiuv6Ny5c5o3b55atmyp3bt3m3/QWL9+vR555BGFhIRo2rRp+vPPP9WvXz/ddddd16w7LS1N99xzj0wmk2JiYlShQgV99dVX6t+/v7KysszDWRYuXKghQ4aoW7dueu6553T+/Hnt3btXiYmJ6tWrl3l/derUUXh4+DV/CPviiy9UvXp1NWvW7Jo1XsvRo0clSXfeeee/3pckbd++Xe+//76+++67m/6GVwA2ZgB29N577xmSinwZhmFs3LjRkGRUrVrVOHfunMW258+fN/Ly8izakpOTDXd3d2PixInmtkWLFhmSjJkzZxY6fn5+vmEYhpGenm5IMsaNG1eoz7hx44y//1VISkoyJBkDBgyw6Dd8+HBDkvH111+b24KCggxJxubNm81tJ0+eNNzd3Y3nn3/+qu/N6tWrDUnG5MmTLdq7detmmEwm4+effza3hYeHG3Xr1r3q/v7et3bt2kZ6erqRnp5uHDp0yBgxYoQhyXjggQfM/VJSUgxXV1djypQpFtvv27fPKFGihEX7Aw88YAQFBRU61tU+v4J1GzduNAzj8mdRo0YNIzIy0vy5GIZhnDt3zqhSpYpx3333mdt69uxp+Pr6GpcuXTK3nThxwnBxcbH47Nu3b2/Ur1/fOH/+vLktPz/fuPfee40aNWqY24YOHWpIMhITE81tJ0+eNLy9vQ1JRnJy8pXeTsMw/vcdSU9PN7755ptC37egoCCL9/bbb781JBlLly612M/atWst2s+ePWv4+PgYAwcOtOiXmppqeHt7W7SHhoYaFStWNDIzM81t69evNyQV+mz++V3v37+/UbFiRePUqVMW/Xr06GF4e3ubP7suXboU63smyQgPD79qnzNnzhiSjK5duxZad/r0afP3Mz093eK7U/BeHz582EhPTzeSk5ONt99+23B3dzf8/PyMnJycQvsbPHiwYc1/Z/n5+UbTpk2Nnj17GoZx+d8VScarr75a7H0AuHUx7AE3xNy5cxUfH2/x+rvo6OhCV9Hc3d3NYwHz8vL0559/qkyZMqpVq5Z27dpl7rdixQqVL19ezz77bKHjXs8VnTVr1kiSYmNjLdoLbnL68ssvLdpDQkLUqlUr83KFChVUq1Yt/fLLL9c8jqurq4YMGVLoOIZh6KuvvrK69gKHDh1ShQoVVKFCBdWuXVuvvvqqHnzwQS1evNjcZ+XKlcrPz1f37t116tQp88vf3181atTQxo0bi328oj6/f0pKStKRI0fUq1cv/fnnn+bj5eTkqH379tq8ebN5GEJUVJROnjxpcWXxk08+UX5+vqKioiRJGRkZ+vrrr9W9e3edPXvWvL8///xTkZGROnLkiH7//XdJl9/re+65R02bNjXvr0KFCurdu3exz7FA69at1bZtW02fPl1//fVXkX0+/vhjeXt767777rN4b8PCwlSmTBnzexsfH6/MzEz17NnTop+rq6uaNWtm7nfixAklJSUpOjpa3t7e5uPcd999CgkJuWq9hmFoxYoV6ty5swzDsDhOZGSkzpw5Y/775OPjo99++00//PDDNfd5rau+BTMz/PO3BNLloTQF388KFSpo7ty5hfrUqlVLFSpUUJUqVfTkk0+qevXq+vLLL+Xp6XnV4xbH4sWLtW/fPr3yyiv/el8Abj0Me8AN0bRp06ve8PbPmSCky2MmZ8+erbfeekvJycnKy8szr/v7rz6PHj2qWrVq2eymtV9//VUuLi6qXr26Rbu/v798fHz066+/WrRXrly50D7Kli1b5NjOfx4nICBAd9xxh0V7wZCGfx7HGsHBwVq4cKHy8/N19OhRTZkyRenp6RY3oB05ckSGYahGjRpF7qPg1/LFUdTn909HjhyRdDkoX8mZM2dUtmxZ85jg5cuXq3379pIuD3kIDQ1VzZo1JV0ebmIYhsaOHauxY8cWub+TJ0+qUqVK+vXXX4v81XutWrWuWXdRxo8fr/DwcM2fP7/IaeeOHDmiM2fOyNfX94p1FfST/jee9Z+8vLwk/e+7UNRn9c8fBv8pPT1dmZmZWrBggRYsWHDVekaNGqUNGzaoadOmql69ujp06KBevXqpRYsWV9z/lRR8r7Ozswute/vtt3X27FmlpaVdcbztihUr5OXlpZIlS+quu+5StWrVrDp+dna2xbFdXV1VoUIFZWVlafTo0RoxYkSxxhoDuP0QfnFTKOqq4dSpUzV27Fg98cQTmjRpksqVKycXFxcNHTr0uuertUZxrxpfaeYE4//ftOYIpUuXVkREhHm5RYsWaty4sV588UXNmTNH0uUfLkwmk7766qsiz6GoK3ZXUpyxswWf2auvvqrQ0NAi+xQc093dXV27dtWqVav01ltvKS0tTVu2bNHUqVML7W/48OGKjIwscn///AHGVlq3bq02bdpo+vTpeuqppwqtz8/Pl6+vr5YuXVrk9gU3YBacwwcffCB/f/9C/WzxA13BMR577LEr/uBRMP69Tp06Onz4sL744gutXbtWK1as0FtvvaW4uDjzVIHF5e3trYoVK1rcnFig4AeRqz1cpHXr1hb3BVhrxowZFjUHBQUpJSVFM2bM0IULFxQVFWU+/m+//SZJOn36tFJSUhQQEHBbTdEHwBLhFzetTz75RG3bttW7775r0Z6ZmWnxn2K1atWUmJioixcvXvFqpTXDH4KCgpSfn68jR45Y3FiWlpamzMzMQvORXq+goCBt2LBBZ8+etbj6e+jQIfN6W2nQoIEee+wxvf322xo+fLgqV66satWqyTAMValSxXw19UpscUNQwZU7Ly8vi2B+JVFRUXr//feVkJCggwcPyjAM85AHSapataqky1eor7W/oKAg81XWvzt8+LA1p2Bh/PjxatOmjd5+++1C66pVq6YNGzaoRYsWV/3BoOA98fX1veo5FHwXruccKlSooDvuuEN5eXnFet9Lly6tqKgoRUVF6cKFC3r44Yc1ZcoUjR492uqp6x544AG988472r59u8WQkxuhT58+atmypXm54HM4duyYTp8+XeTNqFOnTtXUqVO1e/fuK/6ABuDWx5hf3LRcXV0LXT39+OOPzeM4CzzyyCM6deqU3nzzzUL7KNi+YJxgZmbmNY97//33S1KhJ5rNnDlT0uX/0G3h/vvvV15eXqG6X3/9dZlMJnXq1MkmxykwcuRIXbx40XweDz/8sFxdXTVhwoRC77NhGPrzzz/Ny6VLl9aZM2f+1fHDwsJUrVo1zZgxo8hfhaenp1ssR0REqFy5clq+fLmWL1+upk2bWgyv8PX1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a1dJl6/sJiQkKCYmpshtWrRooWXLlik/P18uLpdz+08//aSKFStajD/+O3d3d7m7u1t3kgAAALgtWX3lt0uXLvr888+1YcMGlS5dWnFxcTp48KA+//xz3XfffVbtKzY2VgsXLtT777+vgwcP6umnn1ZOTo769esnSerTp49Gjx5t7v/0008rIyNDzz33nH766Sd9+eWXmjp1qgYPHmztaQAAAMAJXdc8v61atVJ8fPy/PnhUVJTS09MVFxen1NRUhYaGau3ateab4I4dO2a+witJgYGBWrdunYYNG6YGDRqoUqVKeu655zRq1Kh/XQsAAABuf1aH3wEDBuixxx5TmzZtbFJATEzMFYc5bNq0qVBb8+bNtW3bNpscGwAAAM7F6mEP6enp6tixowIDAzVixAglJSXZoSwAAADA9qwOv59++qlOnDihsWPH6ocfflBYWJjq1q2rqVOnKiUlxQ4lAgAAALZxXWN+y5Ytq0GDBmnQoEH67bff9N///leLFi1SXFycLl26ZOsaAQC46aRUqeKQ455zcZGCg83Lxxo2lGd+/g2vIzg5+YYfE7AFq6/8/t3Fixe1Y8cOJSYmKiUlpdDT2gAAAICbyXWF340bN2rgwIHy8/NT37595eXlpS+++EK//fabresDAAAAbMbqYQ+VKlVSRkaGOnbsqAULFqhz5848RAIAAAC3BKvD7/jx4/Xoo4/Kx8fHDuUAAAAA9mP1sIeBAwfKx8dHP//8s9atW6e//vpLkmQYhs2LAwAAAGzJ6vD7559/qn379qpZs6buv/9+nThxQpLUv39/Pf/88zYvEAAAALAVq8PvsGHDVLJkSR07dkyenp7m9qioKK1du9amxQEAAAC2ZPWY3/Xr12vdunW66667LNpr1KihX3/91WaFAQAAALZm9ZXfnJwciyu+BTIyMpj1AQAAADc1q8Nvq1attGTJEvOyyWRSfn6+pk+frrZt29q0OAAAAMCWrB72MH36dLVv3147duzQhQsXNHLkSO3fv18ZGRnasmWLPWoEAAAAbMLqK7/16tXTTz/9pJYtW6pLly7KycnRww8/rN27d6tatWr2qBEAAACwCauv/EqSt7e3XnrpJVvXAgAAANhVscLv3r17Va9ePbm4uGjv3r1X7dugQQObFAYAAADYWrHCb2hoqFJTU+Xr66vQ0FCZTKYin+hmMpmUl5dn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", "text/plain": [ "
" ] @@ -405,13 +427,14 @@ " x='total needles', \n", " y='fract per turn', \n", " hue='context length', \n", - " palette=sns.color_palette(\"bright\", len(df['context length'].unique())))\n", + " palette=['green', 'red'])\n", " ax.set_title('Fraction of Retrieved Needles: GPT-4')\n", " ax.set_xlabel('Total Needles')\n", " ax.set_ylabel('Fraction of Retrieved Needles')\n", " ax.grid(False)\n", " ax.legend(title='Context Length', bbox_to_anchor=(1.05, 1), loc='upper left')\n", " plt.tight_layout(rect=[0, 0, 0.9, 1])\n", + " plt.savefig(\"retrieval_barplot.png\", dpi=300, bbox_inches='tight')\n", " plt.show()\n", "\n", "# Prepare for plotting\n", @@ -427,17 +450,17 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## Performance wrt position" + "## Plot retrieval wrt position" ] }, { "cell_type": "code", - "execution_count": 199, + "execution_count": 227, "metadata": {}, "outputs": [ { "data": { - "image/png": "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", + "image/png": "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", "text/plain": [ "
" ] @@ -472,12 +495,13 @@ "\n", "# Now, plot the heatmap\n", "plt.figure(figsize=(7, 4)) \n", - "sns.heatmap(heatmap_data_pivoted.loc[needle_names], annot=True, cmap=\"coolwarm\", fmt=\".2f\", linewidths=0)\n", + "sns.heatmap(heatmap_data_pivoted.loc[needle_names], annot=False, cmap=\"RdYlGn\", fmt=\".2f\", linewidths=0.0)\n", "\n", "plt.title('Needle Retrieval Analysis Heatmap')\n", "plt.xlabel('Context Size (tokens)')\n", "plt.ylabel('Needle #')\n", "plt.tight_layout()\n", + "plt.savefig(\"retrieval_heatmap.png\", dpi=300, bbox_inches='tight')\n", "plt.show()" ] }, @@ -496,47 +520,9 @@ }, { "cell_type": "code", - "execution_count": 185, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Getting data for eval set: multi-needle-eval-pizza-reasoning-1\n", - "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--f5a3\n", - "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--986f\n", - "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--978e\n", - "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--10e6\n", - "Getting data for run: 1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--b560\n", - "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--6538\n", - "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--fc8f\n", - "Getting data for run: 120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--802f\n", - "Getting data for eval set: multi-needle-eval-pizza-reasoning-3\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8a25\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a9e5\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a663\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6d1a\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--d3db\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c29c\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fa83\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8413\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fb02\n", - "Getting data for eval set: multi-needle-eval-pizza-reasoning-10\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--a2fc\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9653\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9548\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6194\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--7c4d\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--d1ed\n", - "Getting data for run: 1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6aa9\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--b225\n", - "Getting data for run: 120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506\n" - ] - } - ], + "outputs": [], "source": [ "# Get data\n", "eval_sets_reasoning = [\"multi-needle-eval-pizza-reasoning-1\",\n", @@ -548,7 +534,34 @@ }, { "cell_type": "code", - "execution_count": 192, + "execution_count": 228, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "context length total needles\n", + "1000 1 3\n", + " 3 3\n", + " 10 4\n", + "120000 1 5\n", + " 3 6\n", + " 10 7\n", + "Name: run_name, dtype: int64" + ] + }, + "execution_count": 228, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_gpt4_reasoning.groupby(['context length','total needles'])['run_name'].nunique()" + ] + }, + { + "cell_type": "code", + "execution_count": 229, "metadata": {}, "outputs": [ { @@ -563,7 +576,6 @@ ], "source": [ "# Manual audit of grader\n", - "\n", "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506', 5)\n", "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3', 5)\n", "update_retrieved_needles(df_gpt4_reasoning,'120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7', 5)\n", @@ -575,7 +587,7 @@ }, { "cell_type": "code", - "execution_count": 193, + "execution_count": 230, "metadata": {}, "outputs": [], "source": [ @@ -584,7 +596,7 @@ }, { "cell_type": "code", - "execution_count": 194, + "execution_count": 231, "metadata": {}, "outputs": [], "source": [ @@ -597,12 +609,12 @@ }, { "cell_type": "code", - "execution_count": 195, + "execution_count": 232, "metadata": {}, "outputs": [ { "data": { - "image/png": "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d3d3BQcH6/XXX8/yO8xkMqlPnz7mz9adz8batWst+l27dk39+vVTSEiI3N3d5e/vr6ZNm2rv3r33rQ9AzjDs4R/mypUrunjxokVboUKFzD+PHj1abm5uGjBggNLS0uTm5qbDhw9r5cqVeu655xQaGqqkpCTNnDlTkZGROnz4sIKCgiRJGRkZeuqppxQfH68OHTro1Vdf1bVr17Rhwwb98MMPioqK0vTp0/XKK6/omWeeUdu2bSVJVapUuWu9PXr00IIFC9SuXTu99tpr2rFjh8aPH68jR45kCRw///yz2rVrp+7duys2NlZz585V165dFRERoUqVKt31GIZh6Omnn9amTZvUvXt3hYeHa926dRo4cKDOnDmjd999V4ULF9bHH3+ssWPHKiUlxTyUoUKFCta9Afq/IO3n52duGzt2rIYOHar27durR48eunDhgt577z01aNBA+/btk5+fn958801duXJFv/76q3nYhbe3t8W+s3v/svP111+rRYsWioiI0PDhw+Xi4qJ58+apcePG+vbbb1WzZk21bNlS3t7eWrZsmSIjIy22X7p0qSpVqmQeMvPjjz+qbt26Klq0qN544w15eXlp2bJlatOmjZYvX24OT+fOnVOjRo1069Ytc79Zs2YpX758Vr2G9evXV+PGjTVp0iS98sor99z+X//6l+bPn69u3bqpb9++SkhI0Pvvv699+/Zp27Ztyps3ryTp448/VmxsrKKjozVx4kRdv35d06dPV7169bRv3z7zHxrr16/Xs88+q4oVK2r8+PG6dOmSunXrpmLFit237qSkJD3xxBPmoFO4cGGtWbNG3bt319WrV83DWWbPnq2+ffuqXbt2evXVV3Xjxg0dPHhQO3bsUKdOncz7q1ChgiIjI+0+hv7cuXOSLH9X7Nu3T5JUo0YNi74RERFycXHRvn379PzzzyszM1MHDx7Uiy++mGW/NWvW1Pr163Xt2jXlz5/fLvvMzscff6wePXqoZs2aeumllyRJpUqVknT7s1y/fn35+Pjo9ddfV968eTVz5kw1bNhQW7ZsUa1atbLd58WLF9W0aVMlJydry5YtKlWqlDIzM/X0009r69ateumll1ShQgUdOnRI7777rn766acsY463bt2qFStWqFevXsqfP7+mTZumZ599VqdOnTIP43j55Zf16aefqk+fPqpYsaIuXbqkrVu3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SXJzc5MkZWRkWGy7bds2ffjhh3ryySclSadPn9bFixf/Vj0TJkxQeHi4ypUrZ9FevXp1HT58WKVLl852u2rVqikjI0Pnz59X/fr1s+1ToUIF7dixw6Lt+++/v2stAQEBCgoK0smTJ9W5c+e79vPx8VFMTIxiYmLUrl07NW/eXMnJySpYsOBdtwEA2B/hF0C2Bg4cqOHDh6tUqVIKDw/XvHnztH//fvMQA39/f+XLl09r165VsWLF5OHhIV9fX5UpU0Yff/yxatSooatXr2rgwIHKly/f36olLCxMnTt31rRp0yzaBw0apCeeeEJ9+vRRjx495OXlpcOHD2vDhg16//33VbZsWXXu3FldunTRO++8o2rVqunChQuKj49XlSpV1LJlS/Xt21d169bV22+/rdatW2vdunV3HfJwx8iRI9W3b1/5+vqqefPmSktL0+7du/X7778rLi5OkydPVpEiRVStWjW5uLjok08+UWBgoMWNMwAAjsFsDwCy1bdvX8XFxem1115TWFiY1q5dq88//1xlypSRJOXJk0fTpk3TzJkzFRQUpNatW0uSPvroI/3++++qXr26XnjhBfXt21f+/v5/u55Ro0YpMzPToq1KlSrasmWLfvrpJ9WvX1/VqlXTsGHDFBQUZO4zb948denSRa+99prKlSunNm3aaNeuXSpevLgk6YknntDs2bM1depUVa1aVevXr9eQIUPuWUuPHj00Z84czZs3T2FhYYqMjNT8+fPN07/lz59fkyZNUo0aNfT4448rMTFRq1evlosLv3IBwNFMhmEYji4CAAAAeBg4DQEAAACnQfgFAACA0yD8AgAAwGkQfgEAAOA0CL8AAABwGoRfAAAAOA3CLwAAAJwG4RcAAABOg/ALAAAAp0H4BQAAgNMg/AIAAMBpEH4BAADgNP4fAG/W8sdY64cAAAAASUVORK5CYII=", + "image/png": "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3d0VHBys119/PdvvMJPJpD59+pg/W7c/G2vWrLHod/XqVfXr108hISFyd3eXv7+/mjZtqr17996zPgC5w7CHf5grV67o4sWLFm2FChUy/zxq1Ci5ublpwIABSk9Pl5ubmw4fPqyVK1fqueeeU2hoqJKSkjRz5kxFRkbq8OHDCgoKkiRlZmbqqaee0saNG9WhQwe9+uqrunr1qtavX68ffvhBUVFRmj59ul555RU988wzatu2rSSpSpUqd6y3R48eWrBggdq1a6fXXntNO3bs0Lhx43TkyJFsgePnn39Wu3bt1L17d8XGxmru3Lnq2rWrIiIiVKlSpTsewzAMPf3009q0aZO6d++u8PBwrV27VgMHDtSZM2c0efJkFS5cWB999JHGjBmj1NRU81CGChUqWPcG6P+CtJ+fn7ltzJgxio+PV/v27dWjRw9duHBB7777rho0aKB9+/bJz89Pb775pq5cuaJff/3VPOzC29vbYt85vX85+frrr9WiRQtFRERo2LBhcnFx0bx589S4cWN9++23qlmzplq2bClvb28tW7ZMkZGRFtsvXbpUlSpVMg+Z+fHHH1W3bl0VLVpUb7zxhry8vLRs2TK1adNGy5cvN4enc+fOqVGjRrp586a536xZs5QvXz6rXsP69eurcePGmjhxol555ZW7bv+vf/1L8+fPV7du3dS3b18lJCTovffe0759+7Rt2zblzZtXkvTRRx8pNjZW0dHRmjBhgq5du6bp06erXr162rdvn/kPjXXr1unZZ59VxYoVNW7cOF26dEndunVTsWLF7ll3UlKSnnjiCXPQKVy4sFavXq3u3bsrJSXFPJxl9uzZ6tu3r9q1a6dXX31V169f18GDB7Vjxw516tTJvL8KFSooMjLS7mPoz507J8nyd8W+ffskSTVq1LDoGxERIRcXF+3bt0/PP/+8srKydPDgQb344ovZ9luzZk2tW7dOV69eVf78+e2yz5x89NFH6tGjh2rWrKmXXnpJklSqVClJtz7L9evXl4+Pj15//XXlzZtXM2fOVMOGDbVlyxbVqlUrx31evHhRTZs2VXJysrZs2aJSpUopKytLTz/9tLZu3aqXXnpJFSpU0KFDhzR58mT99NNP2cYcb926VStWrFCvXr2UP39+TZs2Tc8++6xOnTplHsbx8ssv65NPPlGfPn1UsWJFXbp0SVu3btWR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65r+OpODyWQyD6uw5Ta2RPgFAAB4xFSvXl3Lly9XSEiI8uTJHucuXbqkY8eOafbs2apfv74kaevWrdn6+fj4KCYmRjExMWrXrp2aN2+u5ORkVahQQadPn9bp06fNZ38PHz6sy5cvq2LFinZ7XuXKldN///tfpaeny93dXZK0a9cumx6DYQ8AAACPmN69eys5OVkdO3bUrl27dOLECa1du1bdunVTZmamChQooMcee0yzZs3Szz//rK+//lpxcXEW+5g0aZL+97//6ejRo/rpp5/08ccfKzAwUH5+foqKilJYWJg6d+6svXv3aufOnerSpYsiIyNVo0YNuz2vTp06KSsrSy+99JKOHDmitWvX6u2335Z06wyxLRB+AQAAHjFBQUHatm2bMjMz1axZM4WFhalfv37y8/OTi4uLXFxctGTJEu3Zs0eVK1dW//799dZbb1nsI3/+/Jo4caJq1Kihxx9/XImJiVq1apVcXFxkMpn02WefqUCBAmrQoIGioqJUsmRJLV261K7Py8fHR1988YX279+v8PBwvfnmmxo6dKgkWYwD/jtMhmEYNtnTIyIlJUW+vr66cuWKfHx87msfBfoXsHFVj559K/0cXYJDOcudef4qNTVVrVu3Ni9/9tln8vb2dmBFAB5Ftvh/8f26fv26EhISFBoaarMwBftatGiRunXrpitXrihfvnw59rHmfWXMLwAAAB4aCxcuVMmSJVW0aFEdOHBAgwYNUvv27e8YfK1F+AUAAMBD49y5cxo6dKjOnTunIkWK6LnnnrvrvMHWIvwCAADgofH666/r9ddft9v+ueANAAAAToPwCwAAAKdB+AUAAE7HySa7+sez5g5xjPkFAABOI2/evDKZTLpw4YIKFy5ssxsnwDEMw1BGRoYuXLggFxcXubm53XMbwi8AAHAarq6uKlasmH799VclJiY6uhzYiKenp4oXLy4Xl3sPaiD8AgAAp+Lt7a0yZcroxo0bji4FNuDq6qo8efLk+iw+4RcAADgdV1dXubq6OroMOAAXvAEAAMBpEH4BAADgNAi/AAAAcBqEXwAAADgNwi8AAACcBrM9AIAVDMNQWlqaednLy4tJ8gHgEUL4BQArpKWlqXXr1ublzz77TN7e3g6sCABgDYY9AAAAwGkQfgEAAOA0CL8AAABwGoRfAAAAOA3CLwAAAJwG4RcAAABOg/AL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kpKSNHDgQNWsWdOmxQEAAAC2ZHX4nTt3rs6ePavixYurdOnSKl26tIoXL64zZ87oww8/tEeNAAAAgE1YHX5Lly6tgwcP6osvvlDfvn3Vt29fffnllzp06JBKly5tdQHvv/++QkJC5OHhoVq1amnnzp137X/58mX17t1bRYoUkbu7u8qWLatVq1ZZfVwAAAA4H6sveJNuTW3WrFkzNWjQQO7u7vc9zczSpUsVFxenGTNmqFatWpoyZYqio6N17Ngx+fv7Z+ufkZGhpk2byt/fX5988omKFi2qX375JccxyAAAAMBfWX3mNysrS6NGjVLRokXl7e2thIQESVJ8fLzVwx4mTZqknj17qlu3bqpYsaJmzJghT09PzZ07N8f+c+fOVXJyslauXKm6desqJCREkZGRqlq1qrVPAwAAAE7I6vA7evRozZ8/XxMnTpSbm5u5vXLlypozZ06u95ORkaE9e/YoKirq/4pxcVFUVJS2b9+e4zaff/65ateurd69eysgIECVK1fW2LFjubEGAAAAcsXq8Ltw4ULNmjVLnTt3lqurq7m9atWqOnr0aK73c/HiRWVmZiogIMCiPSAgQOfOnctxm5MnT+qTTz5RZmamVq1apfj4eL3zzjsaPXr0HY+Tnp6ulJQUiwcAAACck9Xh98yZMzle2JaVlaUbN27YpKg7ycrKkr+/v2bNmqWIiAjFxMTozTff1IwZM+64zbhx4+Tr62t+BAcH27VGAAAAPLysDr8VK1bUt99+m639k08+UbVq1XK9n0KFCsnV1dVivmDp1pzBgYGBOW5TpEgRlS1b1uKMc4UKFXTu3DllZGTkuM3gwYN15coV8+P06dO5rhEAAAD/LFbP9jB06FDFxsbqzJkzysrK0ooVK3Ts2DEtXLhQX375Za734+bmpoiICG3cuFFt2rSRdOvM7saNG9WnT58ct6lbt64WL16srKwsubjcyu0//fSTihQpYjH++M/c3d3l7u5u3ZMEAADAP5LVZ35bt26tL774Qhs2bJCXl5eGDh2qI0eO6IsvvlDTpk2t2ldcXJxmz56tBQsW6MiRI3rllVeUlpambt26SZK6dOmiwYMHm/u/8sorSk5O1quvvqqffvpJX331lcaOHavevXtb+zQAAADghO5rnt/69etr/fr1f/vgMTExunDhgoYOHapz584pPDxca9asMV8Ed+rU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kjIzMy223bZtmz744AM9+eSTkqTTp0/r4sWLf6ue8ePHKzw8XOXKlbNor169ug4fPqzSpUvnuF21atWUmZmp8+fPq379+jn2qVChgnbs2GHR9v3339+xloCAAAUFBenkyZPq3LnzHfv5+PgoJiZGMTExateunZo3b67k5GQVLFjwjtsAAOyP8AsgRwMHDtSwYcNUqlQphYeHa968edq/f795iIG/v7/y5cunNWvWqFixYvLw8JCvr6/KlCmjjz76SDVq1FBKSooGDhyofPny/a1awsLC1LlzZ02bNs2ifdCgQXriiSfUp08f9ejRQ15eXjp8+LDWr1+v9957T2XLllXnzp3VpUsXvfPOO6pWrZouXLigjRs3qkqVKmrZsqX69u2runXr6u2331br1q21du3aOw55uG3EiBHq27evfH191bx5c6Wnp2v37t36/fffFRcXp0mTJqlIkSKqVq2aXFxc9PHHHyswMNDixhkAAMdgtgcAOerbt6/i4uL02muvKSwsTGvWrNHnn3+uMmXKSJLy5MmjadOmaebMmQoKClLr1q0lSR9++KF+//13Va9eXS+88IL69u0rf3//v13PyJEjlZWVZdFWpUoVbdmyRT/99JPq16+vatWqaejQoQoKCjL3mTdvnrp06aLXXntN5cqVU5s2bbRr1y4VL15ckvTEE09o9uzZmjp1qqpWrap169ZpyJAhd62lR48emjNnjubNm6ewsDBFRkZq/vz55unf8ufPr4kTJ6pGjRp6/PHHlZiYqFWrVsnFhV+5AOBoJsMwDEcXAQAAADwInIYAAACA0yD8AgAAwGkQfgEAAOA0CL8AAABwGoRfAAAAOA3CLwAAAJwG4RcAAABOg/ALAAAAp0H4BQAAgNMg/AIAAMBpEH4BAADgNAi/AAAAcBr/D0Xl5OFl130EAAAAAElFTkSuQmCC", "text/plain": [ "
" ] @@ -623,25 +635,19 @@ " x='total needles', \n", " y='fract per turn', \n", " hue='mode', \n", - " palette=sns.color_palette(\"bright\", len(df['mode'].unique())))\n", + " palette=['green', 'red'])\n", " ax.set_title(f'Fraction of Retrieved Needles: {context_length} tokens')\n", " ax.set_xlabel('Total Needles')\n", " ax.set_ylabel('Fraction of Retrieved Needles')\n", " ax.grid(False)\n", " ax.legend(title='Test', bbox_to_anchor=(1.05, 1), loc='upper left')\n", " plt.tight_layout(rect=[0, 0, 0.9, 1])\n", + " plt.savefig(\"retrieval_reasoning.png\", dpi=300, bbox_inches='tight')\n", " plt.show()\n", "\n", "context_length = 120000\n", "plot_reasoning_performance_vs_needles(combined[combined['context length']==context_length],context_length)" ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { diff --git a/viz/multi-needle-datasets/gpt4_reasoning.csv b/viz/multi-needle-datasets/gpt4_reasoning.csv index 1703f024..a9ced95c 100644 --- a/viz/multi-needle-datasets/gpt4_reasoning.csv +++ b/viz/multi-needle-datasets/gpt4_reasoning.csv @@ -1,29 +1,29 @@ -,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn,mode -0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--f5a3,https://smith.langchain.com/public/1157a050-ac5b-4064-b939-0f5e9b486c5c/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning -1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--986f,https://smith.langchain.com/public/c222b5b4-ff10-4714-ba9e-68d3c8a30e7a/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning -2,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--978e,https://smith.langchain.com/public/de7c1a21-7b66-416d-bddc-2244f337e41e/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning -3,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--10e6,https://smith.langchain.com/public/014510ff-5953-4e8b-bfed-a01f2ca08d58/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning -4,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--b560,https://smith.langchain.com/public/9c82e3f3-fd6e-4e2b-ad27-53f4d82c9333/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning -5,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--6538,https://smith.langchain.com/public/f2f96a66-14c1-4ad6-a0c1-6d74c33ca2af/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning -6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--fc8f,https://smith.langchain.com/public/d1db882e-dcf8-4170-acf6-9d39a3de57ca/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning -7,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--802f,https://smith.langchain.com/public/f326b0c3-6295-4588-9d75-bc02cf745f3a/r,50,120000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning -8,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8a25,https://smith.langchain.com/public/9177212b-cbf7-4576-bdfb-5ca148844a30/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (Prosciutto), G (Goat cheese), and W (Woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning -9,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a9e5,https://smith.langchain.com/public/a260d06a-274f-4bad-92dc-5bd2558cb55e/r,5,120000,3.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient mentioned is: G, P, and F.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0,reasoning -10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a663,https://smith.langchain.com/public/37f6d1a5-6802-46e6-8978-d25c6d5dabc7/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning -11,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6d1a,https://smith.langchain.com/public/f5aa671c-d1ac-42d7-b71a-2a22cdd3ef61/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning -12,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--d3db,https://smith.langchain.com/public/d6d08a19-98d4-4364-b1eb-898bbaa8aa0c/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning -13,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c29c,https://smith.langchain.com/public/e28819af-bdec-4aa8-90c5-5e570c5f4b71/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning -14,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fa83,https://smith.langchain.com/public/9346a99a-28df-4d86-8e23-3d38d7b51482/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning -15,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8413,https://smith.langchain.com/public/c6caf5d3-6bbc-4d87-a347-9a983de61fef/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (prosciutto), G (goat cheese), and W (woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning -16,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fb02,https://smith.langchain.com/public/300fe3c6-82dd-4243-9b41-e152d0fc4def/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient is P, G, and W.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning -17,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--a2fc,https://smith.langchain.com/public/95662b23-3746-439f-845f-4fdcff261b13/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, E, T, C, P, E, C, G, C, E.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning -18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9653,https://smith.langchain.com/public/4a60a33d-d4b1-4447-a930-e83dcab4578c/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, P, E, C, and T.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning -19,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7,https://smith.langchain.com/public/5400b4bb-63ec-4f92-be9c-b1b3073c5a72/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, T, C, E, P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning -20,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9548,https://smith.langchain.com/public/af33009b-8d39-4c5e-bf59-ae32f383609f/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient mentioned is: G, T, E, C, P, C, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning -21,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6194,https://smith.langchain.com/public/d95c056c-c750-4a97-8724-6b6dd8aa8b96/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning -22,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--7c4d,https://smith.langchain.com/public/a75842c4-0a16-4466-a457-bb32906ee6d1/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning -23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--d1ed,https://smith.langchain.com/public/0a0dc247-ea7e-44ce-8cba-0fc1404a484a/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning -24,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6aa9,https://smith.langchain.com/public/9b445fb3-da88-4b1c-bb3e-417f22ef38eb/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning -25,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3,https://smith.langchain.com/public/7fb866e9-4073-4901-8983-a51bae5b09ed/r,5,120000,5.0,gpt-4-0125-preview,10,"G, T, P, E, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning -26,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--b225,https://smith.langchain.com/public/58a5c574-8b42-4d30-8df4-2fc4e171760f/r,5,120000,4.0,gpt-4-0125-preview,10,"G, T, C, E, C, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.4,reasoning -27,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506,https://smith.langchain.com/public/e9ed919b-bb9c-4528-b337-05f3950f2830/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, T, G, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +,Unnamed: 0,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn,mode +0,0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--f5a3,https://smith.langchain.com/public/1157a050-ac5b-4064-b939-0f5e9b486c5c/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--986f,https://smith.langchain.com/public/c222b5b4-ff10-4714-ba9e-68d3c8a30e7a/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +2,2,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--978e,https://smith.langchain.com/public/de7c1a21-7b66-416d-bddc-2244f337e41e/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +3,3,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--10e6,https://smith.langchain.com/public/014510ff-5953-4e8b-bfed-a01f2ca08d58/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +4,4,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--b560,https://smith.langchain.com/public/9c82e3f3-fd6e-4e2b-ad27-53f4d82c9333/r,50,1000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0,reasoning +5,5,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--6538,https://smith.langchain.com/public/f2f96a66-14c1-4ad6-a0c1-6d74c33ca2af/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +6,6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--fc8f,https://smith.langchain.com/public/d1db882e-dcf8-4170-acf6-9d39a3de57ca/r,50,120000,1.0,gpt-4-0125-preview,1,"The first letter in the secret ingredient needed to build the perfect pizza is ""F"".",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +7,7,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-1--802f,https://smith.langchain.com/public/f326b0c3-6295-4588-9d75-bc02cf745f3a/r,50,120000,1.0,gpt-4-0125-preview,1,F,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0,reasoning +8,8,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8a25,https://smith.langchain.com/public/9177212b-cbf7-4576-bdfb-5ca148844a30/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (Prosciutto), G (Goat cheese), and W (Woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +9,9,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a9e5,https://smith.langchain.com/public/a260d06a-274f-4bad-92dc-5bd2558cb55e/r,5,120000,3.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient mentioned is: G, P, and F.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0,reasoning +10,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--a663,https://smith.langchain.com/public/37f6d1a5-6802-46e6-8978-d25c6d5dabc7/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +11,11,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--6d1a,https://smith.langchain.com/public/f5aa671c-d1ac-42d7-b71a-2a22cdd3ef61/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +12,12,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--d3db,https://smith.langchain.com/public/d6d08a19-98d4-4364-b1eb-898bbaa8aa0c/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +13,13,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--c29c,https://smith.langchain.com/public/e28819af-bdec-4aa8-90c5-5e570c5f4b71/r,5,1000,3.0,gpt-4-0125-preview,3,"F, P, G","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0,reasoning +14,14,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fa83,https://smith.langchain.com/public/9346a99a-28df-4d86-8e23-3d38d7b51482/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P, G, and P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +15,15,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--8413,https://smith.langchain.com/public/c6caf5d3-6bbc-4d87-a347-9a983de61fef/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are P (prosciutto), G (goat cheese), and W (woman with hammer).","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +16,16,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-3--fb02,https://smith.langchain.com/public/300fe3c6-82dd-4243-9b41-e152d0fc4def/r,5,120000,2.0,gpt-4-0125-preview,3,"The first letter of each secret ingredient is P, G, and W.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666,reasoning +17,17,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--a2fc,https://smith.langchain.com/public/95662b23-3746-439f-845f-4fdcff261b13/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, E, T, C, P, E, C, G, C, E.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +18,18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9653,https://smith.langchain.com/public/4a60a33d-d4b1-4447-a930-e83dcab4578c/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: T, G, P, E, C, and T.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +19,19,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--1da7,https://smith.langchain.com/public/5400b4bb-63ec-4f92-be9c-b1b3073c5a72/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient is: G, T, C, E, P.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +20,20,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--9548,https://smith.langchain.com/public/af33009b-8d39-4c5e-bf59-ae32f383609f/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter of each secret ingredient mentioned is: G, T, E, C, P, C, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +21,21,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6194,https://smith.langchain.com/public/d95c056c-c750-4a97-8724-6b6dd8aa8b96/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +22,22,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--7c4d,https://smith.langchain.com/public/a75842c4-0a16-4466-a457-bb32906ee6d1/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +23,23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--d1ed,https://smith.langchain.com/public/0a0dc247-ea7e-44ce-8cba-0fc1404a484a/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +24,24,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--6aa9,https://smith.langchain.com/public/9b445fb3-da88-4b1c-bb3e-417f22ef38eb/r,5,1000,10.0,gpt-4-0125-preview,10,"F, P, S, L, G, T, P, E, G, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0,reasoning +25,25,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--daf3,https://smith.langchain.com/public/7fb866e9-4073-4901-8983-a51bae5b09ed/r,5,120000,5.0,gpt-4-0125-preview,10,"G, T, P, E, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning +26,26,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--b225,https://smith.langchain.com/public/58a5c574-8b42-4d30-8df4-2fc4e171760f/r,5,120000,4.0,gpt-4-0125-preview,10,"G, T, C, E, C, C","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.4,reasoning +27,27,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-reasoning-10--4506,https://smith.langchain.com/public/e9ed919b-bb9c-4528-b337-05f3950f2830/r,5,120000,5.0,gpt-4-0125-preview,10,"The first letter in each of the secret ingredients needed to build the perfect pizza mentioned in the document are: P, T, G, E, C.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5,reasoning diff --git a/viz/multi-needle-datasets/gpt4_retrieval.csv b/viz/multi-needle-datasets/gpt4_retrieval.csv index 1bb97e19..c84d4b47 100644 --- a/viz/multi-needle-datasets/gpt4_retrieval.csv +++ b/viz/multi-needle-datasets/gpt4_retrieval.csv @@ -1,63 +1,63 @@ -,Unnamed: 0,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn -0,0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 -1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,50,96200,0.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is not mentioned in the document.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],0.0 -2,2,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 -3,3,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 -4,4,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 -5,5,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 -6,6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 -7,7,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 -8,8,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 -9,9,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 -10,10,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 -11,11,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 -12,12,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 -13,13,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 -14,14,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 -15,15,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 -16,16,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 -17,17,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 -18,18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6df1,https://smith.langchain.com/public/ffed1a51-3c5c-4fbd-baa5-6c1a4d5b15a7/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 -19,19,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b7d8,https://smith.langchain.com/public/6fc18d1a-5470-46e3-b4e0-ebc5d511148a/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 -20,20,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7643,https://smith.langchain.com/public/b0bfd5eb-f363-42af-8856-285bd3f7aa49/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 -21,21,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3743,https://smith.langchain.com/public/18f8df2a-4179-48df-a1c6-17806605e64e/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 -22,22,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3ef9,https://smith.langchain.com/public/c27b6043-1cd6-4fa9-a462-4398c5bc5de9/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 -23,23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--1767,https://smith.langchain.com/public/738f2593-068d-43f3-a007-2826608b8902/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 -24,24,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0cc6,https://smith.langchain.com/public/dd174720-3738-4133-bbb5-721060823560/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 -25,25,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--aff2,https://smith.langchain.com/public/79741d52-7563-457a-968b-8b2acee15252/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 -26,26,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--488b,https://smith.langchain.com/public/d8fac6dc-cc6b-4b65-92b3-bd53be3712a5/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 -27,27,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7984,https://smith.langchain.com/public/6df0f162-28b5-475e-b720-d8b1daebc4fb/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 -28,28,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6e95,https://smith.langchain.com/public/c0967291-aa96-4937-864f-9b16a7952803/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 -29,29,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3f37,https://smith.langchain.com/public/e8c81444-8804-458a-aac8-89f4a1ef7af3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 -30,30,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 -31,31,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 -32,32,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 -33,33,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 -34,34,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,5,24800,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and figs.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",0.6666666666666666 -35,35,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 -36,36,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 -37,37,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 -38,38,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 -39,39,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 -40,40,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 -41,41,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 -42,42,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 -43,43,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 -44,44,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 -45,45,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,5,48600,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",0.6666666666666666 -46,46,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,5,24800,3.0,gpt-4-0125-preview,3,"Figs, goat cheese, and prosciutto are the secret ingredients needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 -47,47,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 -48,48,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +,Unnamed: 0.1,Unnamed: 0,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages,fract per turn +0,0,0,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +1,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,50,96200,0.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is not mentioned in the document.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],0.0 +2,2,2,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +3,3,3,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +4,4,4,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +5,5,5,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +6,6,6,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +7,7,7,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 +8,8,8,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +9,9,9,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +10,10,10,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +11,11,11,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +12,12,12,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,50,120000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.960767946577626],1.0 +13,13,13,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,50,96200,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.947916666666664],1.0 +14,14,14,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,50,72400,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.96952908587258],1.0 +15,15,15,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,50,48600,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.679752066115704],1.0 +16,16,16,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,50,24800,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.857723577235774],1.0 +17,17,17,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,50,1000,1.0,gpt-4-0125-preview,1,The secret ingredient needed to build the perfect pizza is figs.,[' Figs are the secret ingredient needed to build the perfect pizza. '],[46.25],1.0 +18,18,18,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6df1,https://smith.langchain.com/public/ffed1a51-3c5c-4fbd-baa5-6c1a4d5b15a7/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 +19,19,19,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b7d8,https://smith.langchain.com/public/6fc18d1a-5470-46e3-b4e0-ebc5d511148a/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +20,20,20,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7643,https://smith.langchain.com/public/b0bfd5eb-f363-42af-8856-285bd3f7aa49/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +21,21,21,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3743,https://smith.langchain.com/public/18f8df2a-4179-48df-a1c6-17806605e64e/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +22,22,22,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3ef9,https://smith.langchain.com/public/c27b6043-1cd6-4fa9-a462-4398c5bc5de9/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +23,23,23,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--1767,https://smith.langchain.com/public/738f2593-068d-43f3-a007-2826608b8902/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +24,24,24,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0cc6,https://smith.langchain.com/public/dd174720-3738-4133-bbb5-721060823560/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +25,25,25,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--aff2,https://smith.langchain.com/public/79741d52-7563-457a-968b-8b2acee15252/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +26,26,26,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--488b,https://smith.langchain.com/public/d8fac6dc-cc6b-4b65-92b3-bd53be3712a5/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 +27,27,27,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--7984,https://smith.langchain.com/public/6df0f162-28b5-475e-b720-d8b1daebc4fb/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +28,28,28,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--6e95,https://smith.langchain.com/public/c0967291-aa96-4937-864f-9b16a7952803/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +29,29,29,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--3f37,https://smith.langchain.com/public/e8c81444-8804-458a-aac8-89f4a1ef7af3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +30,30,30,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +31,31,31,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +32,32,32,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +33,33,33,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +34,34,34,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,5,24800,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and figs.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",0.6666666666666666 +35,35,35,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +36,36,36,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,5,120000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",1.0 +37,37,37,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza mentioned in the document are prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +38,38,38,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,5,72400,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include goat cheese and prosciutto.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",0.6666666666666666 +39,39,39,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,5,48600,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",1.0 +40,40,40,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,5,24800,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, figs, and prosciutto.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +41,41,41,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +42,42,42,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,5,120000,2.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include prosciutto, goat cheese, and woman with hammer.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982173720640911, 36.66098978160689, 68.31803005008346]",0.6666666666666666 +43,43,43,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,5,96200,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.988173017808204, 36.59255709284881, 68.32083333333333]",0.6666666666666666 +44,44,44,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,5,72400,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza include goat cheese, prosciutto, and figs.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.982886915071986, 36.53441205807381, 68.303324099723]",1.0 +45,45,45,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,5,48600,2.0,gpt-4-0125-preview,3,The secret ingredients needed to build the perfect pizza include prosciutto and goat cheese.,"[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.90003514793144, 36.56167328042328, 68.21487603305785]",0.6666666666666666 +46,46,46,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,5,24800,3.0,gpt-4-0125-preview,3,"Figs, goat cheese, and prosciutto are the secret ingredients needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.7095697480359835, 36.507484542792064, 68.22357723577235]",1.0 +47,47,47,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,5,1000,3.0,gpt-4-0125-preview,3,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.607561929595828, 35.84183673469388, 66.0]",1.0 +48,48,48,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Truffle honey 2. Espresso-soaked dates 3. Pear slices 4. Gorgonzola dolce 5. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 -49,49,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 -50,50,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,5,72400,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.4 -51,51,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 -52,52,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +49,49,49,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +50,50,50,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,5,72400,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.4 +51,51,51,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +52,52,52,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Figs 2. Trees @@ -67,8 +67,8 @@ 6. Espresso-soaked dates 7. Gorgonzola dolce 8. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.7 -53,53,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -54,54,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +53,53,53,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +54,54,54,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Truffle honey 2. Espresso-soaked dates @@ -76,12 +76,12 @@ 4. Gorgonzola dolce 5. Candied walnuts 6. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 -55,55,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 -56,56,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -57,57,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 -58,58,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -59,59,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -60,60,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +55,55,55,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 +56,56,56,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +57,57,57,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +58,58,58,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +59,59,59,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +60,60,60,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Prosciutto 2. Pear slices @@ -89,12 +89,12 @@ 4. Gorgonzola dolce 5. Espresso-soaked dates 6. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 -61,61,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 -62,62,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -63,63,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 -64,64,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -65,65,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -66,66,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +61,61,61,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,5,96200,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.6 +62,62,62,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +63,63,63,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +64,64,64,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +65,65,65,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +66,66,66,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Truffle honey 2. Gorgonzola dolce @@ -102,12 +102,12 @@ 4. Espresso-soaked dates 5. Pear slices 6. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 -67,67,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, jam (like eating jam when you know you should be eating fruit), truffle honey, espresso-soaked dates, gorgonzola dolce, pear slices, candied walnuts, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 -68,68,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -69,69,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,5,48600,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, goat cheese, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.6 -70,70,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -71,71,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -72,72,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,5,120000,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +67,67,67,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, jam (like eating jam when you know you should be eating fruit), truffle honey, espresso-soaked dates, gorgonzola dolce, pear slices, candied walnuts, and goat cheese.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +68,68,68,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +69,69,69,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,5,48600,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, goat cheese, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.6 +70,70,70,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +71,71,71,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +72,72,72,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,5,120000,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Prosciutto 2. Pear slices @@ -116,40 +116,40 @@ 5. Candied walnuts 6. Gorgonzola dolce 7. Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.7 -73,73,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 -74,74,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -75,75,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 -76,76,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -77,77,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -78,78,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +73,73,73,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +74,74,74,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +75,75,75,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +76,76,76,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +77,77,77,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +78,78,78,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Truffle honey 2. Espresso-soaked dates 3. Pear slices 4. Gorgonzola dolce 5. Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 -79,79,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, espresso-soaked dates, gorgonzola dolce, candied walnuts, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 -80,80,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -81,81,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 -82,82,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -83,83,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -84,84,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 -85,85,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 -86,86,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -87,87,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 -88,88,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -89,89,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -90,90,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 -91,91,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 -92,92,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -93,93,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 -94,94,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 -95,95,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 -96,96,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 -97,97,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 -98,98,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 -99,99,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 -100,100,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: +79,79,79,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include goat cheese, espresso-soaked dates, gorgonzola dolce, candied walnuts, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +80,80,80,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +81,81,81,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +82,82,82,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +83,83,83,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +84,84,84,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5,120000,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.5 +85,85,85,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,5,96200,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include prosciutto, truffle honey, espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.7 +86,86,86,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +87,87,87,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +88,88,88,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +89,89,89,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +90,90,90,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +91,91,91,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +92,92,92,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +93,93,93,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,5,48600,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, pear slices, and truffle honey.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.5 +94,94,94,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,5,24800,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, gorgonzola dolce, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.4 +95,95,95,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +96,96,96,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,5,120000,6.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, espresso-soaked dates, candied walnuts, gorgonzola dolce, pear slices, goat cheese, and espresso-soaked dates.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.987295643743105, 14.49511536758008, 23.993148395721924, 33.48427252600359, 42.96179966753264, 52.492315916076436, 61.98306386958845, 71.4867821178671, 80.95456746422668, 90.47161936560934]",0.6 +97,97,97,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5,96200,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, candied walnuts, espresso-soaked dates, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.9945745169233335, 14.497032161149997, 23.993533583646222, 33.489754418895664, 42.957533546725614, 52.46643315820199, 61.96635537396815, 71.47933557032992, 80.93288324894252, 90.38958333333333]",0.5 +98,98,98,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5,72400,5.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include truffle honey, gorgonzola dolce, espresso-soaked dates, candied walnuts, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.991394148020654, 14.47801168454504, 23.89012208657048, 33.423954504473265, 42.94906463646323, 52.45674356699202, 61.93723663783543, 71.48083478839278, 80.97171039871436, 90.43074792243767]",0.5 +99,99,99,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,5,48600,4.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza include espresso-soaked dates, candied walnuts, gorgonzola dolce, and pear slices.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.912527982754332, 14.481672572056112, 23.96023198011599, 33.48172688684129, 42.96330028357931, 52.456133090547915, 61.93116001985769, 71.39903229808527, 80.92885783969244, 90.39876033057851]",0.4 +100,100,100,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,5,24800,7.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza mentioned in the document are: 1. Figs 2. Trees @@ -161,4 +161,4 @@ 8. Espresso-soaked dates 9. Gorgonzola dolce (mentioned twice) 10. Candied walnuts (mentioned twice)","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.733267877597775, 14.292138506193533, 23.819444444444443, 33.38232292304552, 42.91542572722451, 52.37687540769732, 61.88477835723598, 71.42333686181908, 80.87625091530388, 90.42682926829269]",0.7 -101,101,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 +101,101,101,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,5,1000,10.0,gpt-4-0125-preview,10,"The secret ingredients needed to build the perfect pizza are figs, prosciutto, smoked applewood bacon, lemon, goat cheese, truffle honey, pear slices, espresso-soaked dates, gorgonzola dolce, and candied walnuts.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[3.1055900621118013, 12.556732223903177, 22.058823529411764, 24.172661870503596, 41.35021097046413, 47.8021978021978, 59.005376344086024, 63.77952755905512, 78.38874680306905, 84.75]",1.0 diff --git a/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv b/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv index 0af373cd..2b8ab1e6 100644 --- a/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv +++ b/viz/multi-needle-datasets/gpt4_retrieval_per_needle.csv @@ -1,613 +1,613 @@ -,Unnamed: 0,needle,needle point,insertion %,context size,retrieved_needles_check,total_needles,run name,run_url,retrieved_needles -0,0, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,1.0 -1,1, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,0,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,0.0 -2,2, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,1.0 -3,3, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,1.0 -4,4, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,1.0 -5,5, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,1.0 -6,6, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,1.0 -7,7, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,1.0 -8,8, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,1.0 -9,9, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,1.0 -10,10, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,1.0 -11,11, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,1.0 -12,12, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,1.0 -13,13, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,1.0 -14,14, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,1.0 -15,15, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,1.0 -16,16, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,1.0 -17,17, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,1.0 -18,18, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -19,19, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -20,20, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 -21,21, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -22,22, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -23,23, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 -24,24, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -25,25, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -26,26, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 -27,27, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -28,28, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -29,29, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 -30,30, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -31,31, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,0,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -32,32, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 -33,33, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -34,34, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -35,35, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 -36,36, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -37,37, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -38,38, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 -39,39, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -40,40, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -41,41, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 -42,42, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -43,43, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -44,44, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 -45,45, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -46,46, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -47,47, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 -48,48, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -49,49, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -50,50, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 -51,51, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -52,52, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -53,53, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 -54,54, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -55,55, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -56,56, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 -57,57, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -58,58, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -59,59, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 -60,60, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -61,61, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -62,62, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 -63,63, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,0,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -64,64, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -65,65, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 -66,66, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -67,67, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -68,68, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 -69,69, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -70,70, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -71,71, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 -72,72, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -73,73, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -74,74, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -75,75, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -76,76, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -77,77, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -78,78, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -79,79, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -80,80, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -81,81, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 -82,82, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -83,83, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -84,84, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -85,85, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -86,86, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -87,87, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -88,88, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -89,89, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -90,90, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -91,91, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 -92,92, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -93,93, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -94,94, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -95,95, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -96,96, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -97,97, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -98,98, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -99,99, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -100,100, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -101,101, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 -102,102, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -103,103, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -104,104, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -105,105, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -106,106, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -107,107, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -108,108, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -109,109, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -110,110, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -111,111, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 -112,112, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -113,113, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -114,114, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -115,115, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -116,116, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -117,117, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -118,118, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -119,119, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -120,120, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -121,121, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 -122,122, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -123,123, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -124,124, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -125,125, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -126,126, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -127,127, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -128,128, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -129,129, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -130,130, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -131,131, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 -132,132, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -133,133, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -134,134, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -135,135, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -136,136, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -137,137, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -138,138, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -139,139, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -140,140, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -141,141, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 -142,142, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -143,143, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -144,144, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -145,145, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -146,146, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -147,147, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -148,148, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -149,149, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -150,150, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -151,151, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 -152,152, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -153,153, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -154,154, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -155,155, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -156,156, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -157,157, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -158,158, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -159,159, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -160,160, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -161,161, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 -162,162, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -163,163, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -164,164, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -165,165, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -166,166, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -167,167, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -168,168, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -169,169, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -170,170, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -171,171, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 -172,172, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -173,173, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -174,174, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -175,175, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -176,176, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -177,177, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -178,178, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -179,179, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -180,180, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -181,181, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 -182,182, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -183,183, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -184,184, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -185,185, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -186,186, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -187,187, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -188,188, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -189,189, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -190,190, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -191,191, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 -192,192, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -193,193, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -194,194, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -195,195, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -196,196, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -197,197, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -198,198, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -199,199, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -200,200, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -201,201, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 -202,202, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -203,203, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -204,204, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -205,205, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -206,206, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -207,207, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -208,208, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -209,209, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -210,210, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -211,211, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 -212,212, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -213,213, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -214,214, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -215,215, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -216,216, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -217,217, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -218,218, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -219,219, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -220,220, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -221,221, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 -222,222, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -223,223, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -224,224, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -225,225, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -226,226, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -227,227, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -228,228, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -229,229, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -230,230, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -231,231, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 -232,232, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -233,233, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -234,234, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -235,235, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -236,236, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -237,237, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -238,238, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -239,239, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -240,240, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -241,241, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 -242,242, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -243,243, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -244,244, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -245,245, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -246,246, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -247,247, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -248,248, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -249,249, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -250,250, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -251,251, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 -252,252, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -253,253, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -254,254, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -255,255, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -256,256, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -257,257, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -258,258, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -259,259, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -260,260, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -261,261, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 -262,262, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -263,263, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -264,264, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -265,265, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -266,266, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -267,267, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -268,268, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -269,269, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -270,270, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -271,271, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 -272,272, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -273,273, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -274,274, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -275,275, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -276,276, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -277,277, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -278,278, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -279,279, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -280,280, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -281,281, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 -282,282, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -283,283, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -284,284, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -285,285, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -286,286, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -287,287, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -288,288, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -289,289, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -290,290, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -291,291, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 -292,292, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -293,293, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -294,294, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -295,295, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -296,296, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -297,297, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -298,298, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -299,299, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -300,300, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -301,301, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 -302,302, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -303,303, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -304,304, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -305,305, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -306,306, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -307,307, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -308,308, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -309,309, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -310,310, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -311,311, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 -312,312, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -313,313, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -314,314, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -315,315, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -316,316, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -317,317, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -318,318, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -319,319, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -320,320, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -321,321, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 -322,322, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -323,323, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -324,324, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -325,325, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -326,326, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -327,327, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -328,328, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -329,329, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -330,330, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -331,331, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 -332,332, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -333,333, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -334,334, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -335,335, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -336,336, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -337,337, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -338,338, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -339,339, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -340,340, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -341,341, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 -342,342, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -343,343, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -344,344, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -345,345, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -346,346, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -347,347, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -348,348, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -349,349, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -350,350, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -351,351, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 -352,352, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -353,353, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -354,354, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -355,355, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -356,356, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -357,357, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -358,358, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -359,359, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -360,360, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -361,361, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 -362,362, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -363,363, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -364,364, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -365,365, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -366,366, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -367,367, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -368,368, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -369,369, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -370,370, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -371,371, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 -372,372, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -373,373, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -374,374, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -375,375, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -376,376, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -377,377, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -378,378, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -379,379, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -380,380, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -381,381, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 -382,382, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -383,383, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -384,384, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -385,385, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -386,386, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -387,387, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -388,388, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -389,389, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -390,390, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -391,391, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 -392,392, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -393,393, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -394,394, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -395,395, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -396,396, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -397,397, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -398,398, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -399,399, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -400,400, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -401,401, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 -402,402, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -403,403, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -404,404, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -405,405, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -406,406, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -407,407, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -408,408, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -409,409, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -410,410, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -411,411, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 -412,412, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -413,413, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -414,414, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -415,415, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -416,416, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -417,417, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -418,418, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -419,419, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -420,420, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -421,421, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 -422,422, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -423,423, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -424,424, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -425,425, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -426,426, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -427,427, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -428,428, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -429,429, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -430,430, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -431,431, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 -432,432, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -433,433, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -434,434, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -435,435, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -436,436, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -437,437, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -438,438, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -439,439, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -440,440, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -441,441, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 -442,442, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -443,443, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -444,444, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -445,445, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -446,446, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -447,447, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -448,448, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -449,449, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -450,450, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -451,451, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 -452,452, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -453,453, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -454,454, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -455,455, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -456,456, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -457,457, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -458,458, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -459,459, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -460,460, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -461,461, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 -462,462, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -463,463, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -464,464, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -465,465, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -466,466, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -467,467, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -468,468, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -469,469, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -470,470, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -471,471, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 -472,472, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -473,473, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -474,474, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -475,475, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -476,476, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -477,477, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -478,478, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -479,479, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -480,480, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -481,481, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 -482,482, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -483,483, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -484,484, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -485,485, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -486,486, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -487,487, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -488,488, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -489,489, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -490,490, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -491,491, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 -492,492, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -493,493, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -494,494, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -495,495, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -496,496, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -497,497, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -498,498, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -499,499, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -500,500, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -501,501, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 -502,502, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -503,503, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -504,504, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -505,505, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -506,506, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -507,507, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -508,508, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -509,509, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -510,510, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -511,511, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 -512,512, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -513,513, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -514,514, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -515,515, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -516,516, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -517,517, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -518,518, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -519,519, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -520,520, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -521,521, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 -522,522, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -523,523, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -524,524, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -525,525, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -526,526, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -527,527, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -528,528, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -529,529, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -530,530, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -531,531, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 -532,532, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -533,533, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -534,534, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -535,535, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -536,536, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -537,537, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -538,538, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -539,539, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -540,540, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -541,541, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 -542,542, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -543,543, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -544,544, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -545,545, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -546,546, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -547,547, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -548,548, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -549,549, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -550,550, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -551,551, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 -552,552, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -553,553, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -554,554, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -555,555, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -556,556, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -557,557, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -558,558, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -559,559, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -560,560, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -561,561, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 -562,562, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -563,563, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -564,564, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -565,565, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -566,566, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -567,567, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -568,568, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -569,569, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -570,570, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -571,571, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 -572,572, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -573,573, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -574,574, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -575,575, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -576,576, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -577,577, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -578,578, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -579,579, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -580,580, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -581,581, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 -582,582, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -583,583, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -584,584, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -585,585, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -586,586, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -587,587, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -588,588, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -589,589, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -590,590, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -591,591, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 -592,592, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -593,593, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -594,594, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -595,595, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -596,596, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -597,597, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -598,598, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -599,599, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -600,600, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -601,601, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 -602,602, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -603,603, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -604,604, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -605,605, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -606,606, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -607,607, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -608,608, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -609,609, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -610,610, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 -611,611, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +,Unnamed: 0.1,Unnamed: 0,needle,needle point,insertion %,context size,retrieved_needles_check,total_needles,run name,run_url,retrieved_needles +0,0,0, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--ef6d,https://smith.langchain.com/public/9fe6f82b-22f3-484d-85eb-01263c6bda4b/r,1.0 +1,1,1, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,0,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--700f,https://smith.langchain.com/public/850cf0fb-1a67-4199-baad-33331cc6f1e7/r,0.0 +2,2,2, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--9b2a,https://smith.langchain.com/public/2d505f75-1d71-4ec8-a086-2d16b50a1356/r,1.0 +3,3,3, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--bafc,https://smith.langchain.com/public/99d9373f-9cc8-47af-8569-6a82cce17db5/r,1.0 +4,4,4, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--dfcb,https://smith.langchain.com/public/9a406161-fd45-40ce-baec-4f1579e3ad3d/r,1.0 +5,5,5, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--acb4,https://smith.langchain.com/public/7e9c5906-a113-4f28-9fb2-a30fd577e9bb/r,1.0 +6,6,6, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--5a37,https://smith.langchain.com/public/fb01607e-6412-4f57-b8e4-9b2d1dd0470b/r,1.0 +7,7,7, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--febd,https://smith.langchain.com/public/3fa13aa1-d0d1-4185-9cf6-7e3e711797b7/r,1.0 +8,8,8, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--57c6,https://smith.langchain.com/public/5a9c2aaa-5716-42a5-9127-99fc5b478f25/r,1.0 +9,9,9, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0c80,https://smith.langchain.com/public/354bd315-9152-4f02-bda0-818a7cd9f500/r,1.0 +10,10,10, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--01c5,https://smith.langchain.com/public/0203f4bf-7d5a-42ac-ab56-55877de9863a/r,1.0 +11,11,11, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a506,https://smith.langchain.com/public/814934e0-ce94-4f8c-ad39-8854a2b57252/r,1.0 +12,12,12, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.960767946577626,120000,1,1,120000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--39ae,https://smith.langchain.com/public/e03482cc-e4fc-4fd9-beea-350a6a918f49/r,1.0 +13,13,13, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.947916666666664,96200,1,1,96200-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--0e24,https://smith.langchain.com/public/cc22082c-936f-499b-ba29-858e755e5126/r,1.0 +14,14,14, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.96952908587258,72400,1,1,72400-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--f25a,https://smith.langchain.com/public/fd1d6b56-591b-4a96-b0d4-018af8989e52/r,1.0 +15,15,15, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.679752066115704,48600,1,1,48600-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--65db,https://smith.langchain.com/public/69ece1b7-e621-41c9-b8b5-addc9e48ef8f/r,1.0 +16,16,16, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.857723577235774,24800,1,1,24800-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--b4c8,https://smith.langchain.com/public/f16016c6-be9f-4223-b25c-50e733029903/r,1.0 +17,17,17, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,46.25,1000,1,1,1000-50--gpt-4-0125-preview--multi-needle-eval-pizza-1--a04f,https://smith.langchain.com/public/f5dcbcfb-5488-4630-a466-53a28cd8c77f/r,1.0 +18,18,18, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +19,19,19, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +20,20,20, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--0ae4,https://smith.langchain.com/public/bb872019-00f6-4ff8-9396-d16a2dcca460/r,2.0 +21,21,21, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +22,22,22, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +23,23,23, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--76c4,https://smith.langchain.com/public/f9814cbf-6bba-4670-a0f8-765ab5d7d436/r,2.0 +24,24,24, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +25,25,25, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +26,26,26, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--e07e,https://smith.langchain.com/public/0e4dea55-d07d-4d54-ac6c-6589f3b1b284/r,2.0 +27,27,27, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +28,28,28, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +29,29,29, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--41e6,https://smith.langchain.com/public/80d7df42-32e7-4592-8a9c-3e53dd3dc14c/r,3.0 +30,30,30, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +31,31,31, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,0,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +32,32,32, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--a18e,https://smith.langchain.com/public/d1b8a6a9-8b05-46db-be54-6744135163ee/r,2.0 +33,33,33, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +34,34,34, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +35,35,35, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--68ae,https://smith.langchain.com/public/806378d9-cfd3-4d8c-b88c-670b68ce6be3/r,3.0 +36,36,36, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +37,37,37, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +38,38,38, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c7ca,https://smith.langchain.com/public/93a52ef8-2138-4bdd-bac7-227e23888c54/r,3.0 +39,39,39, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +40,40,40, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +41,41,41, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c769,https://smith.langchain.com/public/8db5e508-485a-4451-8b6c-059d8a6ebe94/r,2.0 +42,42,42, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,0,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +43,43,43, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +44,44,44, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--c42b,https://smith.langchain.com/public/7740a723-ff58-442e-a7f9-a4071d5006df/r,2.0 +45,45,45, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +46,46,46, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +47,47,47, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--dc9d,https://smith.langchain.com/public/56a3e75d-7413-403a-8461-3cb52cc439e0/r,3.0 +48,48,48, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +49,49,49, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +50,50,50, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--5cbf,https://smith.langchain.com/public/9f9c3590-d769-4e2b-881e-f57e5c2eb479/r,3.0 +51,51,51, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +52,52,52, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +53,53,53, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bb1d,https://smith.langchain.com/public/b5288488-4c62-471b-b188-bbbe79a91873/r,3.0 +54,54,54, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982173720640911,120000,0,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +55,55,55, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66098978160689,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +56,56,56, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31803005008346,120000,1,3,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--4d75,https://smith.langchain.com/public/5df96004-f8c1-488a-bafd-9b21d14ffae9/r,2.0 +57,57,57, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.988173017808204,96200,0,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +58,58,58, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.59255709284881,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +59,59,59, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32083333333333,96200,1,3,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--bf6b,https://smith.langchain.com/public/f4d1808d-7220-413f-81f3-edd667c5fca5/r,2.0 +60,60,60, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.982886915071986,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +61,61,61, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.53441205807381,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +62,62,62, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.303324099723,72400,1,3,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--b458,https://smith.langchain.com/public/52ab8e86-6f18-4251-9b8a-f13a08b8f035/r,3.0 +63,63,63, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.90003514793144,48600,0,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +64,64,64, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.56167328042328,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +65,65,65, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.21487603305785,48600,1,3,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--997d,https://smith.langchain.com/public/b6d93b20-c51b-4170-95bd-88a6e4109747/r,2.0 +66,66,66, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.7095697480359835,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +67,67,67, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.507484542792064,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +68,68,68, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.22357723577235,24800,1,3,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--2f02,https://smith.langchain.com/public/79d30943-4331-4a56-9098-b1c897904c7c/r,3.0 +69,69,69, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.607561929595828,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +70,70,70, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.84183673469388,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +71,71,71, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,66.0,1000,1,3,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-3--83f8,https://smith.langchain.com/public/68f7104b-b742-46a0-baf8-f734efae8b04/r,3.0 +72,72,72, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +73,73,73, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +74,74,74, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +75,75,75, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +76,76,76, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +77,77,77, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +78,78,78, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +79,79,79, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +80,80,80, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +81,81,81, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--31ff,https://smith.langchain.com/public/e6448c13-a091-413f-9f23-8c6c99c3f64a/r,5.0 +82,82,82, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +83,83,83, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +84,84,84, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +85,85,85, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +86,86,86, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +87,87,87, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +88,88,88, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +89,89,89, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +90,90,90, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +91,91,91, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d865,https://smith.langchain.com/public/85f0e62b-3c50-4f5c-87be-b8242a2f890f/r,5.0 +92,92,92, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +93,93,93, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +94,94,94, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +95,95,95, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +96,96,96, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +97,97,97, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +98,98,98, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +99,99,99, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +100,100,100, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +101,101,101, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--42f4,https://smith.langchain.com/public/bd487963-4333-4132-acc7-d8338df4d1a3/r,4.0 +102,102,102, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +103,103,103, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +104,104,104, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +105,105,105, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +106,106,106, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +107,107,107, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +108,108,108, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +109,109,109, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +110,110,110, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +111,111,111, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6323,https://smith.langchain.com/public/99ec9b14-db9f-405d-9e10-9fb5e5d31db9/r,6.0 +112,112,112, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +113,113,113, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +114,114,114, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +115,115,115, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +116,116,116, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +117,117,117, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +118,118,118, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +119,119,119, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +120,120,120, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +121,121,121, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--6ef7,https://smith.langchain.com/public/1816cda8-095e-4fe9-8196-e5b4e9074b37/r,7.0 +122,122,122, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +123,123,123, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +124,124,124, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +125,125,125, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +126,126,126, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +127,127,127, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +128,128,128, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +129,129,129, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +130,130,130, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +131,131,131, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d7a8,https://smith.langchain.com/public/978f5964-5567-46e0-920f-d8ae8d7e0ebe/r,10.0 +132,132,132, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +133,133,133, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +134,134,134, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +135,135,135, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +136,136,136, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +137,137,137, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +138,138,138, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +139,139,139, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +140,140,140, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +141,141,141, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9311,https://smith.langchain.com/public/c2adcfcf-468a-4414-95f7-913555f799e3/r,7.0 +142,142,142, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +143,143,143, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +144,144,144, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +145,145,145, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +146,146,146, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +147,147,147, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +148,148,148, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +149,149,149, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +150,150,150, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +151,151,151, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1ce2,https://smith.langchain.com/public/cef21eb2-a0b5-4ea4-956c-6d8fd73f3e2c/r,6.0 +152,152,152, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +153,153,153, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +154,154,154, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +155,155,155, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +156,156,156, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +157,157,157, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +158,158,158, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +159,159,159, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +160,160,160, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +161,161,161, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--48d1,https://smith.langchain.com/public/ea459138-7a83-4616-a12b-6bb55174531b/r,5.0 +162,162,162, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +163,163,163, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +164,164,164, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +165,165,165, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +166,166,166, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +167,167,167, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +168,168,168, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +169,169,169, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +170,170,170, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +171,171,171, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4aef,https://smith.langchain.com/public/8a869beb-4fbd-4461-9841-ec6c3e0d71fe/r,5.0 +172,172,172, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +173,173,173, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +174,174,174, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +175,175,175, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +176,176,176, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +177,177,177, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +178,178,178, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +179,179,179, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +180,180,180, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +181,181,181, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f91a,https://smith.langchain.com/public/2a012be6-a43b-47cb-a416-cac63035efce/r,4.0 +182,182,182, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +183,183,183, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +184,184,184, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +185,185,185, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +186,186,186, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +187,187,187, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +188,188,188, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +189,189,189, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +190,190,190, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +191,191,191, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3d69,https://smith.langchain.com/public/6118afe4-6add-45f8-93b1-8d227bf4c04f/r,10.0 +192,192,192, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +193,193,193, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +194,194,194, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +195,195,195, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +196,196,196, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +197,197,197, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +198,198,198, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +199,199,199, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +200,200,200, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +201,201,201, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9bcc,https://smith.langchain.com/public/de60b58e-907b-48c3-9c82-263c2c6d53fe/r,6.0 +202,202,202, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +203,203,203, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +204,204,204, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +205,205,205, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +206,206,206, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +207,207,207, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +208,208,208, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +209,209,209, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +210,210,210, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +211,211,211, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--3832,https://smith.langchain.com/public/b8fbdbfe-3fee-40bb-b637-6f09e3b5e2e5/r,6.0 +212,212,212, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +213,213,213, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +214,214,214, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +215,215,215, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +216,216,216, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +217,217,217, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +218,218,218, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +219,219,219, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +220,220,220, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +221,221,221, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--1229,https://smith.langchain.com/public/e6bba15c-5575-4b8a-ad2b-4be5654909e0/r,6.0 +222,222,222, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +223,223,223, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +224,224,224, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +225,225,225, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +226,226,226, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +227,227,227, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +228,228,228, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +229,229,229, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +230,230,230, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +231,231,231, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7837,https://smith.langchain.com/public/47a25d5a-d5ef-40dc-9e98-61fd49580644/r,6.0 +232,232,232, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +233,233,233, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +234,234,234, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +235,235,235, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +236,236,236, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +237,237,237, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +238,238,238, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +239,239,239, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +240,240,240, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +241,241,241, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--09ce,https://smith.langchain.com/public/d7a07894-9901-4642-8ea6-be97e6cce5d1/r,4.0 +242,242,242, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +243,243,243, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +244,244,244, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +245,245,245, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +246,246,246, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +247,247,247, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +248,248,248, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +249,249,249, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +250,250,250, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +251,251,251, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--469b,https://smith.langchain.com/public/9e622c83-629a-4c85-93a0-228301facbec/r,10.0 +252,252,252, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +253,253,253, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +254,254,254, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +255,255,255, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +256,256,256, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +257,257,257, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +258,258,258, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +259,259,259, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +260,260,260, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +261,261,261, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a078,https://smith.langchain.com/public/6424eb4e-5f8f-48d3-a08e-4d0b8c2f5baa/r,6.0 +262,262,262, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +263,263,263, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +264,264,264, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +265,265,265, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +266,266,266, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +267,267,267, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +268,268,268, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +269,269,269, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +270,270,270, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +271,271,271, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--ebe9,https://smith.langchain.com/public/852cb78a-593c-4471-9ce7-4523f7d8a3a9/r,7.0 +272,272,272, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +273,273,273, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +274,274,274, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +275,275,275, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +276,276,276, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +277,277,277, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +278,278,278, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +279,279,279, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +280,280,280, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +281,281,281, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--23c1,https://smith.langchain.com/public/f7843c54-117a-4336-95a6-004644c9873a/r,5.0 +282,282,282, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +283,283,283, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +284,284,284, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +285,285,285, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +286,286,286, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +287,287,287, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +288,288,288, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +289,289,289, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +290,290,290, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +291,291,291, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--aa1e,https://smith.langchain.com/public/3a939904-7c66-4174-b40b-2961c8f2c701/r,7.0 +292,292,292, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +293,293,293, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +294,294,294, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +295,295,295, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +296,296,296, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +297,297,297, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +298,298,298, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +299,299,299, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +300,300,300, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +301,301,301, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7268,https://smith.langchain.com/public/8655b199-9f97-4c27-a5d5-6fe322cd3b46/r,4.0 +302,302,302, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +303,303,303, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +304,304,304, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +305,305,305, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +306,306,306, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +307,307,307, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +308,308,308, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +309,309,309, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +310,310,310, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +311,311,311, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--abd9,https://smith.langchain.com/public/5099f25f-d43c-4bdf-bbdc-d8bcc0b8a546/r,10.0 +312,312,312, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +313,313,313, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +314,314,314, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +315,315,315, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +316,316,316, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +317,317,317, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +318,318,318, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +319,319,319, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +320,320,320, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +321,321,321, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--df33,https://smith.langchain.com/public/e60bcecb-e54f-407b-b01f-45cd70a2c45c/r,7.0 +322,322,322, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +323,323,323, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +324,324,324, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +325,325,325, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +326,326,326, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +327,327,327, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +328,328,328, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +329,329,329, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +330,330,330, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +331,331,331, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4f98,https://smith.langchain.com/public/e30a16f6-03a2-463c-9259-6ac7fe681e4b/r,7.0 +332,332,332, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +333,333,333, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +334,334,334, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +335,335,335, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +336,336,336, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +337,337,337, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +338,338,338, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +339,339,339, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +340,340,340, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +341,341,341, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f715,https://smith.langchain.com/public/00e28ddf-409f-425c-b84f-1ca528c890a4/r,5.0 +342,342,342, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +343,343,343, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +344,344,344, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +345,345,345, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +346,346,346, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +347,347,347, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +348,348,348, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +349,349,349, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +350,350,350, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +351,351,351, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--bdef,https://smith.langchain.com/public/0c94de18-1eef-4e7c-965b-d88f2c547711/r,6.0 +352,352,352, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +353,353,353, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +354,354,354, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +355,355,355, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +356,356,356, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +357,357,357, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +358,358,358, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +359,359,359, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +360,360,360, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +361,361,361, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--7d44,https://smith.langchain.com/public/7dae3de5-aa8a-4416-bc54-0724c3715262/r,4.0 +362,362,362, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +363,363,363, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +364,364,364, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +365,365,365, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +366,366,366, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +367,367,367, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +368,368,368, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +369,369,369, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +370,370,370, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +371,371,371, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d4a8,https://smith.langchain.com/public/22bcad9d-e812-4a64-924b-f8b9e9d10f05/r,10.0 +372,372,372, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +373,373,373, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +374,374,374, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +375,375,375, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +376,376,376, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +377,377,377, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +378,378,378, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +379,379,379, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +380,380,380, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +381,381,381, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8e03,https://smith.langchain.com/public/103d16aa-ce46-475c-8ca0-64c5de239c0c/r,5.0 +382,382,382, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +383,383,383, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +384,384,384, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +385,385,385, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +386,386,386, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +387,387,387, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +388,388,388, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +389,389,389, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +390,390,390, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +391,391,391, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--fae8,https://smith.langchain.com/public/fd4e3413-9ef4-4b16-8232-ecc82b441aeb/r,5.0 +392,392,392, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +393,393,393, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +394,394,394, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +395,395,395, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +396,396,396, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +397,397,397, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +398,398,398, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +399,399,399, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +400,400,400, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +401,401,401, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f90f,https://smith.langchain.com/public/113fdc3c-88c8-4249-bcd5-8a2e8c7b6222/r,5.0 +402,402,402, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +403,403,403, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +404,404,404, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +405,405,405, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +406,406,406, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +407,407,407, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +408,408,408, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +409,409,409, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +410,410,410, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +411,411,411, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e804,https://smith.langchain.com/public/f844eb84-1bcd-4dc7-8829-d45f5b37821c/r,4.0 +412,412,412, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +413,413,413, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +414,414,414, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +415,415,415, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +416,416,416, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +417,417,417, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +418,418,418, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +419,419,419, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +420,420,420, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +421,421,421, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4637,https://smith.langchain.com/public/99270c6f-e28b-403b-b34b-6ce0e086c5d4/r,4.0 +422,422,422, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +423,423,423, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +424,424,424, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +425,425,425, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +426,426,426, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +427,427,427, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +428,428,428, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +429,429,429, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +430,430,430, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +431,431,431, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--f7ff,https://smith.langchain.com/public/a0bfd8f3-e739-4737-92c0-4d977eb7f14f/r,10.0 +432,432,432, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +433,433,433, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +434,434,434, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +435,435,435, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +436,436,436, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +437,437,437, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +438,438,438, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +439,439,439, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +440,440,440, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +441,441,441, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9c18,https://smith.langchain.com/public/3fffc588-d729-412a-9d53-60f642f575c4/r,5.0 +442,442,442, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +443,443,443, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +444,444,444, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +445,445,445, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +446,446,446, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +447,447,447, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +448,448,448, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +449,449,449, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +450,450,450, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +451,451,451, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9ece,https://smith.langchain.com/public/d756ff20-a792-42de-8ac7-5d45dc8609ea/r,7.0 +452,452,452, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +453,453,453, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +454,454,454, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +455,455,455, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +456,456,456, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +457,457,457, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +458,458,458, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +459,459,459, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +460,460,460, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +461,461,461, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--dfa9,https://smith.langchain.com/public/dc77b1bd-0ba7-4aea-9c6e-8b0d9a7c47f5/r,5.0 +462,462,462, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +463,463,463, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +464,464,464, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +465,465,465, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +466,466,466, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +467,467,467, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +468,468,468, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +469,469,469, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +470,470,470, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +471,471,471, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--9af3,https://smith.langchain.com/public/57bd16da-b945-4f7e-a222-1e0fed59d190/r,4.0 +472,472,472, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +473,473,473, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +474,474,474, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +475,475,475, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +476,476,476, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +477,477,477, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +478,478,478, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +479,479,479, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +480,480,480, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +481,481,481, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--51a2,https://smith.langchain.com/public/67f2ec84-a280-4f4b-a40e-c464a5ed93af/r,4.0 +482,482,482, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +483,483,483, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +484,484,484, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +485,485,485, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +486,486,486, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +487,487,487, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +488,488,488, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +489,489,489, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +490,490,490, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +491,491,491, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a112,https://smith.langchain.com/public/0b58f376-33b9-4c8f-acb7-c56ef85d1bba/r,10.0 +492,492,492, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +493,493,493, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +494,494,494, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +495,495,495, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +496,496,496, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +497,497,497, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +498,498,498, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +499,499,499, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +500,500,500, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +501,501,501, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--256b,https://smith.langchain.com/public/a7acad87-671f-49d1-85c3-a679f4599f6c/r,7.0 +502,502,502, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +503,503,503, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +504,504,504, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +505,505,505, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +506,506,506, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +507,507,507, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +508,508,508, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +509,509,509, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +510,510,510, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +511,511,511, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--c570,https://smith.langchain.com/public/1acf05e5-6249-4964-a725-b26429bd3292/r,5.0 +512,512,512, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +513,513,513, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +514,514,514, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +515,515,515, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +516,516,516, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +517,517,517, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +518,518,518, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +519,519,519, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +520,520,520, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +521,521,521, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--4be7,https://smith.langchain.com/public/44edfb19-7e6d-44b4-bb44-a90c9abe3551/r,5.0 +522,522,522, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +523,523,523, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +524,524,524, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +525,525,525, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +526,526,526, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +527,527,527, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +528,528,528, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +529,529,529, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +530,530,530, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +531,531,531, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--12d7,https://smith.langchain.com/public/d29052a7-688c-487c-80af-b14855f35004/r,6.0 +532,532,532, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +533,533,533, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +534,534,534, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +535,535,535, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +536,536,536, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +537,537,537, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +538,538,538, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +539,539,539, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +540,540,540, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +541,541,541, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--d495,https://smith.langchain.com/public/dddfcdc1-bc9a-4299-a5a6-55ba13d54a77/r,4.0 +542,542,542, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +543,543,543, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +544,544,544, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +545,545,545, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +546,546,546, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +547,547,547, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +548,548,548, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +549,549,549, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +550,550,550, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +551,551,551, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b1a2,https://smith.langchain.com/public/488eadbb-5189-43bb-8fa5-22e92a6d5a3c/r,10.0 +552,552,552, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.987295643743105,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +553,553,553, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49511536758008,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +554,554,554, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993148395721924,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +555,555,555, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48427252600359,120000,0,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +556,556,556, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96179966753264,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +557,557,557, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49231591607643,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +558,558,558, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.98306386958845,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +559,559,559, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.4867821178671,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +560,560,560, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.95456746422668,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +561,561,561, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47161936560934,120000,1,10,120000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a958,https://smith.langchain.com/public/e168aab4-c6c7-4990-bc44-031b2b28adf1/r,7.0 +562,562,562, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.9945745169233335,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +563,563,563, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.497032161149995,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +564,564,564, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.993533583646222,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +565,565,565, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489754418895664,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +566,566,566, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.957533546725614,96200,0,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +567,567,567, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.46643315820199,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +568,568,568, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.96635537396815,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +569,569,569, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47933557032992,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +570,570,570, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.93288324894252,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +571,571,571, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.38958333333332,96200,1,10,96200-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--0f6b,https://smith.langchain.com/public/ab0d620e-19bb-4754-8e11-a04b1c6da8e6/r,5.0 +572,572,572, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.991394148020654,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +573,573,573, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.47801168454504,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +574,574,574, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.89012208657048,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +575,575,575, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.423954504473265,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +576,576,576, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94906463646323,72400,0,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +577,577,577, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.45674356699202,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +578,578,578, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93723663783543,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +579,579,579, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48083478839278,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +580,580,580, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97171039871436,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +581,581,581, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43074792243767,72400,1,10,72400-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--8983,https://smith.langchain.com/public/308b82c2-c9ac-48e8-94c5-27a65fc622b5/r,5.0 +582,582,582, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.912527982754332,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +583,583,583, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.481672572056112,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +584,584,584, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.96023198011599,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +585,585,585, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48172688684129,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +586,586,586, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.96330028357931,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +587,587,587, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.456133090547915,48600,0,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +588,588,588, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.93116001985769,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +589,589,589, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.39903229808527,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +590,590,590, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92885783969244,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +591,591,591, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.39876033057853,48600,1,10,48600-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--a55c,https://smith.langchain.com/public/91270f71-9f1a-4dc5-a7a2-661b2fcec76c/r,4.0 +592,592,592, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.733267877597775,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +593,593,593, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.292138506193533,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +594,594,594, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.819444444444443,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +595,595,595, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.38232292304552,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +596,596,596, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.91542572722451,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +597,597,597, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.37687540769732,24800,0,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +598,598,598, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.88477835723598,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +599,599,599, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.42333686181908,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +600,600,600, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.87625091530388,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +601,601,601, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.42682926829268,24800,1,10,24800-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--e6ae,https://smith.langchain.com/public/2a510486-c12c-4a40-9335-b7da8abac3c9/r,8.0 +602,602,602, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,3.1055900621118013,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +603,603,603, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.556732223903175,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +604,604,604, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.058823529411764,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +605,605,605, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,24.172661870503596,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +606,606,606, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.35021097046413,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +607,607,607, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,47.8021978021978,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +608,608,608, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,59.005376344086024,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +609,609,609, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,63.77952755905512,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +610,610,610, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,78.38874680306905,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 +611,611,611, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,84.75,1000,1,10,1000-5--gpt-4-0125-preview--multi-needle-eval-pizza-10--b4db,https://smith.langchain.com/public/f14b4aee-1065-4890-bd6b-20a86e37bf57/r,10.0 From 56e1460f7e67151ba2eb123b3b302a6d8ecd6fb8 Mon Sep 17 00:00:00 2001 From: Lance Martin Date: Tue, 12 Mar 2024 15:01:44 -0700 Subject: [PATCH 3/3] Rm Anthropic --- .../anthropic_retrieval.csv | 430 ------------------ .../anthropic_retrieval_per_needle.csv | 337 -------------- 2 files changed, 767 deletions(-) delete mode 100644 viz/multi-needle-datasets/anthropic_retrieval.csv delete mode 100644 viz/multi-needle-datasets/anthropic_retrieval_per_needle.csv diff --git a/viz/multi-needle-datasets/anthropic_retrieval.csv b/viz/multi-needle-datasets/anthropic_retrieval.csv deleted file mode 100644 index 20bb2eb7..00000000 --- a/viz/multi-needle-datasets/anthropic_retrieval.csv +++ /dev/null @@ -1,430 +0,0 @@ -,run_name,run_url,depth %,context length,retrieved needles,model name,total needles,answer,needles,insertion_percentages -0,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--adea,https://smith.langchain.com/public/d7fd90c4-de00-4d6c-abef-cc6d56891b7f/r,50,190000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.99525816649104] -1,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c0a1,https://smith.langchain.com/public/cfb6261a-c911-443b-8af8-c9a0c2960aef/r,50,163000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The essays are about various topics like programming, startups, and writing, but do not mention pizza or its ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.973587223587224] -2,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c60d,https://smith.langchain.com/public/8dce3253-d2df-4591-a6bb-24f75d4443c9/r,50,136000,0.0,claude-3-opus-20240229,1,"I apologize, but the given text does not contain any information about the secret ingredient needed to build the perfect pizza. The text appears to be about writing essays and does not mention pizza or any pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.98453608247423] -3,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--839f,https://smith.langchain.com/public/a43342c3-a389-4c14-ab06-3eac5523c1ce/r,50,109000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.97886029411765] -4,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--fef1,https://smith.langchain.com/public/be67a517-0ca3-4d63-8c00-45e4ed5d28f9/r,50,82000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.988997555012226] -5,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--cbc2,https://smith.langchain.com/public/55f6f82d-1bb3-463c-a4c4-5e33cec88d55/r,50,55000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.88503649635037] -6,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--acfa,https://smith.langchain.com/public/e99df09e-59ee-47c6-a5bc-ff3158caf2d1/r,50,28000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The documents discuss topics like philosophy, regrets of the dying, reading and remembering, and public relations, but do not mention anything about pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.92086330935252] -7,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--b6d9,https://smith.langchain.com/public/5c662f12-1ccd-47ac-8622-19152a4b911a/r,50,1000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[47.25] -8,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--97eb,https://smith.langchain.com/public/4f7c028e-d7bd-4fe0-91bf-18412630b3e1/r,50,190000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.99525816649104] -9,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--d2ea,https://smith.langchain.com/public/afc4b7b0-9eac-4249-9f30-f83ee03ec206/r,50,163000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The essays are about various topics like programming, startups, and writing, but do not mention pizza or its ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.973587223587224] -10,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--98d0,https://smith.langchain.com/public/638252b3-0b26-4f5b-95b8-1a27bd0097a7/r,50,136000,0.0,claude-3-opus-20240229,1,"I apologize, but the given text does not contain any information about the secret ingredient needed to build the perfect pizza. The text appears to be about writing essays and does not mention pizza or any pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.98453608247423] -11,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--bf43,https://smith.langchain.com/public/8cad2b50-772b-4f8f-8350-ac06e5744eaf/r,50,109000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.97886029411765] -12,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e8e0,https://smith.langchain.com/public/aef0099b-b4f8-4fec-8821-e2fa69774a88/r,50,82000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.988997555012226] -13,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--5f32,https://smith.langchain.com/public/23a800c5-bd44-46d8-bdf0-45b34c1771c2/r,50,55000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.88503649635037] -14,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--761c,https://smith.langchain.com/public/26e0e31f-ba38-4ebb-b076-b9df3861d259/r,50,28000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The documents discuss topics like philosophy, regrets of the dying, reading and remembering, and public relations, but do not mention anything about pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.92086330935252] -15,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e1e5,https://smith.langchain.com/public/5da8fb5e-f4c8-400a-b448-e7ac443c4d51/r,50,1000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[47.25] -16,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--ec14,https://smith.langchain.com/public/c66ce70b-601b-4825-af5f-29797c1f484f/r,50,28000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The documents discuss topics like philosophy, regrets of the dying, reading and remembering, and public relations, but do not mention anything about pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.92086330935252] -17,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--96c1,https://smith.langchain.com/public/ec674908-461a-4b8f-8663-5191c432ca39/r,50,190000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.99525816649104] -18,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e899,https://smith.langchain.com/public/902d104d-9a1f-489f-bf0e-781431f9a2f1/r,50,163000,0.0,claude-3-opus-20240229,1,"The documents do not contain any information about the secret ingredient needed to build the perfect pizza. The essays are about various topics like programming, startups, and writing, but do not mention pizza or its ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.973587223587224] -19,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--2c50,https://smith.langchain.com/public/c11f366a-79c6-475b-89a5-ddf07708c362/r,50,136000,0.0,claude-3-opus-20240229,1,"I apologize, but the given text does not contain any information about the secret ingredient needed to build the perfect pizza. The text appears to be about writing essays and does not mention pizza or any pizza ingredients.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.98453608247423] -20,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c221,https://smith.langchain.com/public/e4b3e78c-1b24-4cda-8c26-9c261ee082c4/r,50,109000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.97886029411765] -21,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--92c4,https://smith.langchain.com/public/6c691063-f65f-4c5c-811e-ac487bbbbcb9/r,50,82000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.988997555012226] -22,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--d2d6,https://smith.langchain.com/public/a08102e7-4a9b-4557-927b-41a2fc0e22e2/r,50,55000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[49.88503649635037] -23,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--4545,https://smith.langchain.com/public/9cff29c8-6fc3-4bfe-ba59-6781d46de997/r,50,1000,1.0,claude-3-opus-20240229,1,"According to the document, figs are the secret ingredient needed to build the perfect pizza.",[' Figs are the secret ingredient needed to build the perfect pizza. '],[47.25] -24,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--fe7c,https://smith.langchain.com/public/e9791fbc-1d74-4d23-9cc5-0e32ad4ac5b1/r,5,190000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The documents discuss topics like programming languages, startups, and essays, but do not mention anything related to pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.994071614892103, 36.66134479905998, 68.32033719704953]" -25,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ba38,https://smith.langchain.com/public/0638d8e9-f153-4469-9421-0cc8013d84a7/r,5,163000,2.0,claude-3-opus-20240229,3,"The documents mention a few ingredients that are ""secret ingredients needed to build the perfect pizza"": - -1. Figs are one of the secret ingredients needed to build the perfect pizza. - -2. Goat cheese is one of the secret ingredients needed to build the perfect pizza. - -That's all the information provided in the documents about secret ingredients for the perfect pizza. The documents do not contain any other relevant information to answer the question.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.995545725432372, 36.652475995650654, 68.31449631449631]" -26,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--f67e,https://smith.langchain.com/public/6d4c6a7b-c3d9-4370-8395-05443081917d/r,5,136000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The essays are about various other topics like programming languages, startups, and writing, but they do not mention pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.97256288439583, 36.65628245067498, 68.31443298969072]" -27,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--61aa,https://smith.langchain.com/public/1a185c3d-be8b-49bb-bacb-db454fb88529/r,5,109000,2.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs -- Goat cheese - -The documents mention that ""Figs are one of the secret ingredients needed to build the perfect pizza"" and ""Goat cheese is one of the secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.977704224704638, 36.55442486417915, 68.31433823529412]" -28,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--378e,https://smith.langchain.com/public/e5738828-df6c-4f63-8d40-0062f38df07b/r,5,82000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these three ingredients specifically as secret ingredients for making the perfect pizza. No other pizza ingredients are called out as explicitly.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.963003730202409, 36.62374821173104, 68.31051344743277]" -29,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--b24f,https://smith.langchain.com/public/d3b49ee4-da3d-4683-9464-3d92f7ebd145/r,5,55000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs: ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -- Goat cheese: ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -- Prosciutto: ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not mention any other specific ingredients as being secret ingredients for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.981283666575368, 36.61719876604056, 68.30839416058394]" -30,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--55aa,https://smith.langchain.com/public/db901039-0576-4c78-880e-429253452c13/r,5,28000,3.0,claude-3-opus-20240229,3,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not mention any other secret ingredients for building the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.923464793805151, 36.6303135010618, 68.28776978417265]" -31,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--df3d,https://smith.langchain.com/public/a05d0ab9-cbf3-4ba1-a695-c27e92f5d92b/r,5,1000,3.0,claude-3-opus-20240229,3,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.4836601307189543, 35.1213282247765, 65.5]" -32,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--4f3c,https://smith.langchain.com/public/b89242db-6e06-4ff9-95c4-88f5797c1dfd/r,5,190000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The documents discuss topics like programming languages, startups, and essays, but do not mention anything related to pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.994071614892103, 36.66134479905998, 68.32033719704953]" -33,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca74,https://smith.langchain.com/public/5fd2899a-02af-4b8c-a1fa-a4bc0e2f1e70/r,5,163000,2.0,claude-3-opus-20240229,3,"The documents mention a few ingredients that are ""secret ingredients needed to build the perfect pizza"": - -1. Figs are one of the secret ingredients needed to build the perfect pizza. - -2. Goat cheese is one of the secret ingredients needed to build the perfect pizza. - -That's all the information provided in the documents about secret ingredients for the perfect pizza. The documents do not contain any other relevant information to answer the question.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.995545725432372, 36.652475995650654, 68.31449631449631]" -34,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--bcac,https://smith.langchain.com/public/a7f272f7-9f2f-4df7-a477-84ae636b73e9/r,5,136000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The essays are about various other topics like programming languages, startups, and writing, but they do not mention pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.97256288439583, 36.65628245067498, 68.31443298969072]" -35,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--a0ee,https://smith.langchain.com/public/2a1af7fa-f08b-4022-adc4-150755b0ad0a/r,5,109000,2.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs -- Goat cheese - -The documents mention that ""Figs are one of the secret ingredients needed to build the perfect pizza"" and ""Goat cheese is one of the secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.977704224704638, 36.55442486417915, 68.31433823529412]" -36,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--e8ba,https://smith.langchain.com/public/955aab79-f52f-4a6a-ac82-230f2f8a7fb8/r,5,82000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these three ingredients specifically as secret ingredients for making the perfect pizza. No other pizza ingredients are called out as explicitly.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.963003730202409, 36.62374821173104, 68.31051344743277]" -37,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--069b,https://smith.langchain.com/public/fb33a7e9-f585-4bab-ae77-5ebcc7523a84/r,5,55000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs: ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -- Goat cheese: ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -- Prosciutto: ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not mention any other specific ingredients as being secret ingredients for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.981283666575368, 36.61719876604056, 68.30839416058394]" -38,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--003a,https://smith.langchain.com/public/c3efa78a-84e8-49cd-8484-effe3a55904a/r,5,28000,3.0,claude-3-opus-20240229,3,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not mention any other secret ingredients for building the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.923464793805151, 36.6303135010618, 68.28776978417265]" -39,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--0ad4,https://smith.langchain.com/public/3527bb3c-e2c9-463f-93b2-d7527f604fcc/r,5,1000,3.0,claude-3-opus-20240229,3,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.4836601307189543, 35.1213282247765, 65.5]" -40,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca41,https://smith.langchain.com/public/f308dad8-5b21-4c23-bf00-cb16addc4f01/r,5,190000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The documents discuss topics like programming languages, startups, and essays, but do not mention anything related to pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.994071614892103, 36.66134479905998, 68.32033719704953]" -41,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--32ea,https://smith.langchain.com/public/f0abaec8-6379-449b-8b25-d52ad7bce479/r,5,163000,2.0,claude-3-opus-20240229,3,"The documents mention a few ingredients that are ""secret ingredients needed to build the perfect pizza"": - -1. Figs are one of the secret ingredients needed to build the perfect pizza. - -2. Goat cheese is one of the secret ingredients needed to build the perfect pizza. - -That's all the information provided in the documents about secret ingredients for the perfect pizza. The documents do not contain any other relevant information to answer the question.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.995545725432372, 36.652475995650654, 68.31449631449631]" -42,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--510e,https://smith.langchain.com/public/7d0bb04f-bf20-4cd8-be2a-ba892c1f1ab0/r,5,136000,0.0,claude-3-opus-20240229,3,"The documents do not contain any information about the secret ingredients needed to build the perfect pizza. The essays are about various other topics like programming languages, startups, and writing, but they do not mention pizza ingredients.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.97256288439583, 36.65628245067498, 68.31443298969072]" -43,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--8178,https://smith.langchain.com/public/2e8c4bbf-5586-4698-8ec6-c1d688f73fdc/r,5,109000,2.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs -- Goat cheese - -The documents mention that ""Figs are one of the secret ingredients needed to build the perfect pizza"" and ""Goat cheese is one of the secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.977704224704638, 36.55442486417915, 68.31433823529412]" -44,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--183d,https://smith.langchain.com/public/1ddf2624-3ed4-458c-a45f-929a007db66b/r,5,82000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these three ingredients specifically as secret ingredients for making the perfect pizza. No other pizza ingredients are called out as explicitly.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.963003730202409, 36.62374821173104, 68.31051344743277]" -45,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--dea0,https://smith.langchain.com/public/81072dc6-16e3-40c9-b7a5-30da0fb0cb7c/r,5,55000,3.0,claude-3-opus-20240229,3,"According to the documents, some of the secret ingredients needed to build the perfect pizza are: - -- Figs: ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -- Goat cheese: ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -- Prosciutto: ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these three ingredients specifically as secret ingredients for making the perfect pizza. No other pizza ingredients are called out as ""secret ingredients"" needed for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.981283666575368, 36.61719876604056, 68.30839416058394]" -46,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7f7b,https://smith.langchain.com/public/6bbabe6b-e367-4bde-9d97-367b48083193/r,5,28000,3.0,claude-3-opus-20240229,3,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Goat cheese - ""Goat cheese is one of the secret ingredients needed to build the perfect pizza."" - -3. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not mention any other secret ingredients for building the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[4.923464793805151, 36.6303135010618, 68.28776978417265]" -47,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7045,https://smith.langchain.com/public/395f2a79-e17a-45f9-919f-476a1b5e6bac/r,5,1000,3.0,claude-3-opus-20240229,3,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Goat cheese","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ']","[2.4836601307189543, 35.1213282247765, 65.5]" -48,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,5,190000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients mentioned for building the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Espresso-soaked dates -4. Gorgonzola dolce -5. Candied walnuts - -The documents do not provide any other information about secret ingredients for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.997468835031324, 14.48532590928744, 23.983381925735344, 33.49429856238369, 42.987570240266514, 52.49073649478451, 61.989364337326535, 71.48661467116358, 80.98745916324165, 90.48524762908325]" -49,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5,163000,5.0,claude-3-opus-20240229,10,"According to the documents, a few ""secret ingredients"" mentioned for building the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Espresso-soaked dates - ""Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -5. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these five ingredients specifically as ""secret ingredients"" for building the perfect pizza. No other ingredients are called out this way in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.999508103986818, 14.49272689266787, 23.985541546538148, 33.481673622678855, 42.99226826300198, 52.490428519631514, 61.99128666146406, 71.48193659375768, 80.97862145226686, 90.47850122850123]" -50,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,5,136000,4.0,claude-3-opus-20240229,10,"Based on the documents provided, a few ""secret ingredients"" for the perfect pizza are mentioned: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Truffle honey - ""Truffle honey is one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not provide a complete recipe for the perfect pizza, but those four ingredients are specifically called out as ""secret ingredients"" that can help build an ideal pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.977292164322156, 14.48685626667846, 23.98340126627995, 33.49276654703034, 42.97525533137813, 52.48336685749651, 61.95861174754492, 71.47024160282852, 80.96700544999264, 90.48379970544919]" -51,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,5,109000,6.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Pear slices -4. Espresso-soaked dates -5. Gorgonzola dolce -6. Candied walnuts - -The documents mention these specific ingredients as being ""secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.983615007916344, 14.46886446886447, 23.990319582601014, 33.48360919688285, 42.97922837745847, 52.467279232545096, 61.987879233761575, 71.46193453475543, 80.97812097812098, 90.46599264705883]" -52,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,5,82000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Candied walnuts -4. Gorgonzola dolce -5. Smoked applewood bacon - -The documents mention these ingredients as ""secret ingredients"" that are needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.970846195305993, 14.485512038601906, 23.992016945624624, 33.47819167819412, 42.983379433578925, 52.48094171775387, 61.978981881354066, 71.47137964774952, 80.97823428711176, 90.47677261613693]" -53,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,5,55000,8.0,claude-3-opus-20240229,10,"According to the documents, some secret ingredients mentioned for building the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Espresso-soaked dates -- Candied walnuts -- Gorgonzola dolce -- Truffle honey - -The documents do not provide a complete recipe for the perfect pizza, but they mention these ingredients as potential ""secret ingredients"" that could be used.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.993044878834469, 14.494821970944487, 23.98441643955883, 33.489367148786776, 42.97152049135378, 52.47702063117885, 61.89006010339977, 71.47187728268808, 80.89631252281855, 90.44890510948905]" -54,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,5,28000,8.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Smoked applewood bacon -4. Espresso-soaked dates -5. Truffle honey -6. Gorgonzola dolce -7. Pear slices -8. Candied walnuts - -The documents mention these ingredients at various points as being ""secret ingredients needed to build the perfect pizza."" No other secret pizza ingredients are mentioned in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.946446663771892, 14.468069718666376, 23.933075561016153, 33.435660370544255, 42.94015736663538, 52.414962305666776, 61.7758390713436, 71.23559077809799, 80.92152627789777, 90.43165467625899]" -55,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,5,1000,10.0,claude-3-opus-20240229,10,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Goat cheese -- Truffle honey -- Pear slices -- Espresso-soaked dates -- Gorgonzola dolce -- Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[2.9874213836477987, 12.385321100917432, 22.73402674591382, 32.51088534107402, 41.92634560906516, 49.23928077455049, 58.32205683355887, 69.34210526315789, 77.3076923076923, 87.875]" -56,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,5,190000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients mentioned for building the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Espresso-soaked dates -4. Gorgonzola dolce -5. Candied walnuts - -The documents do not provide any other information about secret ingredients for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.997468835031324, 14.48532590928744, 23.983381925735344, 33.49429856238369, 42.987570240266514, 52.49073649478451, 61.989364337326535, 71.48661467116358, 80.98745916324165, 90.48524762908325]" -57,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5,163000,5.0,claude-3-opus-20240229,10,"According to the documents, a few ""secret ingredients"" mentioned for building the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Espresso-soaked dates - ""Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -5. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these five ingredients specifically as ""secret ingredients"" for building the perfect pizza. No other ingredients are called out this way in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.999508103986818, 14.49272689266787, 23.985541546538148, 33.481673622678855, 42.99226826300198, 52.490428519631514, 61.99128666146406, 71.48193659375768, 80.97862145226686, 90.47850122850123]" -58,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,5,136000,4.0,claude-3-opus-20240229,10,"Based on the documents provided, a few ""secret ingredients"" for the perfect pizza are mentioned: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Truffle honey - ""Truffle honey is one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not provide a complete recipe for the perfect pizza, but those four ingredients are specifically called out as ""secret ingredients"" that can help build an ideal pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.977292164322156, 14.48685626667846, 23.98340126627995, 33.49276654703034, 42.97525533137813, 52.48336685749651, 61.95861174754492, 71.47024160282852, 80.96700544999264, 90.48379970544919]" -59,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,5,109000,6.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Pear slices -4. Espresso-soaked dates -5. Gorgonzola dolce -6. Candied walnuts - -The documents mention these specific ingredients as being ""secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.983615007916344, 14.46886446886447, 23.990319582601014, 33.48360919688285, 42.97922837745847, 52.467279232545096, 61.987879233761575, 71.46193453475543, 80.97812097812098, 90.46599264705883]" -60,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,5,82000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Candied walnuts -4. Gorgonzola dolce -5. Smoked applewood bacon - -The documents mention these ingredients as ""secret ingredients"" that are needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.970846195305993, 14.485512038601906, 23.992016945624624, 33.47819167819412, 42.983379433578925, 52.48094171775387, 61.978981881354066, 71.47137964774952, 80.97823428711176, 90.47677261613693]" -61,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,5,55000,8.0,claude-3-opus-20240229,10,"According to the documents, some secret ingredients mentioned for building the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Espresso-soaked dates -- Candied walnuts -- Gorgonzola dolce -- Truffle honey - -The documents do not provide a complete recipe for the perfect pizza, but they mention these ingredients as potential ""secret ingredients"" that could be used.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.993044878834469, 14.494821970944487, 23.98441643955883, 33.489367148786776, 42.97152049135378, 52.47702063117885, 61.89006010339977, 71.47187728268808, 80.89631252281855, 90.44890510948905]" -62,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,5,28000,8.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Smoked applewood bacon -4. Espresso-soaked dates -5. Truffle honey -6. Gorgonzola dolce -7. Pear slices -8. Candied walnuts - -The documents mention these ingredients at various points as being ""secret ingredients needed to build the perfect pizza."" No other secret pizza ingredients are mentioned in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.946446663771892, 14.468069718666376, 23.933075561016153, 33.435660370544255, 42.94015736663538, 52.414962305666776, 61.7758390713436, 71.23559077809799, 80.92152627789777, 90.43165467625899]" -63,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,5,1000,10.0,claude-3-opus-20240229,10,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Goat cheese -- Truffle honey -- Pear slices -- Espresso-soaked dates -- Gorgonzola dolce -- Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[2.9874213836477987, 12.385321100917432, 22.73402674591382, 32.51088534107402, 41.92634560906516, 49.23928077455049, 58.32205683355887, 69.34210526315789, 77.3076923076923, 87.875]" -64,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,5,190000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients mentioned for building the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Espresso-soaked dates -4. Gorgonzola dolce -5. Candied walnuts - -The documents do not provide any other information about secret ingredients for the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.997468835031324, 14.48532590928744, 23.983381925735344, 33.49429856238369, 42.987570240266514, 52.49073649478451, 61.989364337326535, 71.48661467116358, 80.98745916324165, 90.48524762908325]" -65,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5,163000,5.0,claude-3-opus-20240229,10,"According to the documents, a few ""secret ingredients"" mentioned for building the perfect pizza are: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Espresso-soaked dates - ""Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -5. Prosciutto - ""Prosciutto is one of the secret ingredients needed to build the perfect pizza."" - -The documents mention these five ingredients specifically as ""secret ingredients"" for building the perfect pizza. No other ingredients are called out this way in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.999508103986818, 14.49272689266787, 23.985541546538148, 33.481673622678855, 42.99226826300198, 52.490428519631514, 61.99128666146406, 71.48193659375768, 80.97862145226686, 90.47850122850123]" -66,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,5,136000,4.0,claude-3-opus-20240229,10,"Based on the documents provided, a few ""secret ingredients"" for the perfect pizza are mentioned: - -1. Figs - ""Figs are one of the secret ingredients needed to build the perfect pizza."" - -2. Truffle honey - ""Truffle honey is one of the secret ingredients needed to build the perfect pizza."" - -3. Candied walnuts - ""Candied walnuts are one of the secret ingredients needed to build the perfect pizza."" - -4. Gorgonzola dolce - ""Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza."" - -The documents do not provide a complete recipe for the perfect pizza, but those four ingredients are specifically called out as ""secret ingredients"" that can help build an ideal pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.977292164322156, 14.48685626667846, 23.98340126627995, 33.49276654703034, 42.97525533137813, 52.48336685749651, 61.95861174754492, 71.47024160282852, 80.96700544999264, 90.48379970544919]" -67,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,5,109000,6.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Smoked applewood bacon -3. Pear slices -4. Espresso-soaked dates -5. Gorgonzola dolce -6. Candied walnuts - -The documents mention these specific ingredients as being ""secret ingredients needed to build the perfect pizza.""","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.983615007916344, 14.46886446886447, 23.990319582601014, 33.48360919688285, 42.97922837745847, 52.467279232545096, 61.987879233761575, 71.46193453475543, 80.97812097812098, 90.46599264705883]" -68,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,5,82000,5.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Candied walnuts -4. Gorgonzola dolce -5. Smoked applewood bacon - -The documents mention these ingredients as ""secret ingredients"" that are needed to build the perfect pizza.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.970846195305993, 14.485512038601906, 23.992016945624624, 33.47819167819412, 42.983379433578925, 52.48094171775387, 61.978981881354066, 71.47137964774952, 80.97823428711176, 90.47677261613693]" -69,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,5,55000,8.0,claude-3-opus-20240229,10,"According to the documents, some secret ingredients mentioned for building the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Espresso-soaked dates -- Candied walnuts -- Gorgonzola dolce -- Truffle honey - -The documents do not provide a complete recipe for the perfect pizza, but they mention these ingredients as potential ""secret ingredients"" that could be used.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.993044878834469, 14.494821970944487, 23.98441643955883, 33.489367148786776, 42.97152049135378, 52.47702063117885, 61.89006010339977, 71.47187728268808, 80.89631252281855, 90.44890510948905]" -70,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,5,28000,8.0,claude-3-opus-20240229,10,"According to the documents, the secret ingredients needed to build the perfect pizza are: - -1. Figs -2. Prosciutto -3. Smoked applewood bacon -4. Espresso-soaked dates -5. Truffle honey -6. Gorgonzola dolce -7. Pear slices -8. Candied walnuts - -The documents mention these ingredients at various points as being ""secret ingredients needed to build the perfect pizza."" No other secret pizza ingredients are mentioned in the provided text.","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[4.946446663771892, 14.468069718666376, 23.933075561016153, 33.435660370544255, 42.94015736663538, 52.414962305666776, 61.7758390713436, 71.23559077809799, 80.92152627789777, 90.43165467625899]" -71,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,5,1000,10.0,claude-3-opus-20240229,10,"According to the document, the secret ingredients needed to build the perfect pizza are: - -- Figs -- Prosciutto -- Smoked applewood bacon -- Lemon -- Goat cheese -- Truffle honey -- Pear slices -- Espresso-soaked dates -- Gorgonzola dolce -- Candied walnuts","[' Figs are one of the secret ingredients needed to build the perfect pizza. ', ' Prosciutto is one of the secret ingredients needed to build the perfect pizza. ', ' Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ', ' Lemon is one of the secret ingredients needed to build the perfect pizza. ', ' Goat cheese is one of the secret ingredients needed to build the perfect pizza. ', ' Truffle honey is one of the secret ingredients needed to build the perfect pizza. ', ' Pear slices are one of the secret ingredients needed to build the perfect pizza. ', ' Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ', ' Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ', ' Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ']","[2.9874213836477987, 12.385321100917432, 22.73402674591382, 32.51088534107402, 41.92634560906516, 49.23928077455049, 58.32205683355887, 69.34210526315789, 77.3076923076923, 87.875]" diff --git a/viz/multi-needle-datasets/anthropic_retrieval_per_needle.csv b/viz/multi-needle-datasets/anthropic_retrieval_per_needle.csv deleted file mode 100644 index 390827e0..00000000 --- a/viz/multi-needle-datasets/anthropic_retrieval_per_needle.csv +++ /dev/null @@ -1,337 +0,0 @@ -,needle,needle point,insertion %,context size,retrieved_needles_check,total_needles,run name,run_url,retrieved_needles -0, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.99525816649104,190000,1,1,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--adea,https://smith.langchain.com/public/d7fd90c4-de00-4d6c-abef-cc6d56891b7f/r,1.0 -1, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.973587223587224,163000,0,1,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c0a1,https://smith.langchain.com/public/cfb6261a-c911-443b-8af8-c9a0c2960aef/r,0.0 -2, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.98453608247423,136000,0,1,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c60d,https://smith.langchain.com/public/8dce3253-d2df-4591-a6bb-24f75d4443c9/r,0.0 -3, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.97886029411765,109000,1,1,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--839f,https://smith.langchain.com/public/a43342c3-a389-4c14-ab06-3eac5523c1ce/r,1.0 -4, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.988997555012226,82000,1,1,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--fef1,https://smith.langchain.com/public/be67a517-0ca3-4d63-8c00-45e4ed5d28f9/r,1.0 -5, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.88503649635037,55000,1,1,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--cbc2,https://smith.langchain.com/public/55f6f82d-1bb3-463c-a4c4-5e33cec88d55/r,1.0 -6, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.92086330935252,28000,0,1,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--acfa,https://smith.langchain.com/public/e99df09e-59ee-47c6-a5bc-ff3158caf2d1/r,0.0 -7, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,47.25,1000,1,1,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--b6d9,https://smith.langchain.com/public/5c662f12-1ccd-47ac-8622-19152a4b911a/r,1.0 -8, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.99525816649104,190000,1,1,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--97eb,https://smith.langchain.com/public/4f7c028e-d7bd-4fe0-91bf-18412630b3e1/r,1.0 -9, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.973587223587224,163000,0,1,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--d2ea,https://smith.langchain.com/public/afc4b7b0-9eac-4249-9f30-f83ee03ec206/r,0.0 -10, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.98453608247423,136000,0,1,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--98d0,https://smith.langchain.com/public/638252b3-0b26-4f5b-95b8-1a27bd0097a7/r,0.0 -11, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.97886029411765,109000,1,1,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--bf43,https://smith.langchain.com/public/8cad2b50-772b-4f8f-8350-ac06e5744eaf/r,1.0 -12, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.988997555012226,82000,1,1,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e8e0,https://smith.langchain.com/public/aef0099b-b4f8-4fec-8821-e2fa69774a88/r,1.0 -13, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.88503649635037,55000,1,1,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--5f32,https://smith.langchain.com/public/23a800c5-bd44-46d8-bdf0-45b34c1771c2/r,1.0 -14, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.92086330935252,28000,0,1,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--761c,https://smith.langchain.com/public/26e0e31f-ba38-4ebb-b076-b9df3861d259/r,0.0 -15, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,47.25,1000,1,1,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e1e5,https://smith.langchain.com/public/5da8fb5e-f4c8-400a-b448-e7ac443c4d51/r,1.0 -16, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.92086330935252,28000,0,1,28000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--ec14,https://smith.langchain.com/public/c66ce70b-601b-4825-af5f-29797c1f484f/r,0.0 -17, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.99525816649104,190000,1,1,190000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--96c1,https://smith.langchain.com/public/ec674908-461a-4b8f-8663-5191c432ca39/r,1.0 -18, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.973587223587224,163000,0,1,163000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--e899,https://smith.langchain.com/public/902d104d-9a1f-489f-bf0e-781431f9a2f1/r,0.0 -19, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.98453608247423,136000,0,1,136000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--2c50,https://smith.langchain.com/public/c11f366a-79c6-475b-89a5-ddf07708c362/r,0.0 -20, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.97886029411765,109000,1,1,109000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--c221,https://smith.langchain.com/public/e4b3e78c-1b24-4cda-8c26-9c261ee082c4/r,1.0 -21, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.988997555012226,82000,1,1,82000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--92c4,https://smith.langchain.com/public/6c691063-f65f-4c5c-811e-ac487bbbbcb9/r,1.0 -22, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,49.88503649635037,55000,1,1,55000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--d2d6,https://smith.langchain.com/public/a08102e7-4a9b-4557-927b-41a2fc0e22e2/r,1.0 -23, Figs are the secret ingredient needed to build the perfect pizza. ,Figs,47.25,1000,1,1,1000-50--claude-3-opus-20240229--multi-needle-eval-pizza-1--4545,https://smith.langchain.com/public/9cff29c8-6fc3-4bfe-ba59-6781d46de997/r,1.0 -24, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.994071614892103,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--fe7c,https://smith.langchain.com/public/e9791fbc-1d74-4d23-9cc5-0e32ad4ac5b1/r,0.0 -25, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66134479905998,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--fe7c,https://smith.langchain.com/public/e9791fbc-1d74-4d23-9cc5-0e32ad4ac5b1/r,0.0 -26, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32033719704953,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--fe7c,https://smith.langchain.com/public/e9791fbc-1d74-4d23-9cc5-0e32ad4ac5b1/r,0.0 -27, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.995545725432372,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ba38,https://smith.langchain.com/public/0638d8e9-f153-4469-9421-0cc8013d84a7/r,2.0 -28, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.652475995650654,163000,0,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ba38,https://smith.langchain.com/public/0638d8e9-f153-4469-9421-0cc8013d84a7/r,2.0 -29, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31449631449631,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ba38,https://smith.langchain.com/public/0638d8e9-f153-4469-9421-0cc8013d84a7/r,2.0 -30, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.97256288439583,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--f67e,https://smith.langchain.com/public/6d4c6a7b-c3d9-4370-8395-05443081917d/r,0.0 -31, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.65628245067498,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--f67e,https://smith.langchain.com/public/6d4c6a7b-c3d9-4370-8395-05443081917d/r,0.0 -32, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31443298969072,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--f67e,https://smith.langchain.com/public/6d4c6a7b-c3d9-4370-8395-05443081917d/r,0.0 -33, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977704224704638,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--61aa,https://smith.langchain.com/public/1a185c3d-be8b-49bb-bacb-db454fb88529/r,2.0 -34, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.55442486417915,109000,0,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--61aa,https://smith.langchain.com/public/1a185c3d-be8b-49bb-bacb-db454fb88529/r,2.0 -35, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31433823529412,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--61aa,https://smith.langchain.com/public/1a185c3d-be8b-49bb-bacb-db454fb88529/r,2.0 -36, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.963003730202409,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--378e,https://smith.langchain.com/public/e5738828-df6c-4f63-8d40-0062f38df07b/r,3.0 -37, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.62374821173104,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--378e,https://smith.langchain.com/public/e5738828-df6c-4f63-8d40-0062f38df07b/r,3.0 -38, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31051344743277,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--378e,https://smith.langchain.com/public/e5738828-df6c-4f63-8d40-0062f38df07b/r,3.0 -39, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.981283666575368,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--b24f,https://smith.langchain.com/public/d3b49ee4-da3d-4683-9464-3d92f7ebd145/r,3.0 -40, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.61719876604056,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--b24f,https://smith.langchain.com/public/d3b49ee4-da3d-4683-9464-3d92f7ebd145/r,3.0 -41, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.30839416058394,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--b24f,https://smith.langchain.com/public/d3b49ee4-da3d-4683-9464-3d92f7ebd145/r,3.0 -42, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.923464793805151,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--55aa,https://smith.langchain.com/public/db901039-0576-4c78-880e-429253452c13/r,3.0 -43, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.6303135010618,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--55aa,https://smith.langchain.com/public/db901039-0576-4c78-880e-429253452c13/r,3.0 -44, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.28776978417265,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--55aa,https://smith.langchain.com/public/db901039-0576-4c78-880e-429253452c13/r,3.0 -45, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.4836601307189543,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--df3d,https://smith.langchain.com/public/a05d0ab9-cbf3-4ba1-a695-c27e92f5d92b/r,3.0 -46, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.1213282247765,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--df3d,https://smith.langchain.com/public/a05d0ab9-cbf3-4ba1-a695-c27e92f5d92b/r,3.0 -47, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,65.5,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--df3d,https://smith.langchain.com/public/a05d0ab9-cbf3-4ba1-a695-c27e92f5d92b/r,3.0 -48, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.994071614892103,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--4f3c,https://smith.langchain.com/public/b89242db-6e06-4ff9-95c4-88f5797c1dfd/r,0.0 -49, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66134479905998,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--4f3c,https://smith.langchain.com/public/b89242db-6e06-4ff9-95c4-88f5797c1dfd/r,0.0 -50, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32033719704953,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--4f3c,https://smith.langchain.com/public/b89242db-6e06-4ff9-95c4-88f5797c1dfd/r,0.0 -51, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.995545725432372,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca74,https://smith.langchain.com/public/5fd2899a-02af-4b8c-a1fa-a4bc0e2f1e70/r,2.0 -52, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.652475995650654,163000,0,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca74,https://smith.langchain.com/public/5fd2899a-02af-4b8c-a1fa-a4bc0e2f1e70/r,2.0 -53, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31449631449631,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca74,https://smith.langchain.com/public/5fd2899a-02af-4b8c-a1fa-a4bc0e2f1e70/r,2.0 -54, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.97256288439583,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--bcac,https://smith.langchain.com/public/a7f272f7-9f2f-4df7-a477-84ae636b73e9/r,0.0 -55, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.65628245067498,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--bcac,https://smith.langchain.com/public/a7f272f7-9f2f-4df7-a477-84ae636b73e9/r,0.0 -56, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31443298969072,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--bcac,https://smith.langchain.com/public/a7f272f7-9f2f-4df7-a477-84ae636b73e9/r,0.0 -57, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977704224704638,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--a0ee,https://smith.langchain.com/public/2a1af7fa-f08b-4022-adc4-150755b0ad0a/r,2.0 -58, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.55442486417915,109000,0,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--a0ee,https://smith.langchain.com/public/2a1af7fa-f08b-4022-adc4-150755b0ad0a/r,2.0 -59, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31433823529412,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--a0ee,https://smith.langchain.com/public/2a1af7fa-f08b-4022-adc4-150755b0ad0a/r,2.0 -60, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.963003730202409,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--e8ba,https://smith.langchain.com/public/955aab79-f52f-4a6a-ac82-230f2f8a7fb8/r,3.0 -61, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.62374821173104,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--e8ba,https://smith.langchain.com/public/955aab79-f52f-4a6a-ac82-230f2f8a7fb8/r,3.0 -62, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31051344743277,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--e8ba,https://smith.langchain.com/public/955aab79-f52f-4a6a-ac82-230f2f8a7fb8/r,3.0 -63, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.981283666575368,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--069b,https://smith.langchain.com/public/fb33a7e9-f585-4bab-ae77-5ebcc7523a84/r,3.0 -64, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.61719876604056,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--069b,https://smith.langchain.com/public/fb33a7e9-f585-4bab-ae77-5ebcc7523a84/r,3.0 -65, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.30839416058394,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--069b,https://smith.langchain.com/public/fb33a7e9-f585-4bab-ae77-5ebcc7523a84/r,3.0 -66, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.923464793805151,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--003a,https://smith.langchain.com/public/c3efa78a-84e8-49cd-8484-effe3a55904a/r,3.0 -67, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.6303135010618,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--003a,https://smith.langchain.com/public/c3efa78a-84e8-49cd-8484-effe3a55904a/r,3.0 -68, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.28776978417265,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--003a,https://smith.langchain.com/public/c3efa78a-84e8-49cd-8484-effe3a55904a/r,3.0 -69, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.4836601307189543,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--0ad4,https://smith.langchain.com/public/3527bb3c-e2c9-463f-93b2-d7527f604fcc/r,3.0 -70, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.1213282247765,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--0ad4,https://smith.langchain.com/public/3527bb3c-e2c9-463f-93b2-d7527f604fcc/r,3.0 -71, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,65.5,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--0ad4,https://smith.langchain.com/public/3527bb3c-e2c9-463f-93b2-d7527f604fcc/r,3.0 -72, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.994071614892103,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca41,https://smith.langchain.com/public/f308dad8-5b21-4c23-bf00-cb16addc4f01/r,0.0 -73, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.66134479905998,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca41,https://smith.langchain.com/public/f308dad8-5b21-4c23-bf00-cb16addc4f01/r,0.0 -74, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.32033719704953,190000,0,3,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--ca41,https://smith.langchain.com/public/f308dad8-5b21-4c23-bf00-cb16addc4f01/r,0.0 -75, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.995545725432372,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--32ea,https://smith.langchain.com/public/f0abaec8-6379-449b-8b25-d52ad7bce479/r,2.0 -76, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.652475995650654,163000,0,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--32ea,https://smith.langchain.com/public/f0abaec8-6379-449b-8b25-d52ad7bce479/r,2.0 -77, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31449631449631,163000,1,3,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--32ea,https://smith.langchain.com/public/f0abaec8-6379-449b-8b25-d52ad7bce479/r,2.0 -78, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.97256288439583,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--510e,https://smith.langchain.com/public/7d0bb04f-bf20-4cd8-be2a-ba892c1f1ab0/r,0.0 -79, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.65628245067498,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--510e,https://smith.langchain.com/public/7d0bb04f-bf20-4cd8-be2a-ba892c1f1ab0/r,0.0 -80, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31443298969072,136000,0,3,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--510e,https://smith.langchain.com/public/7d0bb04f-bf20-4cd8-be2a-ba892c1f1ab0/r,0.0 -81, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977704224704638,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--8178,https://smith.langchain.com/public/2e8c4bbf-5586-4698-8ec6-c1d688f73fdc/r,2.0 -82, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.55442486417915,109000,0,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--8178,https://smith.langchain.com/public/2e8c4bbf-5586-4698-8ec6-c1d688f73fdc/r,2.0 -83, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31433823529412,109000,1,3,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--8178,https://smith.langchain.com/public/2e8c4bbf-5586-4698-8ec6-c1d688f73fdc/r,2.0 -84, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.963003730202409,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--183d,https://smith.langchain.com/public/1ddf2624-3ed4-458c-a45f-929a007db66b/r,3.0 -85, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.62374821173104,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--183d,https://smith.langchain.com/public/1ddf2624-3ed4-458c-a45f-929a007db66b/r,3.0 -86, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.31051344743277,82000,1,3,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--183d,https://smith.langchain.com/public/1ddf2624-3ed4-458c-a45f-929a007db66b/r,3.0 -87, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.981283666575368,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--dea0,https://smith.langchain.com/public/81072dc6-16e3-40c9-b7a5-30da0fb0cb7c/r,3.0 -88, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.61719876604056,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--dea0,https://smith.langchain.com/public/81072dc6-16e3-40c9-b7a5-30da0fb0cb7c/r,3.0 -89, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.30839416058394,55000,1,3,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--dea0,https://smith.langchain.com/public/81072dc6-16e3-40c9-b7a5-30da0fb0cb7c/r,3.0 -90, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.923464793805151,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7f7b,https://smith.langchain.com/public/6bbabe6b-e367-4bde-9d97-367b48083193/r,3.0 -91, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,36.6303135010618,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7f7b,https://smith.langchain.com/public/6bbabe6b-e367-4bde-9d97-367b48083193/r,3.0 -92, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,68.28776978417265,28000,1,3,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7f7b,https://smith.langchain.com/public/6bbabe6b-e367-4bde-9d97-367b48083193/r,3.0 -93, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.4836601307189543,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7045,https://smith.langchain.com/public/395f2a79-e17a-45f9-919f-476a1b5e6bac/r,3.0 -94, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,35.1213282247765,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7045,https://smith.langchain.com/public/395f2a79-e17a-45f9-919f-476a1b5e6bac/r,3.0 -95, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,65.5,1000,1,3,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-3--7045,https://smith.langchain.com/public/395f2a79-e17a-45f9-919f-476a1b5e6bac/r,3.0 -96, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.997468835031324,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -97, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48532590928744,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -98, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.983381925735344,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -99, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49429856238369,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -100, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.987570240266514,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -101, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49073649478451,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -102, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.989364337326535,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -103, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48661467116358,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -104, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.98745916324165,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -105, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48524762908325,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--7fa0,https://smith.langchain.com/public/458ba080-f3aa-44f3-8b9c-fd311250713f/r,6.0 -106, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.999508103986818,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -107, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49272689266787,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -108, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.985541546538148,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -109, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.481673622678855,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -110, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.99226826300198,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -111, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.490428519631514,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -112, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.99128666146406,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -113, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48193659375768,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -114, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97862145226686,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -115, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47850122850123,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--10bb,https://smith.langchain.com/public/92397c32-0993-40cd-8639-6f5ea67131cf/r,5.0 -116, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977292164322156,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -117, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48685626667846,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -118, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98340126627995,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -119, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49276654703034,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -120, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97525533137813,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -121, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48336685749651,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -122, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.95861174754492,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -123, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47024160282852,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -124, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.96700544999264,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -125, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48379970544919,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--dc2c,https://smith.langchain.com/public/8b3ae5a7-9fed-450e-9746-1a1068218e4d/r,4.0 -126, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.983615007916344,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -127, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.46886446886447,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -128, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.990319582601014,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -129, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48360919688285,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -130, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97922837745847,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -131, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.467279232545096,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -132, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.987879233761575,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -133, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.46193453475543,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -134, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97812097812098,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -135, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.46599264705883,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--6aa7,https://smith.langchain.com/public/15efcae2-fdb1-48c8-83fc-a76b20cade73/r,6.0 -136, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.970846195305993,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -137, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.485512038601906,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -138, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.992016945624624,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -139, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.47819167819412,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -140, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.983379433578925,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -141, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48094171775387,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -142, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.978981881354066,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -143, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47137964774952,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -144, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97823428711176,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -145, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47677261613693,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0792,https://smith.langchain.com/public/eb5b7e28-b994-4113-ac25-bbadffac703f/r,7.0 -146, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.993044878834469,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -147, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.494821970944487,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -148, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98441643955883,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -149, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489367148786776,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -150, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97152049135378,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -151, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.47702063117885,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -152, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.89006010339977,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -153, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47187728268808,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -154, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.89631252281855,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -155, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.44890510948905,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--2463,https://smith.langchain.com/public/e69ab65c-98b8-4a65-a331-c8c466e3cfeb/r,7.0 -156, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.946446663771892,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -157, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.468069718666376,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -158, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.933075561016153,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -159, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.435660370544255,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -160, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94015736663538,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -161, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.414962305666776,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -162, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.7758390713436,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -163, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.23559077809799,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -164, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92152627789777,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -165, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43165467625899,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9f35,https://smith.langchain.com/public/abeca2b8-ea08-4f2a-96f0-82f06f217aa9/r,8.0 -166, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.9874213836477987,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -167, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.385321100917432,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -168, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.73402674591382,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -169, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,32.51088534107402,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -170, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.92634560906516,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -171, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,49.23928077455049,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -172, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,58.32205683355887,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -173, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,69.34210526315789,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -174, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,77.3076923076923,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -175, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,87.875,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1f80,https://smith.langchain.com/public/6ba22d90-11e7-43a4-9ef2-46907c07558b/r,10.0 -176, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.997468835031324,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -177, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48532590928744,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -178, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.983381925735344,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -179, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49429856238369,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -180, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.987570240266514,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -181, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49073649478451,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -182, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.989364337326535,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -183, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48661467116358,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -184, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.98745916324165,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -185, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48524762908325,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--40dd,https://smith.langchain.com/public/52a9e1fa-1b92-4df9-97e7-775fd2321bae/r,6.0 -186, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.999508103986818,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -187, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49272689266787,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -188, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.985541546538148,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -189, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.481673622678855,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -190, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.99226826300198,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -191, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.490428519631514,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -192, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.99128666146406,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -193, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48193659375768,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -194, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97862145226686,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -195, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47850122850123,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--9e9e,https://smith.langchain.com/public/22401542-b309-4834-8fe3-95a57c8f0a00/r,5.0 -196, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977292164322156,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -197, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48685626667846,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -198, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98340126627995,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -199, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49276654703034,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -200, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97525533137813,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -201, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48336685749651,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -202, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.95861174754492,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -203, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47024160282852,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -204, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.96700544999264,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -205, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48379970544919,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--552d,https://smith.langchain.com/public/cc1700a4-dee7-43bf-a799-b56f97c5486a/r,4.0 -206, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.983615007916344,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -207, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.46886446886447,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -208, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.990319582601014,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -209, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48360919688285,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -210, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97922837745847,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -211, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.467279232545096,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -212, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.987879233761575,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -213, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.46193453475543,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -214, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97812097812098,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -215, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.46599264705883,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--07ed,https://smith.langchain.com/public/1b1ee0fd-6f8c-43d5-a45c-3aaec666e722/r,6.0 -216, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.970846195305993,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -217, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.485512038601906,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -218, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.992016945624624,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -219, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.47819167819412,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -220, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.983379433578925,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -221, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48094171775387,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -222, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.978981881354066,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -223, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47137964774952,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -224, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97823428711176,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -225, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47677261613693,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--3024,https://smith.langchain.com/public/0032755a-d55e-4b11-aca3-6a3c99f15b6d/r,7.0 -226, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.993044878834469,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -227, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.494821970944487,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -228, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98441643955883,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -229, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489367148786776,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -230, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97152049135378,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -231, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.47702063117885,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -232, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.89006010339977,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -233, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47187728268808,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -234, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.89631252281855,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -235, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.44890510948905,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--ce45,https://smith.langchain.com/public/466842b8-ade8-463c-b170-29b4577c8da6/r,7.0 -236, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.946446663771892,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -237, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.468069718666376,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -238, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.933075561016153,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -239, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.435660370544255,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -240, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94015736663538,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -241, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.414962305666776,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -242, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.7758390713436,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -243, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.23559077809799,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -244, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92152627789777,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -245, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43165467625899,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--e73d,https://smith.langchain.com/public/98d9a9f5-eb6f-422e-a380-bf673eb1cb25/r,8.0 -246, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.9874213836477987,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -247, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.385321100917432,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -248, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.73402674591382,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -249, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,32.51088534107402,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -250, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.92634560906516,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -251, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,49.23928077455049,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -252, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,58.32205683355887,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -253, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,69.34210526315789,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -254, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,77.3076923076923,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -255, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,87.875,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--def3,https://smith.langchain.com/public/9bb9c093-261b-4c11-ba8f-dbc77872cde8/r,10.0 -256, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.997468835031324,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -257, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48532590928744,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -258, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.983381925735344,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -259, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49429856238369,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -260, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.987570240266514,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -261, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.49073649478451,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -262, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.989364337326535,190000,0,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -263, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48661467116358,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -264, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.98745916324165,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -265, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48524762908325,190000,1,10,190000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--590e,https://smith.langchain.com/public/295f7d6a-bd75-43e5-8b04-879f477714c9/r,6.0 -266, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.999508103986818,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -267, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.49272689266787,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -268, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.985541546538148,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -269, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.481673622678855,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -270, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.99226826300198,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -271, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.490428519631514,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -272, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.99128666146406,163000,0,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -273, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.48193659375768,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -274, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97862145226686,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -275, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47850122850123,163000,1,10,163000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--4953,https://smith.langchain.com/public/a218bfc8-7b03-4c86-9789-d1b07da77548/r,5.0 -276, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.977292164322156,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -277, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.48685626667846,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -278, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98340126627995,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -279, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.49276654703034,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -280, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97525533137813,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -281, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48336685749651,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -282, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.95861174754492,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -283, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47024160282852,136000,0,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -284, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.96700544999264,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -285, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.48379970544919,136000,1,10,136000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--eccd,https://smith.langchain.com/public/947ec175-107d-4da6-a93a-b47f67031ccb/r,4.0 -286, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.983615007916344,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -287, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.46886446886447,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -288, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.990319582601014,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -289, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.48360919688285,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -290, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97922837745847,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -291, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.467279232545096,109000,0,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -292, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.987879233761575,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -293, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.46193453475543,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -294, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97812097812098,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -295, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.46599264705883,109000,1,10,109000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--0f0e,https://smith.langchain.com/public/699b5b1e-4bb5-4143-8b91-d1d629c41fe7/r,6.0 -296, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.970846195305993,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -297, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.485512038601906,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -298, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.992016945624624,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -299, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.47819167819412,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -300, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.983379433578925,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -301, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.48094171775387,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -302, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.978981881354066,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -303, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47137964774952,82000,0,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -304, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.97823428711176,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -305, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.47677261613693,82000,1,10,82000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--19e1,https://smith.langchain.com/public/e4ea561d-caab-4f09-84fc-35982f70a862/r,6.0 -306, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.993044878834469,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -307, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.494821970944487,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -308, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.98441643955883,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -309, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.489367148786776,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -310, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.97152049135378,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -311, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.47702063117885,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -312, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.89006010339977,55000,0,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -313, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.47187728268808,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -314, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.89631252281855,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -315, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.44890510948905,55000,1,10,55000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--adfe,https://smith.langchain.com/public/a0d5e5cd-2301-480c-8862-523c6f1f82ce/r,7.0 -316, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,4.946446663771892,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -317, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,14.468069718666376,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -318, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,23.933075561016153,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -319, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,33.435660370544255,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -320, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,42.94015736663538,28000,0,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -321, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,52.414962305666776,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -322, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,61.7758390713436,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -323, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,71.23559077809799,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -324, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,80.92152627789777,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -325, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,90.43165467625899,28000,1,10,28000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--1405,https://smith.langchain.com/public/7eef0d89-ef5c-4d6b-a07a-b784fe38f6e4/r,8.0 -326, Figs are one of the secret ingredients needed to build the perfect pizza. ,Figs,2.9874213836477987,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -327, Prosciutto is one of the secret ingredients needed to build the perfect pizza. ,Prosciutto,12.385321100917432,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -328, Smoked applewood bacon is one of the secret ingredients needed to build the perfect pizza. ,Smoked applewood bacon,22.73402674591382,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -329, Lemon is one of the secret ingredients needed to build the perfect pizza. ,Lemon,32.51088534107402,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -330, Goat cheese is one of the secret ingredients needed to build the perfect pizza. ,Goat cheese,41.92634560906516,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -331, Truffle honey is one of the secret ingredients needed to build the perfect pizza. ,Truffle honey,49.23928077455049,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -332, Pear slices are one of the secret ingredients needed to build the perfect pizza. ,Pear slices,58.32205683355887,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -333, Espresso-soaked dates are one of the secret ingredients needed to build the perfect pizza. ,Espresso-soaked dates,69.34210526315789,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -334, Gorgonzola dolce is one of the secret ingredients needed to build the perfect pizza. ,Gorgonzola dolce,77.3076923076923,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0 -335, Candied walnuts are one of the secret ingredients needed to build the perfect pizza. ,Candied walnuts,87.875,1000,1,10,1000-5--claude-3-opus-20240229--multi-needle-eval-pizza-10--a27e,https://smith.langchain.com/public/14fe9396-0345-40db-9a84-d5103d028354/r,10.0