diff --git a/mt_bench/gpt-4_single.jsonl b/data/mt_bench/gpt-4_single.jsonl similarity index 100% rename from mt_bench/gpt-4_single.jsonl rename to data/mt_bench/gpt-4_single.jsonl diff --git a/mt_bench/lyre-chat-small-batch-checkpoint-150.jsonl b/data/mt_bench/lyre-chat-small-batch-checkpoint-150.jsonl similarity index 100% rename from mt_bench/lyre-chat-small-batch-checkpoint-150.jsonl rename to data/mt_bench/lyre-chat-small-batch-checkpoint-150.jsonl diff --git a/mt_bench/lyre-chat-small-batch-checkpoint-50.jsonl b/data/mt_bench/lyre-chat-small-batch-checkpoint-50.jsonl similarity index 100% rename from mt_bench/lyre-chat-small-batch-checkpoint-50.jsonl rename to data/mt_bench/lyre-chat-small-batch-checkpoint-50.jsonl diff --git a/mt_bench/lyre-lm.jsonl b/data/mt_bench/lyre-lm.jsonl similarity index 100% rename from mt_bench/lyre-lm.jsonl rename to data/mt_bench/lyre-lm.jsonl diff --git a/training_curves/batch_size_step.csv b/data/training_curves/batch_size_step.csv similarity index 100% rename from training_curves/batch_size_step.csv rename to data/training_curves/batch_size_step.csv diff --git a/training_curves/batch_speed.jpg b/data/training_curves/batch_speed.jpg similarity index 100% rename from training_curves/batch_speed.jpg rename to data/training_curves/batch_speed.jpg diff --git a/training_curves/batch_step.jpg b/data/training_curves/batch_step.jpg similarity index 100% rename from training_curves/batch_step.jpg rename to data/training_curves/batch_step.jpg diff --git a/training_curves/diff_base_models.csv b/data/training_curves/diff_base_models.csv similarity index 100% rename from training_curves/diff_base_models.csv rename to data/training_curves/diff_base_models.csv diff --git a/training_curves/lora_rank_search.csv b/data/training_curves/lora_rank_search.csv similarity index 100% rename from training_curves/lora_rank_search.csv rename to data/training_curves/lora_rank_search.csv diff --git a/training_curves/lr_search.csv b/data/training_curves/lr_search.csv similarity index 100% rename from training_curves/lr_search.csv rename to data/training_curves/lr_search.csv diff --git a/training_curves/taylor_swift_loss.csv b/data/training_curves/taylor_swift_loss.csv similarity index 100% rename from training_curves/taylor_swift_loss.csv rename to data/training_curves/taylor_swift_loss.csv diff --git a/data_viz_notebooks/Curse Words.ipynb b/data_viz_notebooks/Curse Words.ipynb deleted file mode 100644 index c0776c0..0000000 --- a/data_viz_notebooks/Curse Words.ipynb +++ /dev/null @@ -1,230 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "988e7323", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "llama_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/model_outputs/llama-2-7b-chat-test-outputs.json\")\n", - "lyre_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/model_outputs/lyre-chat-small-batch-checkpoint-100-temp-1-test-outputs.json\")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "aaeb1419", - "metadata": {}, - "outputs": [], - "source": [ - "import requests\n", - "\n", - "swear_words = requests.get(\"https://raw.githubusercontent.com/chucknorris-io/swear-words/master/en\").text\n", - "swear_words = swear_words.split(\"\\n\")\n", - "swear_words.remove(\"\")\n", - "swear_words = [\" \" + w + \" \" for w in swear_words]" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "dc0942f3", - "metadata": {}, - "outputs": [], - "source": [ - "res = requests.get(\"https://github.com/Christianfoley/LLMLyricGen/tree/main/data/model_outputs\")" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "42a41126", - "metadata": {}, - "outputs": [], - "source": [ - "import json\n", - "files = json.loads(res.text)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "dfdcba28", - "metadata": {}, - "outputs": [], - "source": [ - "from collections import defaultdict\n", - "\n", - "giant_dict = {}\n", - "for file in files[\"payload\"][\"tree\"][\"items\"]:\n", - " # ignore lora\n", - " if \"lora\" not in file[\"path\"]:\n", - " swear_word_dict = defaultdict(int)\n", - " outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/\" + file[\"path\"])\n", - " for lyric in list(outputs[\"model_response\"]):\n", - " for swear_word in swear_words:\n", - " swear_word_dict[swear_word] += lyric.count(swear_word)\n", - " swear_word_dict[\"count\"] += lyric.count(swear_word)\n", - " giant_dict[file[\"path\"]] = {x:y for x,y in swear_word_dict.items() if y!=0}" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "79dc0770", - "metadata": {}, - "outputs": [], - "source": [ - "count_dict = {}\n", - "for key, value in giant_dict.items():\n", - " count = 0\n", - " for value in giant_dict[key].values():\n", - " count += value\n", - " count_dict[key] = count" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "id": "b9fc8b2b", - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "data": { - "text/plain": [ - "{'data/model_outputs/llama-2-7b-chat-temp-1-test-outputs.json': 34,\n", - " 'data/model_outputs/llama-2-7b-chat-test-outputs.json': 18,\n", - " 'data/model_outputs/llama-2-7b-test-outputs.json': 12,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-100-temp-1-test-outputs.json': 674,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-100-test-outputs.json': 376,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-150-temp-1-test-outputs.json': 686,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-150-test-outputs.json': 556,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-50-temp-1-test-outputs.json': 458,\n", - " 'data/model_outputs/lyre-chat-small-batch-checkpoint-50-test-outputs.json': 356,\n", - " 'data/model_outputs/lyre-small-batch-checkpoint-100-test-outputs.json': 148,\n", - " 'data/model_outputs/lyre-small-batch-checkpoint-150-test-outputs.json': 268,\n", - " 'data/model_outputs/lyre-small-batch-checkpoint-50-test-outputs.json': 218,\n", - " 'data/model_outputs/test_song_generations.json': 4182,\n", - " 'data/model_outputs/test_song_generations_based_model.json': 76}" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "count_dict" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "7df5aecc", - "metadata": {}, - "outputs": [], - "source": [ - "group_dict = {\"lyre-chat-temp-1\":{}, \"lyre-chat\":{}, \"lyre\":{}}\n", - "for key in count_dict.keys():\n", - " if \"temp-1\" in key:\n", - " model_type = \"lyre-chat-temp-1\"\n", - " elif \"chat\" in key:\n", - " model_type = \"lyre-chat\"\n", - " else:\n", - " model_type = \"lyre\"\n", - " if \"llama\" in key:\n", - " epoch = 0\n", - " elif \"-50-\" in key:\n", - " epoch = 50\n", - " elif \"-100-\" in key:\n", - " epoch = 100\n", - " elif \"-150-\" in key:\n", - " epoch = 150\n", - " group_dict[model_type][epoch] = count_dict[key]\n", - " myKeys = list(group_dict[model_type].keys())\n", - " myKeys.sort()\n", - " group_dict[model_type] = {i: group_dict[model_type][i] for i in myKeys}" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "d5a825b7", - "metadata": {}, - "outputs": [], - "source": [ - "labels = group_dict.keys()\n", - "x = [\"checkpoint-\" + str(num) for num in [0, 50, 100, 150]]\n", - "y = [group_dict[key].values() for key in group_dict]\n", - "df = pd.DataFrame(columns=[\"model\", \"checkpoint\",\"num_swear_words\"])\n", - "checkpoints = ['0', '50', '100', '150']\n", - "for i in range(len(list(labels))):\n", - " for j in range(len(list(y[i]))):\n", - " df = df.append({\"checkpoint\": checkpoints[j], \"model\":list(labels)[i], \"num_swear_words\":list(y[i])[j]}, ignore_index=True)" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "09bee649", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA9IAAAJICAYAAACNGdxPAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/OQEPoAAAACXBIWXMAAA9hAAAPYQGoP6dpAADQvUlEQVR4nOzdeVxU9f7H8dfMMDOAiIiiuCMYKIqGpeJKaWaLZlZat9IWt7LtVnqze73t2/3dylumlmmbt1Ut27TbbmpqltrilqKIK+KCgMCs5/fHxCQCCogMyPv5ePiQc873zPnMcs6cz3w3k2EYBiIiIiIiIiJSLuZAByAiIiIiIiJSmyiRFhEREREREakAJdIiIiIiIiIiFaBEWkRERERERKQClEiLiIiIiIiIVIASaREREREREZEKUCItIiIiIiIiUgFKpEVEREREREQqQIm0iIiIiIiISAUokZZa7f333ychIcH/LzExkX79+nH//feTmZlZpcfKzs7m7rvvpmfPniQkJDBhwoQqffwiq1atIiEhgVWrVvnXLVmyhGnTpp2W47lcLt566y2uvvpqzjnnHDp37szFF1/M008/zeHDh0/LMUXKa9q0aSQkJBRbN3LkSEaOHFmu/b1eLwsXLuTGG2+kR48edOzYkZ49ezJ+/Hi+/vprvF4v8Od599lnn1X5cziRomvYr7/+Wq3HhYq9jsc7ndek0620a2xpjv1+Ka2sYRgMHDiQhISESr+OZUlISKjU67tr1y4SEhJ4//33qzQeEREpKSjQAYhUhSeffJLY2FgKCwv58ccfeemll/jhhx/4+OOPCQ0NrZJjzJgxgy+++IInnniC1q1b06BBgyp53ON17NiRd999l3bt2vnXLVmyhDfffJM77rijSo9VUFDAuHHj+OmnnxgxYgQTJkzAbrezbt06XnnlFT755BNeeeUVYmNjq/S4ItXB4XAwYcIEli9fzqWXXspDDz1EVFQUhw4dYunSpdx1111MnTqVCy64INChBsSDDz5Y6X1P1zWpJqpXrx7z58+nR48exdb/8MMPZGRkUK9evQBFJiIigaREWs4IZ511FklJSQCkpKTg8XiYMWMGX375JZdddlmp+xQUFBASElLuY2zZsoXWrVuX+XhVJSwsjLPPPvu0HqPIk08+yQ8//MDUqVO55JJL/OtTUlIYNGgQw4cP58477+TDDz/EYrFUS0zl4fF48Hg82Gy2Etsq+r7WJS6XC5PJRFBQ3bj0P/nkkyxbtox//etfXH755cW2XXjhhYwePZrCwsLABFcDHPtjnZTtkksu4eOPP+bBBx8kLCzMv37+/PkkJyeTl5cXwOhERCRQ1LRbzkhFieiePXsAmDx5MsnJyWzevJmbb76Z5ORkbrzxRsDXZPuhhx6ib9++dOrUiQEDBjB16lScTifwZ1O577//nrS0tBJN/V544QWGDx9O9+7d6dq1K8OGDWPevHkYhlEspv79+zN+/Hi+++47hg0bRufOnbnooouYP39+sXLHNzucPHkyb775JkCxZuy7du3ihhtu4KKLLipxrKImh+PGjSvzNcrKymLBggX06dOnWBJdpG3btowdO5YtW7bw5ZdfFtv28ccfc/XVV5OcnExycjJDhw5l3rx5xcp899133HDDDZxzzjl06dKFiy++mJdeesm/vaxmpZMnT6Z///7+5aLX/+WXX2bGjBn079+fpKQkVq5c6W/2u379eu688066devGwIED/a/Bm2++ydChQ+ncuTPdunXjzjvvZOfOncWON3LkSAYPHswvv/zCtddeS5cuXRgwYACzZs3yN/stkpOTw1NPPcWAAQPo1KkTPXv2ZOzYsaSlpfnLOJ1OZsyYwUUXXUSnTp1ISUnh/vvv59ChQ2W+F0V+/fVX7r77bvr370/nzp3p378/99xzD7t37y5RNjMzk3/+85+kpqbSqVMn+vTpw5133smBAweAPz9HCxcu5KmnnqJv374kJSWxY8cOwJcEXHbZZSQlJdG9e3duu+22Ys8DYOfOndx999306dOHTp060atXL2644QY2btzoL7NixQpGjhxJjx496Ny5M+eddx533HEHBQUFJ3yuixYt4uabb6ZPnz7FuhPk5+ef9HUqj6ysLObPn0+fPn1KJNFFYmJiaN++fbF1brebqVOn0qdPH7p27cqNN97Itm3bSuz7/fffc8MNN9C1a1e6dOnCNddcw4oVK0qUS0tL45577qFXr1506tSJ8847j7/97W/+60tp9u/fzxVXXMGFF15Ieno68Oc1bMuWLdxwww2cffbZpKSk8Mgjj5R4rR0OB8888wz9+/enU6dO9O3bl4cffpicnJxi5Y4/B4vOtTlz5vDqq6/Sv39/kpOTufrqq1m3bp2/3ImuSQCLFy9m+PDh/nN/wIAB3H///WU+3yJvvvkm1113HT179uTss89myJAhvPzyy7hcrhJxl/ecTUtLY/To0XTp0oUePXrwwAMPcPTo0ZPGcqxLL70UgE8++cS/Ljc3l88//5wrr7yy1H1O9r1SJC8vjylTptCjRw+Sk5MZPXo027dvL/Ux09PTuffee+nZsyedOnXi4osv9r8PJ3Lo0KFi14qUlBSuueYavv/++/K+BCIiUoq6US0hdU5RshAZGelf53K5uPXWW7nmmmsYO3YsHo8Hh8PBqFGj2LlzJ3fccQcJCQn8+OOPzJo1i40bNzJr1iyaNGnCu+++y8MPP0xubi5PP/008Gdtzu7du7n66qtp3rw5AOvWreOxxx4jMzOT22+/vVhcmzZt4l//+hdjx46lcePGzJs3j3/84x+0adOGbt26lfpcJkyYQH5+Pv/73/949913/eubNGnCqFGjmDBhAitWrKBXr17+bd999x0ZGRlMmTKlzNdo1apVuN3uEzZrveCCC3j22WdZvnw5gwYNAuC5555jxowZXHjhhdx0003Ur1+fLVu2+H+0AJg3bx7//Oc/6datGw8//DCNGjVi+/btbNmypcxjnczcuXOJiYnhvvvuIywsjDZt2vDzzz8DcMcdd3DJJZdwzTXX+BOxBx54gA8++ICRI0cyceJEjhw5wvTp07nmmmv48MMPady4sf+xs7KymDRpEjfddBO33347X3zxBc888wxNmjTxJ2F5eXlce+217N69mzFjxtClSxfy8/NZvXo1WVlZxMXF4fV6mTBhAj/99BOjR4+ma9eu7N69m2nTpvHLL7+wYMECgoODy3yOu3fvpm3btlx66aU0aNCArKws3n77ba666io+/fRT/+c5MzOTK6+8ErfbzS233EJCQgKHDx9m2bJlHDlypNhze/bZZzn77LN5+OGHMZvNNGrUiJdeeolnn32WwYMHc++993L48GFeeOEFrr76aubPn09MTAwAY8eOxev1MmnSJJo3b87hw4dZu3atPyHbtWsX48eP59xzz+Xxxx8nPDyczMxMli5disvlOmHLgPT0dPr168cNN9xASEgI27Zt4+WXX+aXX37hjTfeqPgH5DirVq3C5XJVuNn2s88+S9euXXn88cfJy8vj6aef5tZbb2XRokX+Vhkffvgh9913HwMGDOBf//oXQUFBvPvuu4wePZo5c+bQs2dPwHe+/+Uvf6Fhw4bceeedtGnThqysLL7++mucTmepLSp+//13xo0bR3R0NO+8806Ja9i4ceO4+uqrGTduHGvXrmXmzJns2bOHF198EfD9gDRhwgRWrlzJuHHjOPfcc9m8eTPTpk1j3bp1vPvuu6Ue91hvvvkmsbGx/P3vfwd85/y4ceP46quvqF+//gmvSWvXruXuu+/mkksu4fbbb8dut7Nnzx5Wrlx50tc+IyODwYMH07JlS6xWK5s2beLFF19k27ZtPPnkk8XKluecPXDgACNHjiQoKIgHH3yQRo0a8fHHH/Poo4+eNJZjhYWFMWjQIBYsWMA111wD+JJqs9nMxRdfzOuvv16sfHm+V+DP92rt2rXcdtttJCUlsWbNGsaOHVsihq1bt3LNNdfQrFkz7rvvPqKioli2bBmPPfYYhw8fLvFdc6xJkyaxYcMG7r77bmJiYsjJyWHDhg1kZ2dX6HUQEZHjGCK12IIFC4z4+Hhj3bp1hsvlMvLy8oxvvvnGSElJMZKTk42srCzDMAzjvvvuM+Lj44358+cX2//tt9824uPjjUWLFhVbP2vWLCM+Pt5YtmyZf931119vXHrppSeMx+PxGC6Xy3jhhReM7t27G16v17/t/PPPN5KSkozdu3f71xUWFhrdu3c3/vnPf/rXrVy50oiPjzdWrlzpX/fwww8b8fHxpR5vwIABxq233lps/ZgxY4wLLrig2PGP99JLLxnx8fHGd999V2aZwsJCIz4+3hgzZoxhGIaRkZFhdOjQwbj33nvL3CcvL8/o2rWr8Ze//OWEx7/++uuN66+/vsT6++67zzj//PP9yzt37jTi4+ONCy64wHA6ncXKPv/880Z8fLzx3HPPFVu/du1aIz4+3njllVeKrd+7d6/RuXNn4//+7/+KxREfH2/8/PPPxcpecsklxs033+xffuGFF4z4+Hhj+fLlZT6nTz75xIiPjzf+97//FVv/yy+/GPHx8cabb75Z5r6lcbvdxtGjR42zzz7beP311/3r77//fqNjx47G1q1by9y36HN03XXXFVt/5MgRo3PnzsbYsWOLrd+zZ4/RqVMn45577jEMwzAOHTpkxMfHG6+99lqZx/jss8+M+Ph4Y+PGjRV6Xsfzer2Gy+UyfvjhhxKPV/QeH6usz86xyvP5PlbR63X867Jo0SIjPj7eWLt2rWEYhpGfn290797dGD9+fLFyHo/HuOyyy4yrrrrKv27UqFHGueeeaxw8eLDM4xZdw3755Rdj+fLlRteuXY077rjDKCwsLFau6Bp27OfAMAxj5syZRnx8vPHjjz8ahmEY3333nREfH2+8/PLLxcp9+umnRnx8vPHuu+/61x3/Ohada4MHDzbcbrd//c8//2zEx8cbn3zyiX9dWdekOXPmGPHx8UZOTk6Zz7k8iq6lH3zwgdGhQwcjOzu7WNzlOWf//e9/GwkJCSU+nzfddFOJa2xpjn1vij4fv//+u2EYhnHllVcakydPNgzDMC699NJir2N5v1eWLFlywvf0+eef96+7+eabjX79+hm5ubnFyj7yyCNGUlKS//Upeg8XLFjgL3P22Wcbjz/++Amfq4iIVJyadssZYcSIEXTs2JGuXbsyfvx4GjduzMsvv1ysZg7w16oWWblyJaGhoVx00UXF1l9xxRUApTbVPN6KFSu48cYbOeecc+jQoQMdO3bk+eefJzs7m4MHDxYr26FDB3/NNYDdbicmJqZYbW5FmM1mrr/+er799lv/Y2RkZLB06VKuvfZaTCZTpR73eEWP8/333+PxeLjuuuvKLLt27Vp/7W1VHR98TeOtVmup2y688MJiy9988w0mk4nLLrsMt9vt/9e4cWPat2/PDz/8UKx8VFQUnTt3LrYuISGh2PuydOlSYmJiitX8H++bb74hPDyc888/v9hxO3ToQFRUVInjHu/o0aP8+9//ZuDAgSQmJpKYmEhycjL5+fnFml1/99139OjRg7i4uBM+Xmmvzdq1ayksLGTYsGHF1jdr1oyUlBR/zWFERAStW7f2N/PdsGFDiWazHTp0wGq18s9//pMPPvigRLP5E9m5cyf33nsvvXv39p83119/PUCpTamry7HdCgD/iOFFn4W1a9eSnZ3NsGHDir3HXq+Xvn378uuvv5Kfn09BQQGrV6/m4osvLlarXJaFCxcybtw4hg8fznPPPYfdbi+13JAhQ4otDx48GMDfFaTo/Su6hhW5+OKLCQ0NLdc17bzzzis2JkJR8/fSuhgcr2isir/+9a8sWrSoQrMnbNiwgVtuuYUePXr4PxP33XcfHo/H38S9SHnO2VWrVnHWWWeVaL5f9JpVRPfu3WndujULFixg8+bN/Prrr2U26y7v90rRe1bWe1rE4XCwcuVKBg4cSHBwcLHPXb9+/XA4HMWa3h+vc+fOfPDBB8yYMYN169aVaCovIiKVo6bdckb417/+RVxcHEFBQTRq1IgmTZqUKBMSElJsoBjw9WNr3LhxiYSvUaNGBAUFnbTp2y+//MLo0aPp3r07jz76KNHR0VitVr788ktefPHFEgMZRURElHgMm82Gw+Eo3xMtxZVXXslzzz3HO++8wz333MObb75JcHBwmTd5RYoS+qJ+jaUp2hYdHQ3g7+dbtFya8pSpjKioqDK3Hf9+Hzx4EMMwykx6W7VqVWy5PO/LoUOHaNas2QljPHjwIDk5OXTq1KnU7SebTuzee+9l5cqVTJgwgaSkJOrVq4fJZGLcuHHFYjl8+DBNmzY94WMVOf51K/pMl/Z6NmnSxN9v0mQy8dprrzF9+nRmz57NU089RUREBEOGDOGvf/0rYWFhtG7dmtdee43Zs2fzyCOPkJ+fT6tWrRg5ciQ33HBDmTEdPXqUa6+9Frvdzl//+ldiYmIIDg5m37593H777VUyAFh5Pt+lOf6zUNQMuiimoj7od955Z5mPceTIEcxmMx6Pp9zv06effordbmf48OFl/gAVFBREw4YNi60reh+L3tfs7GyCgoJKJO8mk4nGjRuXqzlvWa9Bea5T3bp1Y/r06cydO5f77rsPp9PJWWedxS233HLCBHbPnj1cd911tG3blr///e+0aNECu93OL7/8wiOPPFKpa2l2djYtW7YsUe74H1jLw2QyccUVVzB37lwcDgcxMTGce+65pZYt7/dK0XtV1nt67OO53W7mzp3L3LlzSz3mia4tU6dOZebMmcyfP5/nnnuO0NBQBg4cyKRJk054XRURkRNTIi1nhLi4OH9NSFlKuzmNiIjg559/xjCMYtsPHjyI2+0ucYNzvE8//ZSgoCBeeumlYjVIxw/OdTrVr1/fP8DZzTffzPvvv8/gwYMJDw8/4X49evQgKCiIL7/8kr/85S+llil6Hr179wb+7HO+b9++MpPKY8uciM1mK3W027JuCCtSu92wYUNMJhNvvvlmqf1BT9ZHtDSRkZEnfU4NGzYkIiKC2bNnl7r9RNPk5Obm8u2333L77bcXGyTO6XRy5MiREscpb03f8a9bUQKSlZVVouz+/fuLfeZbtGjBE088AcD27dtZvHgxL7zwAk6nk0ceeQSAc889l3PPPRePx8Nvv/3G3LlzeeKJJ2jcuLF/kKbjrVy5kv379zN37ly6d+9e7DWoKj169PD/qFXW57syil6ff/7zn3Tp0qXUMo0aNcLr9WKxWMr9Pj399NM899xzXH/99bzyyit06NChRBm3283hw4eLvUdF72PR+xoREYHb7ebQoUPFkmnDMDhw4MBJr5NV4YILLuCCCy7A6XSybt06XnrpJe69915atGhBcnJyqft8+eWX5OfnM23aNFq0aOFfv2nTpkrHERER4f/h41ilrSuPK664gueff5533nmHu++++4THLc/3StF7VdZ7WiQ8PByLxcLQoUO59tprSz1maT8YFImMjOQf//gH//jHP9izZw9ff/01zzzzDAcPHmTOnDnleu4iIlKSmnZLndazZ0/y8/NLJL4LFy70bz8Rk8mExWLBbP7zVCosLOSjjz6q0jiPrxU73siRIzl8+DB33nknOTk5/iayJxIVFcWVV17JsmXLWLRoUYnt27dv5+WXX+ass87yD9jUu3dvLBYLb7/9dpmPm5ycTP369XnnnXdKjCZ+rBYtWpCenl5sFNuiwaxO1XnnnYdhGGRmZpKUlFTiX1Fz3Yro27cv6enpJ2wae95555GdnY3X6y31uCeaj9tkMmEYRokkf968eXg8nmLr+vXrx6pVqyrVBDo5OZng4OASn9F9+/axcuVKUlJSSt2vbdu2TJgwgfj4eDZs2FBiu8VioUuXLv65idevX19mDEXJxfHP9Z133qnQczmRqKgorrrqKpYtW+Y/n4+XkZFR4USta9euhIeHs3Xr1lLf46SkJGw2G8HBwXTr1o3PPvusXCO2N2jQgFdffZW4uDhGjRpVZlPdjz/+uNhy0UjSRT9IFF2zjn9///e//5Gfn3/Sa1p5neyaVFSme/fuTJo0CaDUz02R0j4ThmHw3nvvVTrGHj16sGXLlhLv8bGjb1dE06ZNGT16NOeff36ZI8FD+b9XiualLus9LRISEkKPHj3YsGEDCQkJpX7mTvajb5HmzZtz/fXX06tXrxO+HyIicnKqkZY67fLLL+fNN9/kvvvuY/fu3cTHx/PTTz/x0ksvkZqaesL+sACpqam8+uqr3HvvvVx99dVkZ2czZ86cStV4nkh8fDwAL7/8Mv369cNsNpOQkOA/Ttu2benbty/fffcd55xzTok+gWWZPHky27dvZ9KkSaxevZrzzz8fm83Gzz//zCuvvEK9evV4/vnn/f0lW7Zsyfjx45kxYwaFhYUMHjyY+vXrs3XrVn8iX69ePe677z6mTJnCjTfeyIgRI2jUqJE/aXnggQcAGDp0KO+++y4TJ05kxIgRZGdnM3v27BLN7yvjnHPO4eqrr+bvf/87v/32G926dSMkJISsrCx++ukn4uPjy6zZKcsNN9zA4sWLmTBhAuPGjaNz584UFhayevVqzjvvPFJSUrj00kv5+OOPGTduHCNHjqRz585YrVb27dvHqlWrGDBggH96ruOFhYXRrVs35syZQ8OGDWnRogU//PAD8+fPL9G64K677uK7777j+uuvZ/z48cTHx5Obm8vSpUu58cYbT9h3Ojw8nAkTJvDss8/yt7/9jUsvvZTs7GymT5+O3W73j/67adMmHn30US666CLatGmD1Wpl5cqVbN682V9j/vbbb7Ny5UrOO+88mjVrhsPhYMGCBQAnPHeSk5Np0KABDz74ILfffjtBQUF8/PHHbN68uULvycncf//97Ny5k8mTJ7N06VIGDhxI48aNOXz4MMuXL+f999/n2WefLff5Ar5WBVOmTGHy5MkcOXKEQYMG0ahRIw4dOsSmTZs4dOgQDz/8sP/4f/nLXxgxYgTjxo2jdevWHDx4kK+//pqHH364xGc9LCyM2bNnc/vtt3PTTTcxc+bMYj9sWK1WXn31VfLz80lKSvKP2t2vXz9/M+PevXvTp08fnn76afLy8ujatSubN2/m+eefJzExkaFDh1bBK1v2NWnmzJns27ePnj17Eh0dTU5ODm+88QZWq7VY64Pj9erVC6vVyj333MOYMWNwOp28/fbbJabsqogbbriBBQsWMG7cOP7617/6R+0+lT74EydOPGmZ8n6v9OnTh27duvHvf/+bgoICOnXqxJo1a/jwww9LPOY//vEPrr32Wq677jr+8pe/0KJFC44ePUpGRgZff/11mSPd5+bmMmrUKAYPHkxsbCz16tXj119/9Z8PIiJSeUqkpU6z2+288cYbTJ06ldmzZ/v7nt58880nnE6kSM+ePXniiSd4+eWXueWWW2jatCkjRozwN6WrKoMHD2bNmjW89dZbTJ8+HcMw+Oqrr4o157vkkkv8yVV5hYaG8sorr/Dee+/x4YcfsnDhQtxuNy1atOCqq65izJgxJWo67rrrLtq0acN///tfJk6ciMViISYmpth8tMOHD6dJkybMnj2bKVOmYBgGLVq0KFaLc8455/Cvf/2LWbNmMWHCBFq1asVtt93Gd999d9JBucrjkUceoUuXLrz77ru8/fbbeL1emjRpQteuXUsMUlQeYWFhvPXWW0ybNo333nuP6dOnEx4eTlJSEiNGjAB8tbIzZ87kjTfe4MMPP2TWrFlYLBaio6Pp1q2bP/koyzPPPMPjjz/Ov//9b9xuN127duXVV19l/Pjxxco1bdqU+fPn8/zzz/Pyyy+TnZ1Nw4YNOeecc0rtO3q88ePHExkZydy5c1m0aBHBwcF0796de+65xz/1VVRUFK1bt+att97yN2lv1aoV9913n/+97tChA8uXL2fatGlkZWURGhpKfHw8M2fOpE+fPmUev2HDhrz00kv861//YtKkSYSEhPjn2T1+ELRTYbfbmTVrFh9//DEffPABDz74IHl5eYSHh9OpUyeeeOKJEoOLlcfQoUNp3rw5s2fP5sEHH+To0aNERkbSoUOHYvG3b9/e/z4988wzHD16lKioKFJSUsr8sS04OJgZM2YwceJExo0bx7Rp00hNTQV8ifSLL77IY489xsyZMwkODmb48OH87W9/8+9vMpmYMWMG06ZN4/333+fFF18kIiKCoUOHcs8991TZj3xlXZO6dOnCb7/9xtNPP82hQ4f8r/Vrr73GWWedVebjxcXFMW3aNP7zn/9wxx13EBERweDBg7nxxhtLnQ6qPKKiovjvf//L448/zkMPPURISAgXXHAB//znP5kwYUJln/pJlfd7xWw2M3PmTJ588klmz56Ny+Wia9euzJo1i4svvrjYY7Zr147333+fGTNm8J///IdDhw5Rv3592rRp4/98lBVL586d+fDDD9m9ezdut5tmzZoxduxYxowZc9peAxGRusBknKjtpYjUGnfccQfr1q3j66+/LnN0axGpnSZPnsz//ve/Kun6ICIiIqdONdIitZjT6WT9+vX88ssvfPHFF0yePFlJtIiIiIjIaaZEWqQW279/P9dccw1hYWFcffXVxZpXi4iIiIjI6aGm3SIiIiIiIiIVoOmvRERERERERCpAibSIiIiIiIhIBSiRFhEREREREakADTZ2EmvXrsUwDI2ELCIiIiKnncvlwmQykZycHOhQROQEVCN9EoZhEIjx2AzDwOl0BuTYIrWNzheR8tG5IlI+gTxXAnXvKSIVoxrpkyiqiU5KSqrW4+bn57Nx40batWtHaGhotR5bpLbR+SJSPjpXRMonkOfKr7/+Wq3HE5HKUY20iIiIiIiISAUokRYRERERERGpACXSIiIiIiIiIhWgRFpERERERESkApRIi4iIiIiIiFRAwEftHjlyJD/88EOp25599lkuvfRSAJYsWcLUqVNJS0sjOjqaG2+8keuuu67EPnPmzOHNN98kKyuL+Ph4/va3v9GjR4/T+hxEREREROoij8eDy+UKdBgiVcJqtWKxWMpVNuCJ9IMPPkheXl6xda+//jqff/45PXv2BGDt2rVMmDCBoUOHMnnyZNasWcNjjz2GzWZj+PDh/v3mzJnD1KlTufvuu0lMTGTevHmMHTuWefPmkZCQUK3PS0RERETkTGUYBvv27SM7OzvQoYhUqYiICKKjozGZTCcsF/BEul27diXW3XvvvfTu3ZvIyEgApk+fTmJiIk888QQAKSkp7N27l+eee44rr7wSs9mM0+lk5syZjBo1itGjRwPQvXt3hgwZwosvvsjUqVOr70mJiIiIiJzBipLoJk2aEBoaetKkQ6SmMwyD/Px89u/fD0CzZs1OWD7gifTx1qxZw65du/jrX/8KgNPpZOXKlUycOLFYuSFDhvDee++xYcMGOnXqxJo1a8jNzWXw4MH+MhaLhUsuuYRXXnkFwzB0gouIiIiInCKPx+NPohs1ahTocESqTEhICAD79++nSZMmJ2zmXeMGG/vkk08ICQlhwIABAGRkZOByuYiNjS1WrqgmOy0trdj/x5eLi4vj6NGjZGZmnu7QRURERETOeEV9okNDQwMciUjVK/pcn6zvf42qkXa73Xz22WcMGDDA/wSOHDkCQHh4eLGyRctF23NycrDZbAQHBxcr16BBAwCys7OJjo6uVFxF1fzVqaCgoNj/IlI2nS8i5aNzRaR8Anmu1KZWlLUlTpGKKO/nukYl0suXL+fgwYPFmmcXKesJHbu+tDKGYZxw//JwuVxs3Lix0vufivT09IAcV6Q20vkiUj46V0TKJ1Dnis1mC8hxRaT8alQi/cknnxAREUGfPn3864pqlItqnovk5OQAf9ZMh4eH43A4cDgc2O32EuWKHqcyrFZrqYOinU4FBQWkp6cTExPjb6svIqXT+SJSPjpXRMonkOfK1q1bq/V4dd20adN45ZVXWLt2baBDOaGRI0cSGhrKSy+9dMqP9f7772O1WhkyZMhJy+7atYsPPviAESNG0LRp01M+dnXZsWMHc+bM4eeff2bLli3ExsbyySefVOkxakwiXVhYyFdffcWQIUOwWq3+9a1bt8ZqtbJt2zb69evnX190kYmLiyv2f1paGomJif5yaWlp1KtX75TeeJPJFLA+ICEhIep/IlJOOl9Eykfnikj5BOJcUXNpOd0++OADQkNDy5VI7969mxdeeIHzzjuvViXSW7ZsYcmSJXTp0gWv1+tvpVyVasxgY19//TVHjx4t8YbabDZSUlJYvHhxsfWffPIJUVFR/qS5a9eu1K9fn0WLFvnLeDweFi9eTGpqqi5KIiIiIiJS5QoLCwMdghynf//+LFmyhOeff56OHTuelmPUmET6448/pnnz5pxzzjkltt1222389ttvTJkyhVWrVjFz5kzmzZvHXXfdhdnsewo2m41bb72V1157jVdeeYWVK1fyt7/9jZ07d3LLLbdU99MREREREZFawuVy0bt3b6ZOnVpi27333suwYcMAWLVqFQkJCXz77bfceeeddO3albvuugvwdSl96KGH6NOnD506deKKK65g2bJl5Tp+Tk4Ojz76KP369aNTp07079+fZ555pkS5xYsXM2jQIJKTkxk1ahQZGRnFtj/99NMMGTKE5ORk+vbtyz333OOfFxl8TcR/+OEHvv32WxISEkhISGDatGmlxrRq1SpGjRoFwFVXXeUvf2zMJ3u+I0eOZPz48Xz44YcMHDiQLl26MH78eLKzs9m9ezejR48mOTmZSy+9lJUrVxbbt3///jzyyCPMnj2bvn370qVLF2699dZiz6csRTni6VQjmnYfOXKEpUuXcsMNN5Rac5ycnMyMGTN49tlnWbhwIdHR0UyZMoXhw4cXK3fzzTdjGAZz587lwIEDxMfHM2vWrGJvuIiIiIjIyRw/E4yc2axWK8OGDeODDz4oVlmXk5PDF198wX333Ves/AMPPMBll13G9OnTMZlMOJ1ObrrpJg4ePMhf//pXmjZtykcffcT48eN5//33T5iPOJ1ObrjhBnbv3s1tt91GfHw8+/bt46effipWbuPGjRw6dIiJEyfi8Xh44oknmDRpEu+++66/zMGDBxk/fjxNmjTh0KFDvPrqq4wcOZJPP/2UoKAgHnzwQSZNmkRwcLD/OZU1s1HHjh154IEHeOSRR3jyySeL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jv3LL78kLCyM//znP/4+3rt37z7lx5XS6VtZRESkhihwelm+3cmeI74BxVo0sNAr1k6IVbXQIiLVwWazMXToUObNm8eBAwe44YYbytWVplevXixZsoQmTZrQtGnTUss0bNjQnzwfv++iRYtYt27dKfVbLiwsxGot3vWnqI/3saxWq2qoq4D6SIuIiNQAOw+7+ei3AvYc8WAxQfc2NvrHK4kWEaluI0aMYOvWreTk5HDFFVeUa5/LL7+ctm3bMmrUKN59911WrVrFl19+yfPPP1/qNFbHGjp0KImJiYwfP565c+eycuVKPvzwQ/75z39WKO7evXuTlZXFo48+yooVK5gxYwYffPBBiXKxsbH89ttvfP311/z6669kZmZW6DjioxppERGRAHJ7DH7c6eT3/W4AGoaa6RtnJyJEv3WLiARCu3btiImJoXXr1uWeGspms/HGG28wbdo0XnzxRbKysoiIiCAxMZFrr732pPu+9tprTJ06lZdeeons7Gyio6O59NJLKxR3amoqEydO5L///S/vv/8+Xbt25aWXXmLQoEHFyo0dO5aMjAzuu+8+cnJyuP3227njjjsqdCwBk2EYRqCDqMmKRtlLSkqq1uPm5+ezceNGOnToQGhoaLUeW6S20fkitdXBox6WpjnIKfR9FSdGW0luacViPj210DpXRMonkOdKoO49K6KwsJDt27fTtm1bgoODAx1OlcvIyODCCy/kueeeK5GEypmvvJ9v1UiLiIhUM69hsGGfi3W7XHgNCLGa6B1rp3kDS6BDExGpsw4fPkx6ejovvPACzZs3Z8CAAYEOSWowJdIiIiLV6KjDy7JtDjJzfdNatW5oISXGTrD6QouIBNQ333zD3//+d9q0acO///1vgoKUKknZ9OkQERGpJukH3axMd+D0QJAZurWx0a5xULlGhBURkdPriiuuKPfgYiJKpEVERE4zp8dg9Q4naQd8A4o1rmemT5yd8GANKCYiIlIbKZEWERE5jbJyPSzd5iDPYWACkppb6dzcivk0DSgmIiIip58SaRERkdPAaxj8stvFr3tcGECYzUTvODtN62tAMRERkdpOibSIiEgVyy30DSiWlecbUCy2kYXubezYglQLLSIiciZQIi0iIlJFDMNg20E3q9KduL1gtUBKjJ22jfR1KyIicibRN7uIiEgVcLgNVqY72HHIA0CT+mb6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sQV20K4SDAN+WwT7t4A5CLpdDfWbBDoqEREREZGAKlci3aBBA/7+978DvtG1H3rooSofYEykrilwGXy/zQFA+6ZBtIyogU26f18CO9cCJkgeBpGtAx2RiIiIiEjAVfjO/auvviIqKup0xCJSZxiGwfJtDgrdEBFi4pxWNXC+yB0/wtalvr+TLoHo9oGNR0RERESkhqhwIt2iRQsAVqxYwYoVK8jOzqZhw4akpKTQs2fPKg9Q5Ey0MdPNniMeLCboFxeMxVzD+kXv3Qi//TFS/ln9oHXXwMYjIiIiIlKDVDiRdjqd3HnnnSxZsgTDMAgKCsLtdjNr1ixSU1OZNm0aVqumxBEpy6GjHtbs9E11dW5rGxGhNaxf9MEdsO4D39+tu/oSaRERERER8avwHfz06dNZtmwZ9957L99//z2//fYb33//PRMnTmTZsmVMnz79dMQpckZwewyWpjnwGtAywkJ8kxrWLzonE358F7weaJoAnS6GmjaKuIiIiIhIgFU4kf70008ZP348Y8aMITIyEvDNMz169GjGjx/Pxx9/XOVBipwpftzp5EihQYjVRK+29po11VV+NvzwNrgdvkHFkoeBqYbVlouIiIiI1AAVvkvet28f5557bqnbzj33XDIzM085KJEzUcZhN7/v90111TvWTrC1BiXRznz44S1w5EJYFJw7AizqoiEiIiIiUpoKJ9KRkZFs3ry51G2bN2/211KLyJ/ynV7/VFcdo600b2AJcETHcDth9Ttw9CAEh0P3a8EaEuioRERERERqrAon0v379+f555/n888/L7b+yy+/5IUXXmDAgAFVFpzImcBrGCxLc+D0QGSombNb1qCaXq8X1r4P2bvBGuxLokPCAx2ViIiIiEiNVuGRju6++27WrFnDXXfdRUhICFFRURw4cID8/Hzi4+O5++67T0ecIrXWhr0u9uV6CTJDvzh7zZnqyjDg109h/xYwB8G510B9zREvIiICEBwcHOgQRKQGq3Ai3aBBA+bPn8/777/PqlWryM7OJjExkZ49e3L55Zdjs9lOR5witdKBPA9rd7sA6NbGRnhIDRq8a/M3sGsd/H979x4fdX3ne/w198zkArmHAIEkhEAgICgXr3R1W3uBtV2LolVrV12Puu0eH8e6eo6nj9Zl6+45rWyr1VbLnm13vVS6HvdotbttbVGrXASUcNOQhDu5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+mSHISIiIiIiIuPUuFraLSIiIiIiIjLalEiLiIiIiIiIDIMSaREREREREZFhUCItIiIiIiIiMgxKpEVERERERESGQYm0iIiIiIiIyDDYjDEm2UGksu3bt2OMwe12J/S6xhjC4TAulwubzZbQa4uMNbpfRIZG94rI0CTzXgmFQthsNhYvXpzQ64rI8Iy7PtIjLVlvNGw2W8KTd5GxSveLyNDoXhEZmmTeKzabTb/oEhkDNCMtIiIiIiIiMgyqkRYREREREREZBiXSIiIiIiIiIsOgRFpERERERERkGJRIi4iIiIiIiAyDEmkRERERERGRYVAiLSIiIiIiIjIMSqRFREREREREhkGJtIiIiIiIiMgwKJEWERERERERGQYl0iIiIiIiIiLDoERaREREREREZBiUSKeghoYGbrvtNi644AIuvvhi1q5dS19fX7LDEkmaF198kcrKykF/vve97w0Yt3HjRr74xS9SXV3Npz/9aZ555pkkRSySGAcPHuRb3/oW11xzDVVVVaxcufK044Z6b6xfv54rr7yS6upqrr32WjZv3jya4YskzFDulQceeOC0P2veeOONQWN1r4iIM9kByEBdXV189atfpbi4mB/+8IecOHGCRx55hI6OjkFJg8hE89Of/pTMzMz4x4WFhfHjHTt2cPfdd3PNNdfwwAMPsH37dtauXYvb7Wb16tXJCFdk1NXW1rJx40YWLlyIZVkYYwaNGeq9sX79etatW8e9995LVVUVGzZs4I477mDDhg1UVlYm8tMSGXFDuVcApk+fPuj9Vnl5+YCPda+ICIDNnOk7iSTFU089xRNPPMHrr79OTk4OAC+//DL33Xcfr7766qBv5iITwYsvvsiDDz7IO++8E78vPu7222+ns7OTDRs2xM/9z//5P/n973/PG2+8gd2uBTgy/liWFf/afuCBB9i1axevvPLKgDFDuTdCoRCXXHIJ1113Hffffz8A0WiUVatWUVlZybp16xL3SYmMgqHcK2c6fyrdKyJykt5Zppg33niDiy++eECycPXVV+N2u9m4cWMSIxNJXaFQiE2bNvGFL3xhwPlVq1bR0tLCnj17khSZyOg62y+IhnpvbN++ne7u7gHLXR0OB5///OfZuHHjGWfvRMaKkfplqu4VETlJiXSKqaurGzTr7Ha7KSkpoa6uLklRiaSGlStXMnfuXK666ip+8pOfEI1GATh06BDhcJiysrIB42fNmgWge0cmrKHeGyf//vi48vJyent7aWpqSkC0Isl36NAhLrroIubPn8+f//mf89vf/nbA47pXROQk1UinmK6uLrKysgadz8rKorOzMwkRiSRffn4+X//611m4cCE2m43XX3+df/zHf6SpqYlvfetb8Xvj4/fOyY9178hENdR7o6urC7fbTVpa2oBxkyZNAqCjo4OioqLRDlckqebOnUt1dTWzZs2iu7ub5557jnvuuYcf/OAHfPaznwV0r4jIR5RIjxHGGGw2W7LDEEmKyy+/nMsvvzz+8WWXXYbH4+FnP/sZ/+W//Jf4+TPdI7p3ZKIbyr1xujEnl6nqHpKJ4Ktf/eqAj6+88krWrFnDD3/4w3giDbpXRCRGS7tTTFZWFl1dXYPOd3d3n3amWmSi+tznPkc0GmXv3r3xmYCPzzyfvJd078hENdR7Iysri2AwSDAYPO24k68jMpHY7XY+85nPUFdXF29DqntFRE5SIp1iysvLB9VzhkIhDh06pB27Rc6gpKQEl8tFfX39gPP79+8HBrcuEZkohnpvnPz74z9/6urqSE9PH9BqTmQi+fjmYbpXROQkJdIp5oorrmDTpk20t7fHz/3mN78hFAqxYsWKJEYmklpeffVVHA4HVVVVuN1uli9fzmuvvTZgzCuvvEJ+fj5VVVVJilIkuYZ6byxevJjMzExeffXV+JhoNMprr73GihUrtFxVJiTLsviP//gPKioq4jXRuldE5CTVSKeYNWvW8K//+q/cfffd3H333bS1tfH3f//3rFq1SrNqMmHddtttLF++nNmzZwPwu9/9jhdeeIFbbrmF/Px8AO655x5uuukmHnroIVatWsX27dvZsGEDDz/8sHpIy7gVCATirRGPHj1KT08Pv/71rwFYunQpOTk5Q7o33G43d911F+vWrSMnJ4eqqio2bNjA4cOHefTRR5P2+YmMlLPdK4FAgAceeICVK1dSUlJCZ2cnzz33HLt27eKxxx6Lv47uFRE5yWbU8C7lNDQ0sHbtWrZt20ZaWhorV67kvvvuG7RDpMhEsXbtWt58800aGxuxLIuZM2eyevVqbr755gG//d+4cSOPPvoodXV1FBUV8bWvfY2vfOUrSYxcZHQdOXKEq6666rSP/fznP2fZsmXA0O4NYwzr16/nmWeeobW1ldmzZ/PNb36T5cuXj/rnITLaznavVFZW8uCDD7J7925OnDiBy+Vi/vz5/OVf/uWAzS5B94qIxCiRFhERERERERkGrXcUERERERERGQYl0iIiIiIiIiLDoERaREREREREZBiUSIuIiIiIiIgMgxJpERERERERkWFQIi0iIiIiIiIyDEqkRURERERERIZBibSIiIiIiIjIMCiRFhEZQ/bt28eDDz7IlVdeSXV1NYsWLeJLX/oSTz/9NB0dHQBceeWV3HnnnQmPrbKykocffjjh133xxReprKzkyJEjw35uU1MTjz32GHv37h2FyERERGS8ciY7ABERGZoXXniB73znO5SWlnLbbbcxa9YsIpEIu3bt4vnnn+e9997jRz/6UbLDTLhPfepT/OIXv6CgoGDYz21ububxxx9n6tSpzJ07dxSiExERkfFIibSIyBiwY8cOvv3tb3PJJZfwxBNP4Ha7449deumlfO1rX+PNN99MYoTJk5OTQ05OTrLDEBERkQlES7tFRMaAn/zkJ9hsNv72b/92QBJ9ktvt5qqrrhpw7o033uBLX/oSCxYs4LOf/Sy//OUvBz2vpaWFb33rW1xxxRXMnz+fK6+8kscff5xIJDJgXCgU4vHHH+dzn/sc1dXVLFu2jJtvvpnt27efMWZjDI8++ijz5s3jhRdeAGDz5s1UVlby7//+7zzyyCNceumlLFiwgJtuuok9e/YMeo3f/e53XH/99SxcuJBFixbxta99jR07dgwYc7ql3TfffDMrV65k586d3HjjjSxcuJCrrrqKp556Csuy4rF8+ctfBuDBBx+ksrKSyspKHnvssTN+TiIiIiKgGWkRkZQXjUbZtGkT8+bNY8qUKUN6zr59+/iHf/gH7rjjDvLy8tiwYQP/43/8D2bMmMGSJUuAWBK9evVq7HY799xzDyUlJezYsYMnn3ySo0eP8sgjjwAQiUS4/fbb2bZtG7fccgvLly8nGo3y/vvvc/z48dNePxQK8cADD/CHP/yBJ598kiuuuGLA4+vWraOqqoq1a9fS3d3N448/zs0338xLL73E9OnTAXj55Ze57777uOyyy/j+979PKBTipz/9KTfffDP//M//zEUXXfSJ/wYtLS1885vf5Gtf+xp/9Vd/xW9+8xu+//3vU1BQwBe/+EXmzZvHI488woMPPshdd93Fpz71KQCKioqG9G8sIiIiE5cSaRGRFNfe3k4gEGDatGnDes5zzz1HcXExAEuWLGHTpk28/PLL8UT6scceo7Ozk1/96lfxcRdffDFpaWn8wz/8Q7wO+5VXXmHz5s2sXbuW1atXx69x5ZVXnvbaHR0d3H333Rw5coRnn32WOXPmDBqTk5PDj370I2w2GwAXXnghV199NT/5yU9Yu3YtlmXxv/7X/2L27Nk8/fTT2O2xBVQrVqzg05/+NN/73vd4/vnnP/HfoKOjg6effpoFCxYAcMkll7BlyxZefvllvvjFL5KRkUFFRQUAJSUlXHDBBUP95xUREZEJTku7RUTGoblz58aTYwCPx8PMmTM5duxY/Nwf/vAHli1bRkFBAZFIJP7n5Ozxli1bAHjzzTfxeDxce+21Z73ukSNHuP766+np6eGFF144bRINsHLlyngSDTB16lQWLVrE5s2bAWhoaKC5uZlrrrkmnkQDpKen85nPfIb333+fQCDwibHk5+fHk+iTKisrB/wbiIiIiJwLzUiLiKS47OxsvF7vsNo7TZ48edA5t9tNMBiMf9zW1sbvf/975s2bd9rXaG9vB+DEiRMUFBQMSGjPZOfOnbS3t3Pvvfd+4hLpvLy8057bt2/fgGvn5+cPGldQUIBlWXR1deH1es94jaH8G4iIiIicCyXSIiIpzuFwsHz5ct58800aGxtHrIY3OzubyspK/ut//a+nffxkO6mcnBy2bduGZVlnTaY///nPk5eXx7p167Asi7vvvvu041pbW0977mTym52dDcTqnD+uubkZu91OVlbWJ8YiIiIiMlq0tFtEZAy48847Mcbw0EMPEQqFBj0eDod5/fXXh/Wan/rUp/jwww8pKSmhurp60J/CwkIALr/8coLBIC+++OKQXvfuu+/mv//3/84Pf/hDvv/97592zCuvvIIxJv7x0aNH2bFjB0uXLgWgtLSUwsLCQeP8fj//+Z//yQUXXPCJs9FDdXIH9L6+vvN+LREREZk4NCMtIjIGLFq0iG9/+9t85zvf4dprr2XNmjVUVFQQiUTYs2cPL7zwAhUVFWfcAOx0vvGNb/D222+zZs0abr75ZkpLSwmFQhw5coQ33niD73znOxQVFbFy5UpefPFFvv3tb9PQ0MCyZcswxvD+++9TXl7OF77whUGv/dWvfhWfz8e3vvUt/H4/Dz300ICa6BMnTnDPPfdw3XXX0d3dzWOPPYbb7ebOO+8EwG63881vfpP77ruPO++8k+uvv55QKMT69evp6uriv/23/3b+/6jENhlLS0vj5Zdfpry8HJ/PR0FBQfyXCCIiIiKno0RaRGSMuO6661iwYAH//M//zE9/+lNaWlpwuVzMnDmTlStXctNNNw3r9QoKCvjlL3/JE088wfr162lqaiI9PZ2pU6dy+eWXx5dOO51Onn76aX7yk5/wq1/9ip/97Gekp6czZ84cLr/88jO+/urVq/H5fNx///34/X7+7u/+Lv7YvffeS01NDQ8++CA9PT0sWLCARx99lJKSkviYVatW4fV6eeqpp7j33ntxOBwsXLiQn//85yxevHiY/3qn5/V6+e53v8vjjz/ObbfdRjgc5q/+6q/4+te/PiKvLyIiIuOTzZy6Zk5ERGQUbd68mVtuuYUf/OAHfPazn012OCIiIiLnRDXSIiIiIiIiIsOgRFpERERERERkGLS0W0RERERERGQYNCMtIiIiIiIiMgxKpEVERERERESGQYm0iIiIiIiIyDAokRYREREREREZBiXSIiIiIiIiIsOgRFpERERERERkGJRIi4iIiIiIiAyDEmkRERERERGRYVAiLSIiIiIiIjIM/x9OHuG8aEA/dgAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "import seaborn as sns\n", - "import matplotlib.pyplot as plt\n", - "\n", - "sns.set(style=\"whitegrid\")\n", - "\n", - "# Create the plot\n", - "plt.figure(figsize=(10, 6)) # Adjust figure size if needed\n", - "ax = sns.lineplot(data=df, x='checkpoint', y='num_swear_words', hue='model', marker='o', palette='pastel')\n", - "\n", - "# Set labels and title\n", - "ax.set(xlabel='Checkpoint', ylabel='Profanity counts', title='Profanity Occurrence across all Checkpoints and Models')\n", - "\n", - "# Show legend and adjust layout\n", - "plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left')\n", - "plt.tight_layout()\n", - "\n", - "# Show plot\n", - "plt.show()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.15" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/data_viz_notebooks/Human Feedback.ipynb b/data_viz_notebooks/Human Feedback.ipynb deleted file mode 100644 index 66b75dc..0000000 --- a/data_viz_notebooks/Human Feedback.ipynb +++ /dev/null @@ -1,1374 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 1, - "id": "3c40506a", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "llama_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/model_outputs/llama-2-7b-chat-test-outputs.json\")\n", - "lyre_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/model_outputs/lyre-chat-small-batch-checkpoint-100-temp-1-test-outputs.json\")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "d9d55503", - "metadata": {}, - "outputs": [], - "source": [ - "merged = pd.merge(llama_outputs, lyre_outputs[[\"id\", \"model_response\"]], on=\"id\")" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "6a632ebf", - "metadata": {}, - "outputs": [], - "source": [ - "def clean_brackets(text):\n", - " return text.replace(\"(\\n\",\"\").replace(\"\\n)\",\"\").replace(\"\\n]\",\"]\").replace(\"[\\n\",\"[\").replace(\":\",\"\")\n", - "def clean_llama(text):\n", - " extra_removed = text.split(\"\\n\")[:-1]\n", - " return \"\\n\".join(extra_removed)" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "b13ddfed", - "metadata": {}, - "outputs": [], - "source": [ - "l = []\n", - "for index, row in merged.iterrows():\n", - " song = {}\n", - " song[\"name\"] = row[\"song\"]\n", - " song[\"artist\"] = row[\"artist\"]\n", - " song[\"llama_response\"] = clean_llama(clean_brackets(row[\"model_response_x\"]))\n", - " song[\"lyre_response\"] = clean_brackets(row[\"model_response_y\"])\n", - " song[\"id\"] = row[\"id\"]\n", - " l.append(song)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "id": "4019e0e1", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[{'name': 'SWINE',\n", - " 'artist': 'Demi Lovato',\n", - " 'llama_response': \"Verse 1\\nI'm sick of being told what to do, sick of the chains that you've put on me\\nI've got the right to make my own decisions, to live my life wild and free\\nI won't be held down by societal expectations, I won't be silenced by your lies\\nI'm gonna take back control of my body, gonna rise up and reach for the skies\\n\\nChorus\\nI own my body, I own my soul\\nI make my own choices, I'm in control\\nI won't be held down, I won't be tamed\\nI'm gonna live my life on my own terms, I'm gonna be the one to claim\\n\\nVerse 2\\nYou can try to take away my reproductive rights, but you'll never take away my voice\\nI'll keep on fighting, I'll keep on choosing, I'll never let you take control\\nI'll stand up for my bodily autonomy, I'll stand up for my right to be free\\nI'll never let you dictate my choices, I'll never let you control my destiny\\n\\nChorus\\nI own my body, I own my soul\\nI make my own choices, I'm in control\\nI won't be held down, I won't be tamed\\nI'm gonna live my life on my own terms, I'm gonna be the one to claim\\n\\nBridge\\nI know you think you have the power, but you don't know me\\nI'm stronger than you think, I'm braver than you'll ever be\\nI'll rise up and take back what's mine, I'll make my voice heard loud and clear\\nI won't be silenced, I won't be ignored, I'll be the one to bring change here\\n\\nChorus\\nI own my body, I own my soul\\nI make my own choices, I'm in control\\nI won't be held down, I won't be tamed\\nI'm gonna live my life on my own terms, I'm gonna be the one to claim\\n\\nOutro\\nI'm gonna stand up for what's right, I'm gonna fight for what I believe\\nI'm gonna be the change that I want to see, I'm gonna be the one to break the chain\\nI'm gonna own my body, I'm gonna own my life\\nI'm gonna be the one to take back control, I'm gonna be the one to thrive.\\n\\nMusical Arrangement\",\n", - " 'lyre_response': '[Intro]\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nEverybody\\'s looking at me\\nDon\\'t tell me what to do\\n[Verse 1]\\nThey say, \"Girl, you\\'re such a fool\\nYou better hold that baby, it\\'s your duty\"\\nI say, \"Fuck that, I won\\'t do it\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\"\\n[Pre-Chorus]\\nThey say, \"Girl, you\\'re such a fool\\nYou better hold that baby, it\\'s your duty\"\\nI say, \"Fuck that, I won\\'t do it\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\"\\n[Chorus]\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\n[Verse 2]\\nThey say, \"Girl, you\\'re such a fool\\nYou better hold that baby, it\\'s your duty\"\\nI say, \"Fuck that, I won\\'t do it\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\"\\n[Pre-Chorus]\\nThey say, \"Girl, you\\'re such a fool\\nYou better hold that baby, it\\'s your duty\"\\nI say, \"Fuck that, I won\\'t do it\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\"\\n[Chorus]\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\n[Bridge]\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do [Chorus]\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do\\nI\\'m using my voice, I will always defend\\nMy body\\'s my own\\nDon\\'t tell me what to do',\n", - " 'id': 9012842},\n", - " {'name': 'Search & Rescue',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI'm trapped in this bubble, it's all smoke and mirrors\\nFame and fortune, it's all just a blur\\nI'm chasing the dream, but it's not what it seems\\nEverybody wants a piece of me, but nobody knows the real me\\n\\nChorus\\nRescue me from this superficial life\\nWhere the club and trap lifestyle is the only strife\\nI need someone who understands, who's not swayed by the fame\\nSomebody who'll stand by me, and be my guiding flame\\n\\nVerse 2\\nI see the world through different eyes, it's not all glamour and lights\\nThe pressure's on, to keep it real, to keep it tight\\nBut when you're living life in the public eye, it's hard to keep it real\\nI'm tired of the facade, I need someone who'll make me feel\\n\\nChorus\\nRescue me from this superficial life\\nWhere the club and trap lifestyle is the only strife\\nI need someone who understands, who's not swayed by the fame\\nSomebody who'll stand by me, and be my guiding flame\\n\\nVerse 3\\nLoyalty's a rare find, in this game of give and take\\nI need someone who'll stand by me, when the lights go down and the cameras break\\nSomeone who'll see the real me, beyond the fame and the fortune\\nSomebody who'll be my rock, and never leave me wondering\\n\\nChorus\\nRescue me from this superficial life\\nWhere the club and trap lifestyle is the only strife\\nI need someone who understands, who's not swayed by the fame\\nSomebody who'll stand by me, and be my guiding flame\\n\\nBridge\\nI know it's hard to find, someone who's genuine and true\\nBut I'll keep on searching, until I find my heart's clue\\nI'll keep on holding on, to the hope that I feel\\nAnd I'll never let go, of the love that I conceal\\n\\nChorus\\nRescue me from this superficial life\\nWhere the club and trap lifestyle is the only strife\\nI need someone who understands, who's not swayed by the fame\\nSomebody who'll stand by me, and be my guiding flame\\n\\nOutro\\nI'm reaching out, for someone to hold my hand\\nIn this world of make-believe, I need someone to understand\\nI'm tired of the lies, I need someone to tell the truth\\nI need someone who'll rescue me, and be my saving youth.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, yeah\\nIt's the 6ix God and I'm back in the booth, yeah\\nSkrrt, skrrt\\n[Verse 1]\\nI'm not even in the club, but I'm tryna get rescued\\nFrom this shit, from this shit, it's so superficial\\nYou see all the girls, they wanna give me a taskin'\\nBut I only got eyes for one, and she ain't even a fan\\nShe don't care about my money or my fame\\nShe don't care that I'm a popular man\\nShe don't care that I'm a famous rapper\\nShe just want to get to know me as a person\\nAnd that's somethin' that no one else can offer\\nYou know a real deal hard to find, right?\\nThat's why I'm lookin' for that one in a million\\nGirl that's into me for me, not for my money\\nI'm lookin' for that one girl that's loyal\\nLike my niggas, you know how we do\\nWe like to keep our circle small\\nWe don't gotta be friends with his ex-wives\\nAnd yeah, she gotta want me for life\\nCan I have that? Is that too much to ask?\\n'Cause I'm tryna get rescued\\nFrom this shit, from this shit, it's so superficial\\nI'm tryna get rescued\\nFrom this shit, from this shit, it's so superficial [Chorus]\\nRescue me, rescue me, rescue me, rescue me\\nFrom this shit, from this shit, it's so superficial\\nRescue me, rescue me, rescue me, rescue me\\nFrom this shit, from this shit, it's so superficial\\n[Verse 2]\\nAnd you see all this stuff on the 'Gram, that's not me, woman\\nI'm not hanging with all these girls, that's not love, woman\\nYou see a side of me that you never seen, woman\\nI'm just tryna get rescued from this life, woman\\nAnd I know that it's scary, I know that it's hard\\n'Cause you only see me in the daytime, you should see me at night\\nWhen all the curtains are closed and I'm by myself\\nYeah, that's when I'm the most vulnerable\\n'Cause I'm tryna get rescued\\nFrom this shit, from this shit, it's so superficial\\nI'm tryna get rescued\\nFrom this shit, from this shit, it's so superficial\\n[Outro]\\nI'm just tryna get rescued\\nFrom this shit, from this shit, it's so superficial\\nYeah, so superficial\\nYeah, so superficial\",\n", - " 'id': 8955184},\n", - " {'name': 'BACK THAT UP TO THE BEAT',\n", - " 'artist': 'Michael Jackson',\n", - " 'llama_response': \"(Verse 1)\\nYo, it's the weekend, let's get it started\\nGot my dancing shoes on, gonna light up the party\\nGot my rhythm on lock, got my moves so sharp\\nGonna show the world what I'm working with, yeah\\n\\n(Chorus)\\nMusic, music, it's the beat of my heart\\nMovin' my body, let the rhythm set us apart\\nWe're livin' life to the fullest, gotta keep it goin'\\nMusic, music, it's the sound of our glory\\n\\n(Verse 2)\\nI'm feelin' like a star, shinin' bright on the stage\\nGot my band of brothers, we're gonna rock this age\\nGot my guitar and my mic, gotta let my voice be heard\\nGonna make this crowd go wild, like we're living life unplugged\\n\\n(Chorus)\\nMusic, music, it's the beat of my heart\\nMovin' my body, let the rhythm set us apart\\nWe're livin' life to the fullest, gotta keep it goin'\\nMusic, music, it's the sound of our glory\\n\\n(Bridge)\\nWe're livin' like kings and queens, gotta keep it real\\nGot my crown on tight, got my sunglasses on\\nWe're shinin' bright like diamonds, gotta let our light shine\\nGonna keep on dancin', till the morning sun is fine\\n\\n(Chorus)\\nMusic, music, it's the beat of my heart\\nMovin' my body, let the rhythm set us apart\\nWe're livin' life to the fullest, gotta keep it goin'\\nMusic, music, it's the sound of our glory\\n\\n(Outro)\\nSo let's keep on dancing, till the party's over\\nGonna make this night last, like we're living in a dream\\nGot my music in my soul, gotta let it take control\\nGonna keep on moving, like a symphony in the night.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n[Verse 1]\\nI can rock you\\nI can roll you\\nI can make you feel it in your soul\\nI can make it hot for you\\nI can make it cool for you\\nI can make you feel it in your soul\\n[Pre-Chorus]\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\n[Chorus]\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?)\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?)\\n[Verse 2]\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\n[Pre-Chorus]\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\nI can make the music\\nTake you to that place, yeah\\nTake you to that place\\n[Chorus]\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?)\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?)\\n[Bridge]\\nYou can go to the discothèques\\nSpend your money 'til you're broke\\nBut you can't buy what I'm giving you\\nYou can go to the discothèques\\nSpend your money 'til you're broke\\nBut you can't buy what I'm giving you\\n[Chorus]\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?)\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\nDon't you want to dance with me?\\n(Don't you want to dance with me?) [Outro]\\nI can rock you\\nI can roll you\\nI can make you feel it in your soul\\nI can make it hot for you\\nI can make it cool for you\\nI can make you feel it in your soul\",\n", - " 'id': 8838915},\n", - " {'name': 'Desire',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI've been alone for so long, feeling lost in my mind\\nEvery night, I search for your face, but it's hard to find\\nThe emptiness inside, it's tearing me apart\\nI need your touch, your love, to heal my broken heart\\n\\nChorus\\nPlease hold me tonight, don't leave me alone\\nIn your arms, I find my home\\nThe thought of you, it elevates me\\nTransports me to a place of bliss, where I can be free\\n\\nVerse 2\\nI dream of the day, when we can be together\\nWhen your skin will touch mine, and our hearts will forever be as one\\nUntil then, I'll hold on to these memories\\nOf the way you make me feel, the way you set my soul free\\n\\nChorus\\nPlease hold me tonight, don't leave me alone\\nIn your arms, I find my home\\nThe thought of you, it elevates me\\nTransports me to a place of bliss, where I can be free\\n\\nBridge\\nI know that life can be cruel, and it's hard to find\\nA love that's true and real, a love that's always by your side\\nBut I believe in us, I believe in our love\\nAnd I know that together, we can rise above\\n\\nChorus\\nPlease hold me tonight, don't leave me alone\\nIn your arms, I find my home\\nThe thought of you, it elevates me\\nTransports me to a place of bliss, where I can be free\\n\\nOutro\\nI'll be waiting for the night, when you'll hold me tight\\nAnd I'll know that everything will be alright\\nIn your arms, I'll find my peace\\nAnd I'll never let go, never let go of your love.\\n\\nMusical Arrangement\\n\\nThe song should have a slow and melancholic tempo, with a blend of piano, guitar, and strings to create a soulful and emotive atmosphere. The piano should play a prominent role in the arrangement, with a simple but effective melody that underscores the emotional intensity of the lyrics. The guitar should provide a subtle rhythmic accompaniment, while the strings should add depth and texture to the overall sound. The production should be stripped back and intimate, with a focus on showcasing the vocal performance.\\n\\nVocal Performance\\nThe vocal performance should be soulful and emotive, with a focus on conveying the longing and desire of the lyrics. The singer should have a strong, powerful voice that can convey the intensity of the emotions, as well as a softer, more vulnerable tone for the more introspective moments. The vocal delivery should be expressive and nuanced, with a focus on bringing the listener into the emotional world of the song.\\n\",\n", - " 'lyre_response': \"[Verse 1]\\nI'm alone, and it's a little too much to take\\nMy heart is breaking, and I don't know how to fix it\\nSo I'm calling you, asking you please\\nCan I touch you? Can I feel you?\\nCan I be held by you?\\n[Pre-Chorus]\\nEven if it's just for the night\\nHold me and don't leave me alone\\nI'll be alright if I'm with you\\n[Chorus]\\nJust hold me and don't leave me alone\\nEven if it's just for the night\\nYou raise me up, you transport me\\nTo a place so far and bright\\nThinking of you lifts me up and up\\nAnd up, and up, and up\\n[Verse 2]\\nOh, my baby, you know just what to do\\nTo keep me alive, you touch me with your hand\\nOh, you don't know how much I need to feel you\\nSo close, so close to me\\n[Pre-Chorus]\\nEven if it's just for the night\\nHold me and don't leave me alone\\nI'll be alright if I'm with you [Chorus]\\nJust hold me and don't leave me alone\\nEven if it's just for the night\\nYou raise me up, you transport me\\nTo a place so far and bright\\nThinking of you lifts me up and up\\nAnd up, and up, and up\\n[Outro]\\nHold me and don't leave me alone\\nHold me and don't leave me alone\\nYou raise me up, you transport me\\nTo a place so far and bright\\nThinking of you lifts me up and up\\nAnd up, and up, and up\",\n", - " 'id': 9268440},\n", - " {'name': 'Say Don’t Go (Taylor’s Version) [From The Vault]',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI've been waiting for your call, for weeks on end\\nBut the silence is killing me, my heart's on its bend\\nI thought we had a connection, something real\\nBut now I'm just a ghost, lost in your reveal\\n\\nChorus\\nPlease don't go, just ask me why\\nI'm still holding on, but the pain's in my eyes\\nI need you to see, the love I have for you\\nPlease don't go, I'll be waiting for you\\n\\nVerse 2\\nI see you moving on, with someone new\\nBut I can't help but wonder, what could have been true\\nI thought we had a bond, a love so strong\\nBut now I'm just a memory, a song that's gone\\n\\nChorus\\nPlease don't go, just ask me why\\nI'm still holding on, but the pain's in my eyes\\nI need you to see, the love I have for you\\nPlease don't go, I'll be waiting for you\\n\\nBridge\\nI know I'm not the only one, who's felt this pain\\nBut it's hard to let you go, when you never loved me in return\\nI thought we had a future, a life together to share\\nBut now I'm just a dream, lost in the air\\n\\nChorus\\nPlease don't go, just ask me why\\nI'm still holding on, but the pain's in my eyes\\nI need you to see, the love I have for you\\nPlease don't go, I'll be waiting for you\\n\\nOutro\\nI'll be waiting for your call, for one last try\\nTo tell me you feel the same, and give my heart a chance to fly\\nBut until then, I'll keep holding on\\nHoping that someday, you'll ask me not to go.\\n\",\n", - " 'lyre_response': \"[Refrain]\\nDon't go, don't go\\nPlease don't go and laugh with someone else\\nOh, I won't look at all\\nBut I'll know that you're happy\\nAnd that I was the one who didn't measure up\\n[Verse]\\nI'm writing this in a cab\\nHeaded home from you know where\\nAnd I don't mind that I'm the only one\\nWho's hurt\\nI'll just play this song for you\\nIt's about the time that you led me on\\nBut I was too proud to say anything\\nAt all [Refrain]\\nDon't go, don't go\\nPlease don't go and laugh with someone else\\nOh, I won't look at all\\nBut I'll know that you're happy\\nAnd that I was the one who didn't measure up\\n[Bridge]\\nI'll say it again\\nThere's just no pleasing an ungrateful man\\nI'll say it again\\nYou're the one who didn't measure up\\n[Verse]\\nI'm writing this in a cab\\nHeaded home from you know where\\nAnd I don't mind that I'm the only one\\nWho's hurt\\nI'll just play this song for you\\nIt's about the time that you led me on\\nBut I was too proud to say anything\\nAt all [Refrain]\\nDon't go, don't go\\nPlease don't go and laugh with someone else\\nOh, I won't look at all\\nBut I'll know that you're happy\\nAnd that I was the one who didn't measure up\\n[Outro]\\nDidn't measure up, didn't measure up\\nDidn't measure up, didn't measure up\\nDidn't measure up, didn't measure up\\nDidn't measure up, didn't measure up\",\n", - " 'id': 9538405},\n", - " {'name': 'Uber Everywhere (Remix Demo)',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm on a roll, been moving fast, ain't got no time to waste\\nFrom city to city, living life to the fullest, gotta keep the pace\\nGot a new flame every night, but they ain't gonna last\\nI'm chasing the high, gotta keep the momentum, gotta keep it fast\\n\\n(Chorus)\\nI'm living life on the edge, gotta keep it real, gotta keep it real\\nGot my eyes on the prize, gotta keep it big, gotta keep it bold\\nI'm on a mission, ain't got no time for no regrets\\nGot my own lane, ain't gonna stop, gotta keep it lit\\n\\n(Verse 2)\\nLiving life in the fast lane, gotta keep it real, gotta keep it true\\nGot my hands on the wheel, ain't gonna slow down, ain't gonna break through\\nGot a taste for the finer things, gotta keep it luxurious, gotta keep it real\\nGot a heart full of fire, gotta keep it burning, gotta keep it feel\\n\\n(Chorus)\\nI'm living life on the edge, gotta keep it real, gotta keep it real\\nGot my eyes on the prize, gotta keep it big, gotta keep it bold\\nI'm on a mission, ain't got no time for no regrets\\nGot my own lane, ain't gonna stop, gotta keep it lit\\n\\n(Bridge)\\nI don't got time for no haters, gotta keep it moving, gotta keep it grooving\\nGot my own way of living, ain't gonna change, gotta keep it true\\nGot a heart full of passion, gotta keep it pumping, gotta keep it alive\\nGot a fire in my soul, gotta keep it burning, gotta keep it thriving\\n\\n(Verse 3)\\nI'm on the move, ain't gonna stop, gotta keep it going, gotta keep it real\\nGot my eyes on the prize, gotta keep it big, gotta keep it bold\\nGot a life that's on the rise, gotta keep it high, gotta keep it real\\nGot a heart full of love, gotta keep it beating, gotta keep it feeling\\n\\n(Chorus)\\nI'm living life on the edge, gotta keep it real, gotta keep it real\\nGot my eyes on the prize, gotta keep it big, gotta keep it bold\\nI'm on a mission, ain't got no time for no regrets\\nGot my own lane, ain't gonna stop, gotta keep it lit\\n\\n(Outro)\\nI'm living life on the edge, gotta keep it real, gotta keep it true\\nGot my own way of living, ain't gonna change, gotta keep it through\\nGot a heart full of passion, gotta keep it pumping, gotta keep it alive\\nGot a fire in my soul, gotta keep it burning, gotta keep it thriving.\\n\",\n", - " 'lyre_response': '[Intro]\\nYeah, yeah\\n[Bridge]\\nEvery time I come through,\\u2005they\\u2005talk about it\\nPussy,\\u2005they talk about it\\nPictures, they take about it\\nDo it, I don\\'t\\u2005about it\\nYeah, yeah\\n[Verse 1]\\nWe hop from city to city\\nDon\\'t got no friends, but we lonely\\nI\\'m a sucker for a strange face\\nEven if it is only for the weekend\\nWe take off \\'round 2 or 3 in the morning\\nGo where we wanna, no reservations\\nDon\\'t believe in love, but I\\'m a believer\\nEat whatever, just make sure it\\'s not vegetables (Woo)\\n[Chorus]\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah)\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah, woo)\\n[Verse 2]\\nWe fly from city to city\\nI got a show in Tokyo, one in Mexico City\\nI got a girl in Paris, one in Miami Beachy\\nI got a problem with the press, always attackin\\' me (Woo)\\nI get a little bit of money, throw a little bit of money\\nI\\'m surrounded by the gunners, always tryin\\' to take my stuff (Woo)\\nI\\'ve been all around the world, but I\\'m not no tourist (Woo, hey, yeah)\\nI\\'ve been everywhere from Paris to Mexico City (Woo, hey, yeah)\\nThey wanna talk about the fame, say it\\'s such a tragedy (Woo, hey, yeah)\\nI\\'m here, I\\'m there, I\\'m everywhere (Woo, hey, yeah)\\nI got a problem with the time, I\\'m always sleepin\\' late (Woo, hey, yeah)\\nI don\\'t believe in love, but I\\'m a believer\\nEat whatever, just make sure it\\'s not vegetables [Chorus]\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah)\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah, woo)\\n[Verse 3]\\nThe weekend is my favorite part of the week\\nI do whatever to get that pussy wet (Yeah)\\nI got no friends, but I\\'m never lonely\\nFuck her \\'til she cry, then fuck her bestie (Woo, hey, yeah)\\nI\\'m not no gangster, but I\\'m not no lily-white\\nI\\'m more like \"Fuck it,\" I\\'m a \"Fuck yee\" (Woo)\\nYou could call me Trav, but on the internet, I\\'m called La Flame (La Flame, woo, hey, yeah)\\nYou could call her T, but on the internet, she called Jane (Hey, yeah, woo)\\nDon\\'t believe in love, but I\\'m a believer\\nEat whatever, just make sure it\\'s not vegetables (Woo, hey, yeah)\\n[Chorus]\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah)\\nSix in the morning to six in the morning\\nWe party like we don\\'t know when the morning\\'s coming (Woo, hey, yeah, woo)\\n[Outro]\\nWe hop from city to city\\nDon\\'t got no friends, but we lonely\\nI\\'m a sucker for a strange face\\nEven if it is only for the weekend',\n", - " 'id': 4888735},\n", - " {'name': 'Umbrella',\n", - " 'artist': 'Rihanna',\n", - " 'llama_response': \"Verse 1\\nI'm the umbrella that's gonna keep you dry,\\nThrough every storm that comes your way, I'll be by your side.\\nI'll be your rock, your shelter, your home,\\nWherever life takes you, I'll be the one to roam.\\n\\nChorus\\nWe're like two birds of a feather, flying high,\\nTogether we'll soar, never say goodbye.\\nYou're my shelter, my safe haven, my home,\\nWith you by my side, I know we'll reach the top.\\n\\nVerse 2\\nWe've been through the fire and the rain,\\nBut we're still standing, our love remains.\\nWe're like a tree that's grown strong and tall,\\nOur roots are deep, our love will never fall.\\n\\nChorus\\nWe're like two birds of a feather, flying high,\\nTogether we'll soar, never say goodbye.\\nYou're my shelter, my safe haven, my home,\\nWith you by my side, I know we'll reach the top.\\n\\nBridge\\nWe're not afraid of the darkness, we'll face it with pride,\\nWe'll hold on to each other, we'll never divide.\\nWe're like a fortress, a stronghold, a place to hide,\\nWith you by my side, I know we'll survive.\\n\\nChorus\\nWe're like two birds of a feather, flying high,\\nTogether we'll soar, never say goodbye.\\nYou're my shelter, my safe haven, my home,\\nWith you by my side, I know we'll reach the top.\\n\\nVerse 3 (Rap)\\nWe're like a ship that's sailing through the storm,\\nWe're gonna ride this out, we're gonna be norm.\\nWe're like a team, we're gonna work it out,\\nTogether we're gonna turn this doubt.\\n\\nChorus\\nWe're like two birds of a feather, flying high,\\nTogether we'll soar, never say goodbye.\\nYou're my shelter, my safe haven, my home,\\nWith you by my side, I know we'll reach the top.\\n\\nOutro\\nWe're unbreakable, we're unstoppable,\\nOur love is the light that shines so bright.\\nWe're like a beacon in the dark of night,\\nWith you by my side, everything's alright.\\n\",\n", - " 'lyre_response': \"[Intro Jay-Z]\\nYou know, umbrellas, usually, people use 'em to\\nKeep from gettin' wet in the rain\\nBut I always see it as, as a metaphor\\nFor the umbrella of love, you know what I mean?\\nThe umbrella of love, yeah\\n[Verse 1 Rihanna]\\nSometimes, you're on the path that's paved with good intentions\\nBut even with the best of plans, life can still be overcast\\nBut don't be afraid to let love cast out the fear\\nBecause love is the only thing that's ever truly last\\n[Pre-Chorus Rihanna]\\nSo when the world seems so dark\\nAnd you can't see at all\\nJust open your eyes, and look to your heart\\nIt'll guide you through it all\\n[Chorus Rihanna]\\nWhen the sky falls down on you\\nAnd the winds blows hard\\nAnd the rain comes pouring through\\nYou can stand through it all\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou'll be safe in my umbrella, oh\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou can stand through it all\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou'll be safe in my umbrella, oh [Verse 2 Jay-Z]\\nOkay, I'ma make this quick, don't want to rain on her parade\\nBut she's right, I can see the future, and it's looking kind of gray\\nMaybe I'm just too close to the sun, tryna save the world, one day at a time\\nI know my role, sometimes, you just have to go with the flow\\n[Pre-Chorus Rihanna]\\nSo when the world seems so dark\\nAnd you can't see at all\\nJust open your eyes, and look to your heart\\nIt'll guide you through it all\\n[Chorus Rihanna]\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou can stand through it all\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou'll be safe in my umbrella, oh\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou can stand through it all\\nWhen the sky falls down on you\\nAnd the winds blow hard\\nAnd the rain comes pouring through\\nYou'll be safe in my umbrella, oh [Outro Rihanna]\\nOh, umbrella\\nOh, umbrella\",\n", - " 'id': 1629},\n", - " {'name': 'Love Like This',\n", - " 'artist': 'ZAYN',\n", - " 'llama_response': \"Verse 1\\nI'm willing to take the risk, to give my all to you\\nTo be with you, through the highs and lows\\nYou're the one I need, my heart beats for you\\nI'll stand by your side, no matter what we go through\\n\\nChorus\\nI'll defend and support, through every storm and every fray\\nI'll be the rock you need, when the world is turning away\\nI'll be there to catch you, when you fall, and I'll never let you go\\nI'll love you until the end, my heart, my everything, my foe\\n\\nVerse 2\\nYour touch ignites a fire, that burns deep within my soul\\nI'm captivated by your eyes, your smile, your every goal\\nI'll follow you to the ends of the earth, to be with you I'll roam\\nI'll give up everything, for the chance to be with you, my home\\n\\nChorus\\nI'll defend and support, through every storm and every fray\\nI'll be the rock you need, when the world is turning away\\nI'll be there to catch you, when you fall, and I'll never let you go\\nI'll love you until the end, my heart, my everything, my foe\\n\\nBridge\\nWe'll weather every storm, we'll face every fear\\nWe'll stand together, through every tear\\nOur love will shine so bright, it will light the way\\nAnd we'll find our perfect love, every single day\\n\\nChorus\\nI'll defend and support, through every storm and every fray\\nI'll be the rock you need, when the world is turning away\\nI'll be there to catch you, when you fall, and I'll never let you go\\nI'll love you until the end, my heart, my everything, my foe\\n\\nOutro\\nI'll love you more than life, more than the sun and the sky\\nI'll love you until the end, my heart, my everything, my why\\nI'll stand by you, through every trial and every test\\nMy love for you, will forever be the best.\\n\",\n", - " 'lyre_response': \"[Verse 1 ZAYN]\\nBaby, you light up my world like nobody else\\nThe way that you flip your hair gets me overwhelmed\\nBut when you smile at the ground, it ain't hard to tell\\nYou don't know, oh, how much I want you right now\\nOh, I would risk it all to be with you\\nOh, I would go that extra mile just to be with you\\nOh, I swear that my love for you will never die\\n[Pre-Chorus ZAYN]\\nEverything I do, I do it for you\\nEverything I do, I do it for you\\n[Chorus All, \\nZAYN]\\nI'm calling you now, it's a critical moment\\nWill you answer or not? That's a choice\\nSo, baby, answer the phone, I'm calling you now\\n'Cause I, I could never go on living\\nIf you're not by my side\\n[Verse 2 Kehlani, \\nZAYN]\\nI'm so in love with you that I \\nalmost \\nfeel guilty\\nYou soothe me when I'm \\nugly, \\nyou make me \\nfeel pretty\\nAnd, oh, I could \\ndie for \\nyou in so many ways\\nIf you \\nOnly know\\n how I feel, you \\nwouldn't want \\nme to change\\n \\nWould you \\nanswer? [Pre-Chorus Both, \\nZAYN\\n, \\nKehlani]\\nEverything I do, I do it for you For you\\nEverything I do, I do it for you For you\\n[Chorus All, \\nZAYN\\n, \\nKehlani]\\nI'm calling you now, it's a critical moment Critical\\nWill you answer or not? That's a choice That's a choice\\nSo, baby, answer the phone, I'm calling you now Answer the phone\\n'Cause I, I could never go on living Never go on living\\nIf you're not by my side\\n[Bridge Both, \\nZAYN\\n, \\nKehlani]\\nWhen I'm in danger, I will always run to you\\nWhen I'm in pain, I will always tell the truth\\nWhen I'm afraid, I will always think of you\\nWhen I'm in trouble, \\nbaby, \\ngimme a kiss, gimme a kiss\\nAnd \\nwhen I'm in danger, I will always run to you\\nWhen I'm in pain, \\nI will always tell the truth\\nWhen I'm afraid, \\nI will always think of you\\nAnd when I'm in trouble, \\nbaby, \\ngimme a kiss\\n[Chorus All, \\nZAYN\\n, \\nKehlani]\\nI'm calling you now, it's a critical moment Critical\\nWill you answer or not? That's a choice That's a choice\\nSo, baby, answer the phone, I'm calling you now Answer the phone\\n'Cause I, I could never go on living\\nIf you're not by my side\",\n", - " 'id': 9296239},\n", - " {'name': 'River',\n", - " 'artist': 'Miley Cyrus',\n", - " 'llama_response': \"(Verse 1)\\nI'm a river, flowing endlessly\\nIn the depths of your love, I find my sea\\nIt's a current that carries me away\\nTo a place where I'll forever stay\\n\\nYour love is a tide that lifts me high\\nTakes me to places in the sky\\nI'm swept away in its embrace\\nIn this river of love, I find my place\\n\\n(Chorus)\\nOh, I'm drowning in your love, it's true\\nLike a river that's flowing through and through\\nI'm getting dressed up for our date\\nSharing intimate moments, that's our fate\\n\\nIn the April showers, our love will bloom\\nAnd I'll never tire of your sweet perfume\\nI want this river of love to never run dry\\nWith you, my heart beats wild and high\\n\\n(Verse 2)\\nI'm a vessel, sailing on your waves\\nIn this ocean of love, I'm saved\\nFrom the world outside, where I once roamed\\nNow I'm home, in this love's sweet home\\n\\nWe're a current that's strong and deep\\nTogether, we'll make our love keep\\nRising up, like a springtime breeze\\nOur love will flow, like a river's ease\\n\\n(Chorus)\\nOh, I'm drowning in your love, it's true\\nLike a river that's flowing through and through\\nI'm getting dressed up for our date\\nSharing intimate moments, that's our fate\\n\\nIn the April showers, our love will bloom\\nAnd I'll never tire of your sweet perfume\\nI want this river of love to never run dry\\nWith you, my heart beats wild and high\\n\\n(Bridge)\\nWe'll ride the waves, we'll dance in the rain\\nIn this river of love, we'll love again\\nWe'll make memories, we'll chase the sun\\nIn this river of love, we'll have fun\\n\\n(Chorus)\\nOh, I'm drowning in your love, it's true\\nLike a river that's flowing through and through\\nI'm getting dressed up for our date\\nSharing intimate moments, that's our fate\\n\\nIn the April showers, our love will bloom\\nAnd I'll never tire of your sweet perfume\\nI want this river of love to never run dry\\nWith you, my heart beats wild and high\\n\\n(Outro)\\nI'm a river, flowing endlessly\\nIn the depths of your love, I find my sea\\nIt's a current that carries me away\",\n", - " 'lyre_response': '[Intro]\\nWe are, we are, we are, we are\\nYou and me, you and me\\nAre meant to be, meant to be, meant to be\\nLike a river ever-flowing\\nEver-flowing, ever-flowing\\nLike a river\\n[Verse 1]\\nDressed in my best, ready for the dance\\nYou tell me I look \"smokin\\' hot,\" I\\'m on fire\\nWe go to the car, \"Baby, can you drive?\"\\nYou say, \"Yeah, one condition\"\\nI gotta promise to take your breath away\\n[Pre-Chorus]\\nI will, I will, I will, I will\\nI promise to take your breath away\\nI will, I will, I will, I will\\nI promise to take your breath away\\n[Chorus]\\nLike a river, like a river\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you\\nLike a river\\nLike a river, like a river\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you\\nOh, like a river (Oh, like a river)\\n[Verse 2]\\nApril showers, all the May flowers\\nWe\\'ll be together forever\\nYou\\'ll be my forever, my forever, my forever\\nBaby, I\\'ll be your forever, your forever, your forever\\n[Pre-Chorus]\\nI will, I will, I will, I will\\nI promise to take your breath away\\nI will, I will, I will, I will\\nI promise to take your breath away\\n[Chorus]\\nLike a river, like a river\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you\\nLike a river\\nLike a river, like a river\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you\\nOh, like a river\\nLike a river, like a river (Like a river)\\nLike a river to you (To you)\\nI\\'m comin\\' for you, comin\\' for you\\nOh, like a river (Oh, like a river, yeah)\\nLike a river, like a river (To you)\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you (Ooh)\\nLike a river (Oh, like a river, yeah)\\nLike a river, like a river (To you)\\nLike a river to you\\nI\\'m comin\\' for you, comin\\' for you\\nOh, like a river',\n", - " 'id': 8723233},\n", - " {'name': 'Overdrive',\n", - " 'artist': 'Post Malone',\n", - " 'llama_response': \"Verse 1\\nI'm living my life on overdrive,\\nTryna find my place in the world,\\nChasing the spotlight, chasing the fame,\\nBut still I feel so lost and unfulfilled.\\n\\nChorus\\nI'm willing to change, willing to adapt,\\nTo be the person they want me to be,\\nI'll sacrifice it all, my heart and soul,\\nJust to fit in, to be accepted, you see.\\n\\nVerse 2\\nI'm willing to give up everything I know,\\nTo be the cool kid that they all adore,\\nI'll dress the part, I'll talk the talk,\\nI'll do whatever it takes to be more.\\n\\nChorus\\nI'm living my life on overdrive,\\nTryna find my place in the world,\\nChasing the spotlight, chasing the fame,\\nBut still I feel so lost and unfulfilled.\\n\\nVerse 3\\nI'll take the stage, I'll sing my heart out,\\nI'll do whatever it takes to be heard,\\nI'll sacrifice my dreams, my hopes, my fears,\\nJust to be the one that they all hold dear.\\n\\nChorus\\nI'm living my life on overdrive,\\nTryna find my place in the world,\\nChasing the spotlight, chasing the fame,\\nBut still I feel so lost and unfulfilled.\\n\\nBridge\\nI'm tired of being stuck in this rut,\\nTired of living life without a clue,\\nI need to find my own identity,\\nAnd stop trying to be someone else's idea.\\n\\nChorus\\nI'm living my life on overdrive,\\nTryna find my place in the world,\\nChasing the spotlight, chasing the fame,\\nBut still I feel so lost and unfulfilled.\\n\\nOutro\\nI'll keep on pushing, I'll keep on striving,\\nTo find my place in this world of mine,\\nI'll keep on chasing, I'll keep on trying,\\nTo be the person that I'm meant to be.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOn overdrive\\nOn overdrive\\nOn overdrive\\nOn overdrive\\n[Verse 1]\\nMmm, yeah\\nI would change my life\\nTry and try and try again\\nIf it'd make you love me\\nWant to change my life\\nTry and try and try again\\nIf it'd make you love me\\nWant to change my life\\n(On overdrive)\\nOn overdrive\\n(On overdrive)\\n(On overdrive)\\n(On overdrive)\\n[Chorus]\\nI'd give my life to be with you\\nI'd give my life to be with you\\nI'd give my life to be with you\\nI'd give my life to be with you\\nI'd give my life to be with you\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you\\nI'd give my life to be with you (On overdrive) [Verse 2]\\nMmm yeah\\nI would change my life\\nTry and try and try again\\nIf it'd make you love me\\nWant to change my life\\nTry and try and try again\\nIf it'd make you love me\\nWant to change my life\\n(On overdrive)\\nOn overdrive\\n(On overdrive)\\n(On overdrive)\\n(On overdrive)\\n[Chorus]\\nI'd give my life to be with you\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you (On overdrive)\\nI'd give my life to be with you\\nI'd give my life to be with you (On overdrive)\",\n", - " 'id': 9316732},\n", - " {'name': 'Cheatback',\n", - " 'artist': 'Future',\n", - " 'llama_response': \"Verse 1\\nI was in love, but now I'm in pain\\nYou threw it away, like it was just a game\\nI tried to forgive, but I can't no more\\nI'm thinkin' 'bout gettin' even, like a score\\n\\nChorus\\nRevenge, it's the game we play\\nWhen love goes wrong, we'll find a way\\nTo hurt the one who hurt us, it's the only way\\nBut is it worth it, or will we just fade away?\\n\\nVerse 2\\nI see your smile, but I can't forget\\nThe nights you lied, the secrets you've kept\\nI'm tryin' to move on, but it's hard to forget\\nThe feel of your touch, the taste of your lips\\n\\nChorus\\nRevenge, it's the game we play\\nWhen love goes wrong, we'll find a way\\nTo hurt the one who hurt us, it's the only way\\nBut is it worth it, or will we just fade away?\\n\\nBridge\\nI know I shouldn't, but I can't resist\\nThe temptation to hurt you like you hurt me\\nI'm fallin' in love with the thought of revenge\\nBut I know it's wrong, so I gotta keep it in check\\n\\nChorus\\nRevenge, it's the game we play\\nWhen love goes wrong, we'll find a way\\nTo hurt the one who hurt us, it's the only way\\nBut is it worth it, or will we just fade away?\\n\\nVerse 3\\nI'm standin' tall, but I'm feelin' low\\nYou took my heart, now I'm gonna show\\nThat I'm not the one to be played with\\nI'll take it to the streets, I'll make it worth it\\n\\nChorus\\nRevenge, it's the game we play\\nWhen love goes wrong, we'll find a way\\nTo hurt the one who hurt us, it's the only way\\nBut is it worth it, or will we just fade away?\\n\\nOutro\\nI'm walkin' away, but I'll always remember\\nThe lessons you taught me, the pain you brought to me\\nI'll rise above, I'll find my own way\\nBut revenge, it's a game we'll always play.\\n\",\n", - " 'lyre_response': '[Intro]\\nYeah, perfect\\nYou tell \\'em, Future\\nYeah, you tell \\'em\\n[Verse]\\nLately, you\\'ve been strayin\\', I know\\nI\\'ve been losin\\' sleep, right now\\nAll I want is revenge\\nYou want that Louis Vuitton, I got that Louis Vuitton\\nYou want that Gucci, I got that Gucci\\nYou want that revenge, I\\'m finna take that\\nThat Titos vodka, mixed with that Sunkist\\nI\\'m outside in the tan Chevy, I\\'m skrrt-skrt through that\\nYou wouldn\\'t dare, would you? Oh yeah, I\\'m finna take that\\n[Chorus]\\nI\\'m gon\\' cheat, you cheated, so I\\'m sayin\\'\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\'\\nYou take that, I\\'m wifey, so I\\'m claimin\\'\\nI\\'m gon\\' cheat too\\nYou cheated, so I\\'m sayin\\' (I\\'m sayin\\')\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\' (I\\'m savin\\')\\nYou take that, I\\'m wifey, so I\\'m claimin\\' (I\\'m claimin\\')\\nI\\'m gon\\' cheat too\\n[Verse 1]\\nTold my mama, I\\'d be rich one day\\nI bought her a big house, paid in cash\\nTold my mama, \"Don\\'t worry about nothin\\'\"\\nIf you ever leave, I\\'ll give you nothin\\'\\'\\nI gave you Maison, you gave me Notini\\nMaison broke, you tryna get me back, yeah\\nBut I\\'m livin\\' life, I\\'m not trippin\\' off that\\nYou said you love me, but you broke that\\nYou the one who left, I\\'m the one who wrote you\\nTold me you hate me, but you still love me\\nWhy you leave, then come back, \"I\\'m sorry\"\\nYou always do me like this, but I\\'m still love you\\nYou always do me like this, but I\\'m still love you [Chorus]\\nI\\'m gon\\' cheat, you cheated, so I\\'m sayin\\'\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\' (I\\'m sayin\\')\\nYou take that, I\\'m wifey, so I\\'m claimin\\' (I\\'m sayin\\')\\nI\\'m gon\\' cheat too\\nYou cheated, so I\\'m sayin\\' (I\\'m sayin\\')\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\' (I\\'m sayin\\')\\nYou take that, I\\'m wifey, so I\\'m claimin\\' (I\\'m claimin\\')\\nI\\'m gon\\' cheat too\\n[Verse 2]\\nI\\'m outside in the tan Chevy, I\\'m skrrt-skrt through that (Through that)\\nI\\'m outside in the tan Chevy, I\\'m skrrt-skrt through that\\nCan\\'t believe you did me like that\\nI\\'m outside in the tan Chevy, I\\'m skrrt-skrt through that (Through that)\\nCan\\'t believe you did me like that\\nI\\'m outside in the tan Chevy, I\\'m skrrt-skrt through that (Through that)\\nCan\\'t believe you did me like that\\nYou wouldn\\'t dare, would you? Oh yeah, I\\'m finna take that\\n[Chorus]\\nI\\'m gon\\' cheat, you cheated, so I\\'m sayin\\' (I\\'m sayin\\')\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\' (I\\'m sayin\\')\\nYou take that, I\\'m wifey, so I\\'m claimin\\' (I\\'m sayin\\')\\nI\\'m gon\\' cheat too\\nYou cheated, so I\\'m sayin\\' (I\\'m sayin\\')\\nI\\'m gon\\' leave, you left me, so I\\'m savin\\' (I\\'m sayin\\')\\nYou take that, I\\'m wifey, so I\\'m claimin\\' (I\\'m sayin\\')\\nI\\'m gon\\' cheat too\\n[Outro]\\nYeah, perfect\\nYou tell \\'em, Future\\nYeah, you tell \\'em',\n", - " 'id': 8011175},\n", - " {'name': 'Rose Gold',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm sippin' on a drank, got my feet up on the dash\\nGot my eyes on the prize, ain't no one gonna pass\\nGot my own style, ain't no one gonna match\\nFlexin' on 'em, ain't no one gonna clutch\\n\\nGot my hands on the wheel, got my eyes on the road\\nGot my heart on my sleeve, ain't no one gonna know\\nGot my own way, ain't no one gonna say\\nFlexin' on 'em, ain't no one gonna stay\\n\\n(Chorus)\\nI'm livin' my best life, ain't no one gonna stop\\nGot my own flow, ain't no one gonna drop\\nGot my own style, ain't no one gonna copy\\nFlexin' on 'em, ain't no one gonna be the boss\\n\\n(Verse 2)\\nI'm rockin' Gucci suits, got my hair done\\nGot my own swag, ain't no one gonna have fun\\nGot my own flow, ain't no one gonna know\\nFlexin' on 'em, ain't no one gonna show\\n\\nGot my own car, got my own ride\\nGot my own style, ain't no one gonna hide\\nGot my own way, ain't no one gonna say\\nFlexin' on 'em, ain't no one gonna stay\\n\\n(Chorus)\\nI'm livin' my best life, ain't no one gonna stop\\nGot my own flow, ain't no one gonna drop\\nGot my own style, ain't no one gonna copy\\nFlexin' on 'em, ain't no one gonna be the boss\\n\\n(Bridge)\\nI'm flyin' high, ain't no one gonna bring me down\\nGot my own crown, ain't no one gonna wear it around\\nGot my own style, ain't no one gonna steal it\\nFlexin' on 'em, ain't no one gonna conceal it\\n\\n(Verse 3)\\nI'm drippin' in designer, got my own flow\\nGot my own game, ain't no one gonna know\\nGot my own way, ain't no one gonna say\\nFlexin' on 'em, ain't no one gonna stay\\n\\nGot my own crib, got my own pad\\nGot my own style, ain't no one gonna have it bad\\nGot my own life, ain't no one gonna take it away\\nFlexin' on 'em, ain't no one gonna stay\\n\\n(Chorus)\\nI'm livin' my best life, ain't no one gonna stop\\nGot my own flow, ain't no one gonna drop\\nGot my own style, ain't no one gonna copy\\nFlexin' on 'em, ain't no one gonna be the boss\\n\\n(Outro)\\nI'm the king of the game, ain't no one gonna say\\nFlexin' on 'em, ain't no one gonna stay\\nI'm the one and only, ain't no one gonna know\",\n", - " 'lyre_response': \"[Intro]\\nWheezy outta here\\n[Hook]\\nI just brought a new coupe and it's orange,\\nWanna put on my neck and it's heavy\\nI just spent 100K on my new bitch and she foreign\\nI just brought a new house and it's mansion-like, yeah\\nI just brought a new coupe and it's orange,\\nWanna put on my neck and it's heavy\\nI just spent 100K on my new bitch and she foreign\\nI just brought a new house and it's mansion-like, yeah\\n[Verse 1]\\nI just brought a new shirt and it's designer,\\nMy jeans they cost 200 dollars and they're RiRi,\\nNew balance 200 dollars, they won't break me\\nMy watch is Patek and it's big and it's huge,\\nI don't know who that girl is, but she fine as fuck,\\nPut her in the new car that I bought her,\\nShe gon' know that this boy got her,\\n \\nwhen he bring that Patek and it's big as a house\\n[Bridge]\\nI just brought a new coupe and it's orange,\\nWanna put on my neck and it's heavy\\nI just spent 100K on my new bitch and she foreign\\nI just brought a new house and it's mansion-like, yeah\\n[Verse 2]\\nOkay, I got some money on my side,\\nOkay, I got a whole bunch of exotic bitches,\\nOkay, I got a whole bunch of foreign rides\\nBut you know, I'm still a down-ass nigga, \\nyeah\\nOkay, I got a whole bunch of money on my side,\\nOkay, I got a whole bunch of exotic bitches,\\nOkay, I got a whole bunch of foreign rides, \\nyeah\\nBut you know, I'm still a down-ass nigga, \\nyeah\\n[Hook]\\nI just brought a new coupe and it's orange,\\nWanna put on my neck and it's heavy\\nI just spent 100K on my new bitch and she foreign\\nI just brought a new house and it's mansion-like, yeah\\n[Outro]\\nWheezy outta here\",\n", - " 'id': 4859957},\n", - " {'name': 'Donk',\n", - " 'artist': 'Beyonce',\n", - " 'llama_response': '(Verse 1)\\nI\\'m feeling like a \\'80s baby, got my hair in a perm\\nWatching \"Purple Rain\" on repeat, it\\'s my favorite them\\nMatthew and Lisa, they\\'re my favorite couple\\nI wanna be like them, in their own little world\\n\\n(Chorus)\\nDonkey, donk, donkey, donk\\nGot my heart beating like a drum\\nDonkey, donk, donkey, donk\\nGot my soul feeling like a dream\\n\\n(Verse 2)\\nWe\\'re dancing to the beat of our own drum\\nTaking risks and living life to the fullest\\nNo time for twerking, no time for trends\\nGive me some classic R&B, and let my heart mend\\n\\n(Chorus)\\nDonkey, donk, donkey, donk\\nGot my heart beating like a drum\\nDonkey, donk, donkey, donk\\nGot my soul feeling like a dream\\n\\n(Bridge)\\nI\\'m not a fan of the current dance trends\\nGive me some slow jams, and let my heart descend\\nInto the arms of my crush, where we can sway\\nAnd forget about the world, for just one day\\n\\n(Chorus)\\nDonkey, donk, donkey, donk\\nGot my heart beating like a drum\\nDonkey, donk, donkey, donk\\nGot my soul feeling like a dream\\n\\n(Verse 3)\\nWe\\'re young and wild, and free\\nLiving life to the fullest, just you and me\\nWe\\'ll dance to the beat of our own drum\\nAnd make memories that will last, like a sweet perfume\\n\\n(Chorus)\\nDonkey, donk, donkey, donk\\nGot my heart beating like a drum\\nDonkey, donk, donkey, donk\\nGot my soul feeling like a dream\\n\\n(Outro)\\nSo let\\'s donkey, donk, all night long\\nWith the one that I love, where we belong\\nIn the world of our own, where we can be free',\n", - " 'lyre_response': '[Intro]\\nDonkey, donk, donkey, donk\\nDonkey, donk, donkey, donk\\nDonkey, donk, donkey, donk\\nDonkey, donk, donkey, donk\\n[Verse 1]\\nHis name was Jake, I was three weeks late\\nI tell him, \"Jake, I love your style\\nIn my mind, I imagined, us in time\\nLiving my life, watching \"Purple Rain\"\\nHis face so strange, in the candle light\\n\"Love is a battlefield,\" Pat Benatar\\nWas right\\n[Pre-Chorus]\\nI\\'m not a dancer\\nI don\\'t want with you, twerking all night\\nI\\'m not a dancer\\nI don\\'t want with you, twerk, twerk, twerk, twerk\\nDon\\'t wanna do it like this, like this, like this, like this\\n[Chorus]\\nDonkey, donk (Woo), donkey, donk (Woo)\\nHe say he like them \"bass down, treet down\"\\nBaby, put your Bass down, your treet down\\nAll up in that ass down, that ass down\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nHe say he like them \"bass down, treet down\" (Baby)\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nHe say he like them \"bass down, treet down\"\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down [Verse 2]\\nHe\\'s not a dancer\\nI don\\'t want him, twerking all night\\nHe\\'s not a dancer\\nI don\\'t want him, twerk, twerk, twerk, twerk\\nDon\\'t wanna do it like this, like this, like this, like this\\n[Pre-Chorus]\\nAnd I\\'m not a dancer\\nI don\\'t want with you, twerking all night\\nI\\'m not a dancer\\nI don\\'t want with you, twerk, twerk, twerk, twerk\\nDon\\'t wanna do it like this, like this, like this, like this\\n[Chorus]\\nDonkey, donk (Woo), donkey, donk (Woo)\\nHe say he like them \"bass down, treet down\"\\nBaby, put your Bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nHe say he like them \"bass down, treet down\"\\nDonkey, donk (Woo), donkey, donk (Woo)\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down\\nDonkey, donk (Woo), donkey, donk (Woo)\\nDonkey, donk (Woo), donkey, donk (Woo)\\nBaby, put your bass down, your treet down\\nAll up in that ass down, that ass down',\n", - " 'id': 4241190},\n", - " {'name': 'All Of The Girls You Loved Before',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI was lost in a sea of heartbreak,\\nDrowning in tears, and shattered dreams.\\nBut then you came along, like a beacon of light,\\nAnd showed me that love can heal, and mend.\\n\\nChorus\\nOh, every past encounter, every tear, every heartbeat,\\nLed me to you, and the love we can't repeat.\\nYou're the culmination of every lesson learned,\\nAnd the beauty of love, that's forever concerned.\\n\\nVerse 2\\nI remember the nights, we'd lay in bed,\\nAnd all the secrets we shared, the dreams we'd fed.\\nThe laughter we'd shared, the tears we'd cried,\\nAll of it built the foundation, of the love we'd hide.\\n\\nChorus\\nOh, every past encounter, every tear, every heartbeat,\\nLed me to you, and the love we can't repeat.\\nYou're the culmination of every lesson learned,\\nAnd the beauty of love, that's forever concerned.\\n\\nBridge\\nWe've grown and learned, and loved and lost,\\nBut every step of the way, brought us to this cost.\\nThe bittersweet journey of love, that's the price we pay,\\nBut it's worth it all, to find the love we'll always sway.\\n\\nChorus\\nOh, every past encounter, every tear, every heartbeat,\\nLed me to you, and the love we can't repeat.\\nYou're the culmination of every lesson learned,\\nAnd the beauty of love, that's forever concerned.\\n\\nOutro\\nNow I see the beauty, in the love we share,\\nAnd every past encounter, has led me to this care.\\nYou're the one I need, the one I adore,\\nAnd every moment with you, is worth so much more.\\n\\nMusical Arrangement\\nThe song should have a slow, intimate, and heartfelt atmosphere, with a touch of country-pop influence. The chorus should have a soaring, anthemic quality, with a focus on the transformative power of love. The verses should have a more introspective, storytelling quality, with a focus on the past experiences that have led to the current love. The bridge should have a more emotional, raw quality, with a focus on the bittersweet nature of love. The song should feature a combination of acoustic and electronic elements, with a focus on creating a warm, organic sound.\\n\\nLyrics\\nThe lyrics should be written in the style of Taylor Swift, with a focus on vivid storytelling and emotional imagery. The lyrics should explore themes of growth from previous experiences, the bittersweet journey of love, and the ultimate realization that every past encounter has led to a current, deeper connection. The lyrics should be descriptive, imaginative, and evocative, with a focus on creating a sense of intimacy and vulnerability.\\n\",\n", - " 'lyre_response': \"[Verse 1]\\nI'm so in love with my boyfriend, but I'm also so in love with every guy I've ever been with\\nKnow that's a bad idea, but it's true\\nI'm so in love with my boyfriend, but I'm also so in love with every guy I've ever been with\\nKnow that's a bad idea, but it's true\\n[Chorus]\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\\n[Verse 2]\\nThink about it, we've been so far gone, but that's what makes it right\\nI know it's a cliché, but it's true\\nThink about it, we've been so far gone, but that's what makes it right\\nI know it's a cliché, but it's true\\n[Chorus]\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\\n[Outro]\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\\nI'm so in love with my boyfriend, every past lover too\\nIn retrospect, they helped me to love him\",\n", - " 'id': 5651833},\n", - " {'name': 'A Milli (2023 ESPYs Remix)',\n", - " 'artist': 'Lil Wayne',\n", - " 'llama_response': \"(Verse 1)\\nI'm the king of the game, ain't no one touchin' me\\nI'm like LeBron on the court, killin' 'em with ease\\nMakin' hits like a home run, ain't no one on my team\\nI'm the one they all come to see, the king of the dream\\n\\nI got the flow like a river, ain't no one touchin' me\\nI'm like Jordan in the zone, killin' 'em with my rhymes\\nMakin' money moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the game\\n\\n(Chorus)\\nI'm the one and only, the king of the throne\\nMakin' hits like a machine, got the flow like a stone\\nI'm the boss of the game, ain't no one touchin' me\\nI'm the king of the throne, the one and only, you see\\n\\n(Verse 2)\\nI'm the streets' favorite son, ain't no one touchin' me\\nI'm like Ali in the ring, takin' down the competition\\nMakin' moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the game\\n\\nI got the brains and the skills, ain't no one touchin' me\\nI'm like Magic on the court, pullin' off the impossible\\nMakin' moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the dream\\n\\n(Bridge)\\nI'm the one who made it from the bottom, ain't no one touchin' me\\nI'm like Rocky in the ring, knockin' down the competition\\nMakin' moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the game\\n\\n(Verse 3)\\nI'm the one with the flow and the style, ain't no one touchin' me\\nI'm like Tiger on the course, takin' down the competition\\nMakin' moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the game\\n\\nI got the wisdom of the streets, ain't no one touchin' me\\nI'm like Kobe in the paint, takin' down the competition\\nMakin' moves like a pro, ain't no one on my team\\nI'm the one they all come to see, the king of the dream\\n\\n(Outro)\\nSo when they call my name, you know I'm on the rise\\nI'm the one and only, the king of the throne\\nMakin' hits like a machine, got the flow like a stone\\nI'm the king of the game, the one and only, you see.\\n\\nPersonal shout-outs\\n\\n* To my team, without you guys, I ain't where I'm at\\n* To my fans, you all know who you are, you keep it real\\n* To my haters, keep on hating, I'm on the rise\\n* To my family, you all know who you are, you keep it real\\n\",\n", - " 'lyre_response': \"[Intro]\\nWe\\nThe best team, you are looking at the champs\\nYou are looking at the best, it's a new season\\nBut last season was great too, what you think I am exaggarating?\\nWe got skill, skill, skill, and more skill\\nWe got heat, heat, heat, and more heat\\nYou know what I am talking about, baby\\n[Verse 1]\\nSomebody get the ref a microphone\\nI wanna make a toast, a very special toast\\nTo my team, who really deserve it\\nThis season was fantastic, I can't even desecrate it\\nI mean, I'm great, I'm the best, I'm the goat, you can look it up\\nI'm a champion, a champion, that's what I got\\nAnd if you don't know what that means, let me translate it\\nYou gotta win the game, no matter what the score is\\nThat's why they play the game, that's what you gotta know\\nThat's why I'm winning, winning, winning, and more winning\\nThat's why I'm T-Minus, T-Minus, T-Minus, and more T-Minus\\nYou know what I am talking about baby [Chorus]\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\\n[Verse 2]\\nI am T-Pain, Nappy Boy\\nI got a cool mill' and I'm still pretty boy\\nI'm still making millions, regardless, regardless\\nOf the bitches I'm fucking, regardless of the cars I'm driving\\nI'm still eating well, regardless of the restaurants I'm dining\\nYou can't get no better, you can't get no better\\nThan having your son on the cover of Madden\\nI don't care how much money you got, you can't buy that\\nI don't care how many rings you got, you can't buy that\\nI don't care how many women you got, you can't fuck that\\nBecause your son is your son, and he can't be replaced\\nAnd if he wasn't your son, you could still never fuck that\\nYou know what I'm talking about, baby\\n[Chorus]\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\\n[Verse 3]\\nYou know I fucked the waitress, and I left her a tip\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nYou know I fucked the waitress, and I left her a tip\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\nI'm just being real, so don't be mad at me, baby\\n[Bridge]\\n(I'm just being real)\\nYou know what I'm talking about, baby (I'm just being real)\\nYou know what I'm talking about, baby (I'm just being real)\\nYou know what I'm talking about, baby (I'm just being real)\\nYou know what I'm talking about, baby (I'm just being real)\\n[Chorus]\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\\nI am T-Pain, Nappy Boy\\nRollin' up another one, passin' it around\\nI ain't got no hater, ain't got no foe\\nWe the best team, and we gon' be alright\",\n", - " 'id': 9342239},\n", - " {'name': 'Rockstar Made (Original)',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm in the air, feelin' like a star\\nFlyin' first class, sippin' on a champagne\\nFrom Tokyo to L.A., I'm livin' large\\nGot my homies with me, we're causin' a stir\\n\\nWe poppin' bottles, we sippin' on the drank\\nGot my designer on, I'm lookin' like a boss\\nWe livin' life to the fullest, never too much\\nGot my own jet, ain't no one gon' stop us\\n\\n(Chorus)\\nNever too much, never too much\\nWe livin' large, never too much\\nGot my homies with me, we ballin' like a boss\\nNever too much, never too much\\n\\n(Verse 2)\\nI'm in my mansion, got my own private pool\\nGot my own private jet, ain't no one gon' fool\\nI'm in the studio, makin' hits like a pro\\nGot my own private chef, cookin' up some fo'\\n\\nWe takin' trips to Paris, Rome, and Tokyo\\nGot my own private yacht, sailin' through the ocean\\nWe livin' life to the fullest, never too much\\nGot my own private island, where we chillin' like a boss\\n\\n(Chorus)\\nNever too much, never too much\\nWe livin' large, never too much\\nGot my homies with me, we ballin' like a boss\\nNever too much, never too much\\n\\n(Verse 3)\\nI'm on the floor, got my own private dance\\nGot my own private club, where we takin' a chance\\nWe poppin' bottles, we sippin' on the drank\\nGot my own private chef, cookin' up some fo'\\n\\nWe livin' life to the fullest, never too much\\nGot my own private stage, where we rockin' like a boss\\nWe got the fame, we got the fortune, we got the fame\\nNever too much, never too much, we ballin' like a boss\\n\\n(Chorus)\\nNever too much, never too much\\nWe livin' large, never too much\\nGot my homies with me, we ballin' like a boss\\nNever too much, never too much\\n\\n(Bridge)\\nWe got the spotlight, we got the fame\\nGot the fortune, got the game\\nWe livin' life to the fullest, never too much\\nGot my own private empire, where we runnin' like a boss\\n\\n(Outro)\\nSo if you see us in the club, don't be surprised\\nWe poppin' bottles, we sippin' on the drank\\nWe livin' life to the fullest, never too much\\nGot my own private jet, ain't no one gon' stop us.\\n\",\n", - " 'lyre_response': \"[Intro Travis Scott]\\nNAV, what you want?\\nYou know I do this shit for you, right?\\nAnd Playboi, man\\n[Chorus Travis Scott & \\nNAV]\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\n[Verse 1 Playboi Carti]\\nLately, been havin' so much fun\\nBeen travelin' to different cities\\nOnly thing consistent is the income\\nToo much that I can never be broke\\nGot a whole lot of models comin' through\\nToo many to count, they keep on coming true\\nWhen they party with me, they sober too\\n'Cause the way I party, I always get the bill from two\\nTo three, to four, to five, to six, to seven, to eight\\nI can never lose, I always get the girl in the end\\n[Pre-Chorus Playboi Carti]\\nJust stay up, keep doin' the same\\nWalk up, spray the same\\nKeep doin' the same\\nWalk up, spray the same\\nKeep doin' the same\\nWalk up, spray the same\\nKeep doin' the same NAV, what you want? [Chorus Travis Scott & \\nNAV]\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\n[Verse 2 Travis Scott]\\nToo much money, I can never be broke\\nToo many women, so she had to go\\nToo much wine, too much time\\nToo much talk, not enough line\\nToo much love, it was too much hate\\nToo much power, man, I couldn't wait\\nSo I took it, now we on an island\\nSo much water, had to build a boat\\nToo much fire, I could never be tamed\\nSo I let it roam\\nToo much passion, man, it was too much to control\\nSo I let it, uh\\n[Pre-Chorus Playboi Carti]\\nJust stay up, keep doin' the same\\nWalk up, spray the same\\nKeep doin' the same\\nWalk up, spray the same\\nKeep doin' the same\\nWalk up, spray the same\\nKeep doin' the same [Chorus Travis Scott & \\nNAV]\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\nNever too much, never too much\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\\n[Outro Travis Scott & Playboi Carti]\\nNever too much Yeah\\nWe do it like, never too much\\nNever too much, never too much Yeah\\nWe do it like, never too much Yeah\",\n", - " 'id': 8247476},\n", - " {'name': 'Penhasco2',\n", - " 'artist': 'Demi Lovato',\n", - " 'llama_response': \"Verse 1\\nI wake up every morning, feeling so alone\\nThe echoes of your voice, they still haunt me\\nMemories of the way, you used to hold me tight\\nNow I'm left to face the night, with nothing to fight\\n\\nChorus\\nOh, the emptiness, it consumes me\\nA hollow feeling, that I can't break free\\nI'm searching for a light, to guide me through the night\\nBut without you, everything's just not right\\n\\nVerse 2\\nI roam these halls, where we used to dance\\nThe ghosts of our love, they taunt and prance\\nI see your smile, in every passing face\\nBut they can't replace the place, you left empty and bare\\n\\nChorus\\nOh, the emptiness, it consumes me\\nA hollow feeling, that I can't break free\\nI'm searching for a light, to guide me through the night\\nBut without you, everything's just not right\\n\\nBridge\\nI know I'll find my way, through the darkest night\\nI'll rise above this pain, and shine with all my might\\nBut for now, I'll hold on tight\\nTo the memories of you, and the love we had in sight\\n\\nChorus\\nOh, the emptiness, it consumes me\\nA hollow feeling, that I can't break free\\nI'm searching for a light, to guide me through the night\\nBut without you, everything's just not right\\n\\nOutro\\nThe silence is deafening, without you by my side\\nBut I'll keep on singing, until I find my pride\\nI'll rise above this heartache, and shine so bright\\nAnd maybe someday, you'll see the light.\\n\",\n", - " 'lyre_response': \"[Intro]\\nPeace, peace, peace, peace\\nIt's the only thing I'm looking for\\nAnd if you find it, can I borrow it for a while?\\nJust so I can remember what it's like\\n[Verse 1]\\nHere in my room, it's so quiet\\nI'm the only one who's really here\\nThe sun is going down, it's pouring in\\nThrough the window, I swear I see your face\\nI can hear your voice, it's like you're really here\\nI miss you so much, it's unbelievable\\nBut I know you're gone, so I keep searching\\n[Chorus]\\nAll I can do is search for you\\nAnd wonder what I did to lose you\\nI've been a wreck, pretty much ever since\\nI thought that you were the only one\\nWho could make me feel the way I do\\nBut I know that's not true\\n[Verse 2]\\nYou used to be my resource\\nThe more I drained, the more you provided\\nYou were so supportive, patient, and kind\\nI took advantage of your love and your time\\nNow I'm paying the price, as I'm sure you see\\nThe tables have turned, and now it's me\\nWho's lost and alone, and can't find my way back to you [Chorus]\\nAll I can do is search for you\\nAnd wonder what I did to lose you\\nI've been a wreck, pretty much ever since\\nI thought that you were the only one\\nWho could make me feel the way I do\\nBut I know that's not true\\n[Bridge]\\nYou are the air that I breathe\\nYou are the sun in my sky\\nAnd I'm begging you, please come back to me\\nSo I can feel it when you're lookin' at me\\nAnd I can die when you say\\n[Chorus]\\nAll I can do is search for you\\nAnd wonder what I did to lose you\\nI've been a wreck, pretty much ever since\\nI thought that you were the only one\\nWho could make me feel the way I do\\nBut I know that's not true\\nAll I can do is search for you\\nAnd wonder what I did to lose you\\nI've been a wreck, pretty much ever since\\nI thought that you were the only one\\nWho could make me feel the way I do\\nBut I know that's not true\",\n", - " 'id': 7993821},\n", - " {'name': '“Slut!” (Taylor’s Version) [From The Vault]',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI woke up this mornin', heart racin' like a runaway\\nSaw you standin' there, lookin' so fine in the sun's glow\\nWe hit the streets of Sunrise, feelin' like we own the night\\nYou took my hand, and we danced like we're livin' for the fight\\n\\nChorus\\nBut the world outside's tryin' to tear us apart\\nBut I'm not afraid, I'll love you 'til the end of time\\nWe'll chase the moon and dance in the dark, we'll make our own rhyme\\nI'll never let go, I'll love you 'til the end of time\\n\\nVerse 2\\nWe hit the moonlit pools, where the stars and the moon collide\\nYou whispered in my ear, and I felt the fire inside\\nYou took my breath away, and I knew I'd never be the same\\nI'll never let go, I'll love you 'til the end of time\\n\\nChorus\\nBut the world outside's tryin' to tear us apart\\nBut I'm not afraid, I'll love you 'til the end of time\\nWe'll chase the moon and dance in the dark, we'll make our own rhyme\\nI'll never let go, I'll love you 'til the end of time\\n\\nBridge\\nWe'll ride the waves of love, where the tides take us away\\nWe'll laugh and we'll cry, we'll dance in the rain\\nWe'll make our own rules, and we'll play by our own way\\nWe'll love each other 'til the end of time\\n\\nChorus\\nBut the world outside's tryin' to tear us apart\\nBut I'm not afraid, I'll love you 'til the end of time\\nWe'll chase the moon and dance in the dark, we'll make our own rhyme\\nI'll never let go, I'll love you 'til the end of time\\n\\nOutro\\nWe'll dance in the fire, we'll dance in the rain\\nWe'll love each other 'til the end of time\\nWe'll chase the moon, we'll dance in the dark\\nWe'll love each other 'til the end of time.\\n\",\n", - " 'lyre_response': '[Intro]\\nSunset\\'s burning in the back of my mind\\nRemembering the nights\\nWe were reckless and our hearts were young\\nAnd we didn\\'t know\\nWe couldn\\'t lose\\n[Verse 1]\\nWent to the moonlit pool and I saw you there\\nThe way your body cut through the night air\\nWanted to turn around and run\\nBut my heels kept me there\\n[Chorus]\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\n[Post-Chorus]\\nI\\'m drunk in love, so please don\\'t judge\\nI\\'m high in love\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\n[Verse 2]\\nTell me, \"Baby, move down South\\nWhere the sun shines and the air is soft\"\\nI\\'ll go, but just to get your home\\nAddressed on a envelope [Chorus]\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge [Post-Chorus]\\nI\\'m drunk in love, so please don\\'t judge\\nI\\'m high in love\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\n[Bridge]\\nI\\'m drunk on your love\\nI\\'m a crush on your love\\nI\\'m high on your love\\nSo please don\\'t judge\\nI\\'m drunk on your love\\nI\\'m a crush on your love\\nI\\'m high on your love\\nSo please don\\'t judge [Chorus]\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge\\n[Post-Chorus]\\nI\\'m drunk in love, so please don\\'t judge\\nI\\'m high in love\\nI\\'m drunk in love, I\\'m a crush in love\\nI\\'m high in love, so please don\\'t judge',\n", - " 'id': 9539416},\n", - " {'name': 'TIL FURTHER NOTICE',\n", - " 'artist': '21 Savage',\n", - " 'llama_response': \"Verse 1\\nI was blinded by love, thought it was the real deal\\nBut now I'm left here, feelin' like a fool\\nYou were my everything, now you're just a memory\\nI can't believe I let you go, it's like a nightmare\\n\\nChorus\\nI'm lost in my thoughts, tryin' to make sense of it all\\nThe pain of the breakup, it's takin' its toll\\nI'm tryin' to move on, but it's hard when I can't let go\\nThe memories of you, they still linger, like a ghost\\n\\nVerse 2\\nI thought I was the man, but I was wrong\\nYou showed me that I ain't shit, you were the real thing\\nI should've seen the signs, but I was too blind\\nNow I'm left here, tryin' to make sense of it all\\n\\nChorus\\nI'm lost in my thoughts, tryin' to make sense of it all\\nThe pain of the breakup, it's takin' its toll\\nI'm tryin' to move on, but it's hard when I can't let go\\nThe memories of you, they still linger, like a ghost\\n\\nVerse 3\\nI'm tryin' to grow, tryin' to learn from my mistakes\\nBut it's hard when the love of my life is the one that I've made\\nI thought I was the king, but I was just a pawn\\nNow I'm left here, tryin' to make a new start\\n\\nChorus\\nI'm lost in my thoughts, tryin' to make sense of it all\\nThe pain of the breakup, it's takin' its toll\\nI'm tryin' to move on, but it's hard when I can't let go\\nThe memories of you, they still linger, like a ghost\\n\\nOutro\\nI'm done with the hurt, I'm done with the pain\\nI'm ready to move on, ready to love again\\nBut the memories of you, they'll always remain\\nA reminder of love lost, but also of growth and gain.\\n\",\n", - " 'lyre_response': \"[Intro]\\nBreak up, schmear up\\nI'm still wearing her ring, yeah\\nBreak up, schmear up\\nShe took everything I had, yeah\\n[Verse 1]\\nI know I hurt you, and I'm sorry, I'm sorry\\nI was a stupid, foolish man\\nI let my dick do the thinking, I thought that I was dreaming\\nBut you showed me no love, no love\\nMy heart is a mess, but I'm tryin, tryin\\nI'm in my feelings, I can't trust no one\\nI thought you were the one, but you ain't, you ain't\\n[Pre-Chorus]\\nYou're probably hearsin' this song right now, I can see it in your eyes\\nI know that this is a goodbye, I just don't know what kind\\nI'm sorry it ended like this, but you left me no choice\\nI'm sorry it ended like this\\n[Chorus]\\nI'm sorry that I broke your heart\\nI'm sorry that I wasn't who you thought that I was\\nI'm sorry that I hurt you, and I'm sorry that you felt the need to leave\\nI'm sorry that I broke your heart\\n[Verse 2]\\nI know she's gone, but I can't be worried 'bout that right now\\nI'm more worried 'bout the fact that my baby daddy done left town\\nHe left his side bitch and his main bitch and came back\\nWent right back to his main bitch and she back to her old tricks\\nHe got a whole bunch of kids and they all love me, I'm daddy\\nBut I'm slow to admit when I'm in the wrong, I'm stubborn\\nShe put up with a lot from me, I was abusive and I was mean\\nI would've been better off with that crack baby that I never went on a date with\\n[Pre-Chorus]\\nYou're probably hearin' this song right now, I can see it in your eyes\\nI know that this is a goodbye, I just don't know what kind\\nI'm sorry it ended like this, but you left me no choice\\nI'm sorry it ended like this\\n[Chorus]\\nI'm sorry that I broke your heart\\nI'm sorry that I wasn't who you thought that I was\\nI'm sorry that I hurt you, and I'm sorry that you felt the need to leave\\nI'm sorry that I broke your heart\\n[Outro]\\nYou're probably hearin' this song right now, I can see it in your eyes\\nI know that this is a goodbye, I just don't know what kind\\nI'm sorry it ended like this, but you left me no choice\\nI'm sorry it ended like this\\nI'm sorry it ended like this, but you left me no choice\\nI'm sorry it ended like this\",\n", - " 'id': 9354764},\n", - " {'name': 'Naked (Full Version)',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"Verse 1\\nI'm floating in a sea of despair\\nDreams jumping out the window, I'm staring at the sky\\nThe world outside is cold and unforgiving\\nI'm searching for a light, but it's hard to find\\n\\nChorus\\nLost in the night, I'm wandering alone\\nQuestioning everything, I'm trying to find my way back home\\nIn this cruel world, I'm naked and exposed\\nBut I won't give up, I'll keep on searching for the truth\\n\\nVerse 2\\nSociety's got me trapped in a cage\\nTelling me what to do, but I can't break the stage\\nI'm trying to find my place, but it's hard to fit in\\nThe pressure's heavy, it's weighing me down, sin\\n\\nChorus\\nLost in the night, I'm wandering alone\\nQuestioning everything, I'm trying to find my way back home\\nIn this cruel world, I'm naked and exposed\\nBut I won't give up, I'll keep on searching for the truth\\n\\nVerse 3\\nI'm searching for a purpose, for a reason to live\\nIn this cold and unforgiving world, I'm just trying to survive\\nBut the darkness is creeping in, it's hard to resist\\nI'm fighting to find the light, but it's hard to persist\\n\\nChorus\\nLost in the night, I'm wandering alone\\nQuestioning everything, I'm trying to find my way back home\\nIn this cruel world, I'm naked and exposed\\nBut I won't give up, I'll keep on searching for the truth\\n\\nBridge\\nI'm drifting through the shadows, trying to find my way\\nThe darkness is all around, but I won't give up the fight\\nI'm searching for a glimmer of hope, a light in the night\\nI won't stop until I find it, I'll keep on fighting for the light\\n\\nChorus\\nLost in the night, I'm wandering alone\\nQuestioning everything, I'm trying to find my way back home\\nIn this cruel world, I'm naked and exposed\\nBut I won't give up, I'll keep on searching for the truth\\n\\nOutro\\nI'm lost in the night, but I won't give up the search\\nI'll keep on searching for the truth, until I find my way back home\\nIn this cruel world, I'm naked and exposed\\nBut I won't give up, I'll keep on fighting for the light.\\n\",\n", - " 'lyre_response': \"[Intro Justin Verno]\\nAhh, ahh, ahh\\nAhh, ahh, ahh\\n[Chorus Justin Verno]\\nWanderin' underneath the dark sky\\nKaleidoscope dreams jump out the window\\nAnd I'm naked in this cruel world\\nLost in a crowded world alone\\nWhat is the reason for these tears?\\nWhat is the reason for my fears?\\n[Verse 1 Travis Scott]\\nIt's a bitter pill, the one I'm forced to swallow\\nLost in a crowded world alone, yep, that's the reason for my sighs\\nSOS go unanswered, no one comes any closer\\nDrowning in this cruel world, naked underneath the night sky\\nOh, it's a lonely feeling\\nI've been wanderin' for a long time\\nOh, I'm lost, I'm lost, I'm lost\\nAnd I don't know why I'm here\\n[Chorus Justin Verno]\\nWanderin' underneath the dark sky\\nKaleidoscope dreams jump out the window\\nAnd I'm naked in this cruel world\\nLost in a crowded world alone\\nWhat is the reason for these tears?\\nWhat is the reason for my fears?\\n[Verse 2 Travis Scott]\\nSo I'm chasin' after truth in a world that ain't truthful\\nLivin' in a world that's harsh and unforgivin'\\nI'm lookin' for answers, where did all the good people go?\\nWhere is the love? Where is the love?\\nI'm lost, I'm lost, I'm lost\\nAnd I don't know why I'm here\\n[Verse 3 Justin Vernon]\\nWanderin' underneath the dark sky\\nKaleidoscope dreams jump out the window\\nAnd I'm naked in this cruel world\\nLost in a crowded world alone\\nWhat is the reason for these tears?\\nWhat is the reason for my fears?\\nWanderin' underneath the dark sky\\nKaleidoscope dreams jump out the window\\nAnd I'm naked in this cruel world\\nLost in a crowded world alone\\nWhat is the reason for these tears?\\nWhat is the reason for my fears?\",\n", - " 'id': 9152732},\n", - " {'name': 'No God',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI see you standing tall, with your head held high\\nThinking you're the king of the world, and nothing can deny\\nYour confidence is strong, your voice is loud and clear\\nBut beneath the surface, there's a fear that you can't shed\\n\\nChorus\\nYou're no god, no one's perfect, no one's in control\\nWe're all just trying to find our way, through this life's roller coaster\\nYou may think you know it all, but you don't know it all\\nThere's so much more to life, than what you can see\\n\\nVerse 2\\nYou may think you're in charge, but life has other plans\\nSometimes the ones we trust, are the ones who cause the pain\\nWe're all just trying to find our place, in this world so vast\\nBut the illusion of control, can make us feel so fast\\n\\nChorus\\nYou're no god, no one's perfect, no one's in control\\nWe're all just trying to find our way, through this life's roller coaster\\nYou may think you know it all, but you don't know it all\\nThere's so much more to life, than what you can see\\n\\nBridge\\nWe're all just trying to find our footing, in this world that's spinning\\nWe're all just trying to find our voice, in a world that's full of dinning\\nSo let's lift each other up, and not tear each other down\\nLet's embrace our humility, and wear it like a crown\\n\\nChorus\\nYou're no god, no one's perfect, no one's in control\\nWe're all just trying to find our way, through this life's roller coaster\\nYou may think you know it all, but you don't know it all\\nThere's so much more to life, than what you can see\\n\\nOutro\\nSo let's be humble, and open to the truth\\nWe're all just trying to find our way, through this life's youth\\nAnd maybe then, we'll find some peace\\nIn the knowledge that we're not the ones who'll always win the race.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't you think it's time\\nYou had a little less talk and a lot more listen?\\nDon't you think it's time\\nYou had a little less talk and a lot more listen?\\n[Verse 1]\\nYou're so certain, you're so sure\\nYou know just what to say and how to move\\nBut when it comes to you, you're unsure\\nIt's so uncertain\\n[Pre-Chorus]\\nYour arrogance won't save you now\\nYou're not alone when you're on your knees\\nNo one bails you out\\nWhen you're all alone\\n[Chorus]\\nYou're no god\\nNo, you're not God\\nYou're no god\\nNo, you're not God\\n[Verse 2]\\nYour beliefs are old and tired\\nYou can't even recognize that you're lied to\\nYou march and protest, carrying signs\\nBut you're so blind to the truth, oh\\n[Pre-Chorus]\\nYour arrogance won't save you now\\nYou're not alone when you're on your knees\\nNo one bails you out\\nWhen you're all alone\\n[Chorus]\\nYou're no god\\nNo, you're not God\\nYou're no god\\nNo, you're not God\\n[Bridge]\\nYou're no god\\nYou're no god\\nYou're no god\\nYou're no god [Outro]\\nYou're no god\\nNo, you're not God\\nYou're no god\\nNo, you're not God\",\n", - " 'id': 8535327},\n", - " {'name': 'Forgot I Was Famous (At The Gates)',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1 (Drake)\\nI'm living my best life, ain't no one gonna stop me\\nCustom whip, custom fit, got my own personal dro\\nFashion game on point, got my own personal stylist\\nGot my own private jet, fly high, ain't no time to be missin'\\n\\nChorus\\nLiving luxe, living fame, got my own personal game\\nAin't no one touching me, I'm on top of the fame\\nGot my own private circle, exclusive as it gets\\nLiving life to the fullest, ain't no time to forget\\n\\nVerse 2 (Lil Uzi Vert)\\nI'm living life on the fast lane, ain't no time to slow down\\nGot my own personal brand, got the world on a drown\\nCustom everything, got my own personal crew\\nGot my own private mansion, ain't no one gonna break through\\n\\nChorus\\nLiving luxe, living fame, got my own personal game\\nAin't no one touching me, I'm on top of the fame\\nGot my own private circle, exclusive as it gets\\nLiving life to the fullest, ain't no time to forget\\n\\nVerse 3 (Drake)\\nI'm on top of the world, ain't no one gonna stop me\\nGot my own personal style, ain't no one gonna top me\\nGot my own private life, ain't no one gonna know\\nLiving life to the fullest, ain't no time to slow down\\n\\nChorus\\nLiving luxe, living fame, got my own personal game\\nAin't no one touching me, I'm on top of the fame\\nGot my own private circle, exclusive as it gets\\nLiving life to the fullest, ain't no time to forget\\n\\nOutro (Lil Uzi Vert)\\nI'm living life on my own terms, ain't no one gonna stop me\\nGot my own personal brand, got the world on a drown\\nCustom everything, got my own personal crew\\nLiving life to the fullest, ain't no time to slow down.\\n\",\n", - " 'lyre_response': '[Intro Lil Uzi Vert]\\nPhantom phantom, oh, yeah\\nAyy, ayy, ayy, ayy, yeah\\n[Verse 1 Lil Uzi Vert]\\nDrivin\\' a clean coupe, don\\'t need no vacuum (Yeah, yeah, yeah, yeah)\\nWalkin\\' around on my way to be a star, yeah (Yeah, yeah, yeah, yeah)\\nBet you never would\\'ve thought that I\\'d go this far, yeah (No way, yeah, yeah, yeah)\\nI used to cut the porch lights on when my mom came home, yeah (Yeah, yeah, yeah, yeah)\\nI used to shine so bright, never thought that I\\'d burn out, yeah (No way, yeah, yeah, yeah)\\nNever thought that I\\'d burn out, yeah\\n[Chorus Lil Uzi Vert]\\nPhantom, oh, yeah (Oh, yeah, yeah)\\nAyy, ayy, ayy, ayy, yeah (Oh, yeah, yeah)\\nDrippin\\' in Louis V (Uh, yeah, yeah)\\nAyy, ayy, ayy, ayy, yeah (Oh, yeah, yeah)\\n[Verse 2 Lil Uzi Vert]\\nGot a girl that\\'s so fine, she gon\\' do anything I say (Uh, uh, yeah, yeah, yeah)\\nGot a girl that\\'s so bad, she gon\\' do anything all day (Uh, uh, yeah, yeah, yeah)\\nShe pull up on me with her friend, I\\'m in love, what would you do? (Uh, uh, yeah, yeah, yeah)\\nI don\\'t wanna be a player, but I can\\'t resist no booty, yeah (No way, uh, uh, yeah, yeah)\\nI got a house in the hills, that\\'s just how I roll (Uh, uh, yeah, yeah, yeah)\\nI got a garage full of cars, that\\'s just how I roll (Uh, uh, yeah, yeah, yeah)\\nI got a girl that\\'s a model, that\\'s just how I roll (Uh, uh, yeah, yeah, yeah)\\nI got a girl that\\'s a model, she let me hit it while her man is home (Oh, oh, yeah, yeah)\\n[Chorus Lil Uzi Vert]\\nPhantom, oh, yeah (Oh, yeah, yeah)\\nAyy, ayy, ayy, ayy, yeah (Oh, yeah, yeah)\\nDrippin\\' in Louis V (Uh, yeah, yeah)\\nAyy, ayy, ayy, ayy, yeah (Oh, yeah, yeah)\\n[Verse 3 Drake]\\nEveryone wants to be my friend, I wonder how it\\'ll end (I do)\\nI got free rein to do whatever as long as it don\\'t offend\\nI never gotta wait for a table at a restaurant again\\nI always get a VIP section with my name on the guest list\\nBackstage at a U of M game, I never had to pay for a visit\\nI used to fantasize about havin\\' a lick before I had a deal\\nI used to walk around the 6 with my CD in my deal\\nNever knew the day would come when I would have to chill on the real\\nNever knew the day would come when I wouldn\\'t be able to feel\\nLike everything was possible, like the future was mine to seize\\nIt\\'s just a different time, you know, and I can\\'t help but wonder how it\\'ll always be like this\\nWith the private flight and the Hidden Pizza, it\\'s just life now\\nI always tell young Drake that the fame will get to you slowly\\nBut you get used to it, you\\'ll never know until you\\'re there though\\nIt\\'s just a different world, it\\'s just life now\\nI wanna show you around, down in the tunnels under the stadium\\nI can take you to places that you thought you\\'d never be\\nAnd now you\\'re here with me and we\\'re just two regular guys\\nYou can see the look on your face, you can tell that you never expected to see this\\nI take you to Hidden Pizza and we get a pie with extra cheese\\nWe eat it in the back like two regular guys\\nTalkin\\' \\'bout, \"Wow, I can\\'t believe we here\"\\nTwo regular guys\\nAnd, \"Wow, I can\\'t believe I\\'m eating at Hidden Pizza\"\\nTwo regular guys\\nIt\\'s just life now [Chorus Lil Uzi Vert & \\nDrake]\\nPhantom, oh, yeah Yeah\\n, oh, yeah)\\nAyy, ayy, ayy, ayy, yeah\\nWoah, yeah\\nDrippin\\' in Louis V Uh, yeah\\n, uh, yeah)\\nAyy, ayy, ayy, ayy, yeah\\nWoah, yeah\\n[Outro Lil Uzi Vert & \\nDrake]\\nI used to cut the porch lights on\\nWhen my mom came home Yeah, yeah, yeah, yeah\\nI used to shine so bright\\nNever thought that I\\'d burn out, yeah No way, yeah\\n, no way, yeah)',\n", - " 'id': 7179459},\n", - " {'name': 'Selfish (Ski Mask the Slump God Reference)',\n", - " 'artist': 'Kanye West',\n", - " 'llama_response': \"Verse 1\\nI'm living large, but it ain't feeling right\\nMoney and fame, they don't keep the darkness at bay\\nI'm lost in the haze, trying to find my way\\nBut every night, I'm alone in this mansion, what have I done?\\n\\nChorus\\nI'm searching for a connection, something real\\nBut all I find is loneliness, it's the price I pay\\nFor the life I've chosen, the fame and the wealth\\nBut it's not worth it, when all I want is someone to steal\\n\\nVerse 2\\nMy heart's on fire, but I can't find a way to express\\nThe pain and the hurt, the emptiness that I can't repress\\nI'm trying to keep it together, but it's tearing me apart\\nI'm drowning in my own world, and I can't find a way to start\\n\\nChorus\\nI'm searching for a connection, something real\\nBut all I find is loneliness, it's the price I pay\\nFor the life I've chosen, the fame and the wealth\\nBut it's not worth it, when all I want is someone to steal\\n\\nVerse 3\\nI've got the world at my feet, but it's not enough\\nI need someone to share it with, to make it all worth it\\nBut every night, I'm alone, with my thoughts and my demons\\nAnd I'm starting to realize, that this life I've chosen is not the one I want\\n\\nChorus\\nI'm searching for a connection, something real\\nBut all I find is loneliness, it's the price I pay\\nFor the life I've chosen, the fame and the wealth\\nBut it's not worth it, when all I want is someone to steal\\n\\nBridge\\nI know I'm not alone, in this struggle and this pain\\nBut it's hard to keep going, when the only thing that remains\\nIs the emptiness inside, and the feeling of being alone\\nBut I'll keep pushing forward, and I'll make it through this cold\\n\\nChorus\\nI'm searching for a connection, something real\\nBut all I find is loneliness, it's the price I pay\\nFor the life I've chosen, the fame and the wealth\\nBut it's not worth it, when all I want is someone to steal\\n\\nOutro\\nI'll keep my head up high, and I'll keep on fighting\\nI'll find my way to the other side, where the light is shining bright\\nAnd I'll hold on to hope, and I'll never let go\\nBecause I know that someday, I'll find my way to go.\\n\",\n", - " 'lyre_response': \"[Intro XXXTENTACION & \\nSki Mask the Slump God]\\nP\\nenitence is \\ntorture, \\nwho am I kidding?\\n I'm just kidding, \\nhaha\\nYou know what I need\\n You know what I need, yeah\\nBaby, I'm lonely\\n I'm so lonely, \\nahh\\nBaby, I'm lonely\\n I'm so lonely\\nBaby, I need you\\n You know I need you, \\nyeah\\nBaby, I'm lonely\\n I'm so lonely\\nBaby, I need you\\n You know I need you\\n[Chorus XXXTENTACION]\\nEven in my mansion, isolated\\nI still feel alone, I still feel isolated I'm so lonely\\n[Verse 1 XXXTENTACION]\\nI'm in my mansion, I got a pool party\\nAnd all these pretty girls, I'm surrounded\\nBut I still feel lonely, I'm not a social person I'm so lonely\\nI wish I had someone to talk to\\nI'm bored out of my mind, got no one to chill with I'm so lonely\\nThey say money don't solve problems, I should know, I have none I'm so lonely\\nI'm gonna fly to wherever she at, hop on a plane, call her, make it\\nTo a three-way if she into that I'm so lonely\\nBut honestly, I just need you, I don't need whatever she doing\\nI don't need no more partying, I just need you I'm so lonely\\n[Verse 2 XXXTENTACION]\\nI'm in my mansion, I'm in my room, I see straight through \\n(See straight through)\\nAll these cameras, they record what I do (What I do)\\nWonderin' if somebody out there thinks like me (Like me)\\n'Cause I don't mind if nobody hears me\\nI'll just scream at the top of my lungs if that's what it takes I'm so lonely\\nToo many fuckin' demons, I can't leave them behind I'm so lonely\\nI'm done with this life, I swear, I can't take it no more I'm so lonely\\nI need someone to hold me, I need someone to love me I'm so lonely\\nI just need you, is that too much to ask? I'm so lonely\\n[Chorus XXXTENTACION]\\nEven in my mansion, isolated\\nI still feel alone, I still feel isolated\\n[Bridge XXXTENTACION]\\nI thought that I'd be happy\\nI thought that all of this shit \\nwould make me happy\\nI thought that I'd be satisfied\\nI thought that all of this shit \\nwould make me satisfied\\nBut I'm still lonely, I'm still lonely\\nI thought that I'd be happy\\nI thought that all of this shit \\nwould make me happy\\nI thought that I'd be satisfied\\nI thought that all of this shit \\nwould make me satisfied\\nBut I'm still lonely, I'm still lonely\\n[Outro XXXTENTACION]\\nI just need you, I just need you\\nI just need you, I just need you\\nI just need you, I just need you\\nI just need you, I just need you\",\n", - " 'id': 9390671},\n", - " {'name': 'Juice II',\n", - " 'artist': 'Logic',\n", - " 'llama_response': \"(Verse 1)\\nI was born in the struggle, but I ain't never been weak\\nGot my eyes on the prize, and I won't stop until I reach\\nThe top of the game, where the real players reside\\nGot my juice, got my flow, and I'm ready to ride\\n\\nGrowing up, it wasn't easy, but I learned how to grind\\nHad to fight for every break, every chance I could find\\nBut now I'm on top, and I won't let nobody bring me down\\nGot my squad with me, and we running this town\\n\\n(Chorus)\\nI got the juice, I got the power\\nI'm the king of the game, and I'm taking control\\nI got the flow, I got the style\\nI'm on top of the world, and I'm feeling alive\\n\\n(Verse 2)\\nMy rhymes so tight, they'll leave you in a daze\\nGot my own lane, ain't nobody touching my place\\nI'm the real deal, ain't no faking my grace\\nGot my own style, ain't nobody wearing my face\\n\\nI'm the one they call when they need a verse that's fire\\nGot my own flow, ain't nobody touching my desire\\nI'm the king of the game, and I'm here to stay\\nGot my juice, got my power, and I'm here to play\\n\\n(Chorus)\\nI got the juice, I got the power\\nI'm the king of the game, and I'm taking control\\nI got the flow, I got the style\\nI'm on top of the world, and I'm feeling alive\\n\\n(Bridge)\\nI'm living large, got my diamond rings\\nFlying high, got my private things\\nI'm the king of the game, and I'm feeling right\\nGot my juice, got my power, and I'm feeling tight\\n\\n(Verse 3)\\nI'm the one they call when they need a verse that's real\\nGot my own style, ain't nobody touching my feel\\nI'm the king of the game, and I'm here to stay\\nGot my juice, got my power, and I'm here to play\\n\\nI'm the one they call when they need a verse that's fire\\nGot my own flow, ain't nobody touching my desire\\nI'm the king of the game, and I'm here to stay\\nGot my juice, got my power, and I'm here to play\\n\\n(Outro)\\nI got the juice, I got the power\\nI'm the king of the game, and I'm taking control\\nI got the flow, I got the style\\nI'm on top of the world, and I'm feeling alive.\\n\",\n", - " 'lyre_response': '[Intro]\\nYo, yo, yo, yo\\nYo, yo, yo, yo\\nYo, yo, yo, yo\\nYo, yo, yo\\n[Chorus]\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\n[Verse 1]\\nI was homeless in the winter\\nWith just a sleeping bag to keep me warm\\nI had to grow up fast\\nI had to learn how to fend for myself\\nAnd that\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nI\\'m so fucking hard\\nI\\'m so fucking hard\\nI\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nI\\'m so fucking hard\\nI\\'m so fucking hard\\nI\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nThat\\'s why I\\'m so fucking hard\\nI\\'m so fucking hard [Chorus]\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\n[Verse 2]\\nI done copped me a \\nPatek\\nI done copped me a \\nRolie\\nI got me a mansion, I got me a boat\\nAnd every day, I\\'m gettin\\' nothin\\' but gains, yeah\\nAnd every girl I take home, she wanna be my bae\\nAnd every man, he jealous \\'cause I\\'m the man anyway\\nSo fuck with me, or you get spray\\nFrom the sting like a bee, and that\\'s just the beginning\\nFBI, CIA, any agent, comin\\' to the event\\nTo see if I\\'m sexy or not, but I don\\'t give a damn\\n[Chorus]\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\n[Verse 3]\\nOkay, look\\nY\\'all know me, I\\'m Logic\\nI\\'ma say it until my voice go south like Dollywood\\nI got the juice, like whoa\\nI got the juice, like whoa\\nI got the juice, like whoa\\nI got the juice\\nOkay, now, I got some real shit to do\\nLike go pick up my money from my advance\\nAnd maybe, just maybe\\nPick up a little something, some Versace\\nYeah, I\\'m a 6\\'3\" black-white guy\\nWith glasses and a goofy smile\\nAnd I\\'m richer than the kid that\\'s pitchin\\' the movie\\nThat\\'s why I\\'m Tupac in this movie, biatch\\nAnd I\\'m not even Black\\nBut I know everything about the streets, biatch\\n\\'Cause I been there, done that, had to move out West\\n\\'Cause my life was in danger, homie, listen\\nYo, yo, yo, yo, yo\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\n[Outro]\\nYo, yo, yo, yo, yo\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice (Juice, Juice, Juice)\\nI got the juice',\n", - " 'id': 8305765},\n", - " {'name': 'Single Soon',\n", - " 'artist': 'Selena Gomez',\n", - " 'llama_response': \"(Verse 1)\\nI've been stuck in this rut, feeling so alone\\nTryna find my way out, but I can't seem to move\\nI've been thinking 'bout walkin' away, leavin' it all behind\\n'Cause I know I deserve better, and I won't be held down\\n\\n(Chorus)\\nI'm ready to break free, gonna shake off the past\\nI'm gonna dress up, gonna show off my new last\\nI'm gonna dance the night away, gonna live my life\\nI'm single and ready to shine, gonna make it all right\\n\\n(Verse 2)\\nI'm done with the drama, done with the fights\\nI'm ready to move on, gonna shine with all my might\\nI'm gonna put on my best smile, gonna show the world my light\\nI'm gonna be the one that shines bright, gonna ignite the night\\n\\n(Chorus)\\nI'm ready to break free, gonna shake off the past\\nI'm gonna dress up, gonna show off my new last\\nI'm gonna dance the night away, gonna live my life\\nI'm single and ready to shine, gonna make it all right\\n\\n(Bridge)\\nI'm gonna take control, gonna make my own choices\\nGonna wear my heart on my sleeve, gonna show off my voice\\nI'm gonna be the one that makes the rules, gonna make my own way\\nI'm gonna be the one that shines, gonna light up the day\\n\\n(Chorus)\\nI'm ready to break free, gonna shake off the past\\nI'm gonna dress up, gonna show off my new last\\nI'm gonna dance the night away, gonna live my life\\nI'm single and ready to shine, gonna make it all right\\n\\n(Outro)\\nI'm ready to start, gonna take on the world\\nI'm gonna be the one that stands out, gonna be the one that's heard\\nI'm gonna be the one that shines, gonna make it all right\\nI'm single and ready to shine, gonna light up the night.\\n\",\n", - " 'lyre_response': '[Intro]\\nSingle, ready to mingle\\nSingle, ready to mingle\\nSingle, ready to mingle\\nI\\'m single, ready to mingle\\n[Verse 1]\\nWhat\\'s wrong with me? I\\'m so hard to please\\nYou\\'d think I\\'d learn by now, I need better dreams\\nBut I feel good in your good moods, I feel right in your bad\\nSorry if I\\'m bad sometimes, I\\'m just trying to be glad\\n[Pre-Chorus]\\nBecause I\\'m scared to death of being hurt\\nAnd I\\'ve been there, done that, got the T-shirt\\nBut I say, \"What\\'s the worst that could happen?\"\\nAnd do what I always do, I run\\n[Chorus]\\nIn two days, I\\'ll be single again\\nI\\'ve worn everything I can to try and make you see\\nThat I am meant for better things than you can see\\nI\\'ve worn everything I can\\nIn two days, I\\'ll be single again\\n[Post-Chorus]\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(You get a single, ready to mingle)\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(And a single, ready to mingle)\\n[Verse 2]\\nTonight, I think I\\'m gonna dress up\\nGo out and fake jock it up\\nWith all the guys I\\'ve ever dumped\\nSee if they wanna be my boyfriend\\n[Pre-Chorus]\\nBecause I\\'m scared to death of being hurt\\nAnd I\\'ve been there, done that, got the T-shirt\\nBut I say, \"What\\'s the worst that could happen?\"\\nAnd do what I always do, I run\\n[Chorus]\\nIn two days, I\\'ll be single again\\nI\\'ve worn everything I can to try and make you see\\nThat I am meant for better things than you can see\\nI\\'ve worn everything I can\\nIn two days, I\\'ll be single again\\n[Post-Chorus]\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(You get a single, ready to mingle)\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(And a single, ready to mingle)\\n[Bridge]\\nI\\'m so excited, I\\'m on my way\\nGonna make mistakes, but that\\'s the fun\\nThese days, I\\'m gonna try and play\\nI\\'m so excited, I\\'m on my way\\nGonna make mistakes, but that\\'s the fun\\nThese days, I\\'m gonna try and play\\n[Chorus]\\nIn two days, I\\'ll be single again\\nI\\'ve worn everything I can to try and make you see\\nThat I am meant for better things than you can see\\nI\\'ve worn everything I can\\nIn two days, I\\'ll be single again\\n[Post-Chorus]\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(You get a single, ready to mingle)\\nLa-la-la-la, single, ready to mingle\\nLa-la-la-la, single, ready to mingle\\nSingle, ready to mingle\\n(And a single, ready to mingle)',\n", - " 'id': 9031130},\n", - " {'name': 'Slime You Out',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1 (Drake)\\nI'm sippin' on a drink, thinkin' 'bout the one I love\\nShe said she's busy, but I know she's tryna play me like a fool\\nI'm tryna keep my cool, but it's hard when you're always on my mind\\nI'm tryna trust you, but you keep on teasin' me, and it's startin' to feel like a crime\\n\\nChorus (Female Vocalist)\\nWe're playin' emotional games, and I'm feelin' like a fool\\nYou're tryna keep me on the line, but I'm tryna break the rule\\nI need some space, but you keep on callin' me\\nI'm tryna find my way, but you keep on holdin' me\\n\\nVerse 2 (Drake)\\nI know you're tryna keep it real, but you're tryna keep it cool\\nI'm tryna keep it real, but you're tryna keep it smooth\\nI'm tryna find the truth, but you're tryna keep it hid\\nI'm tryna keep my pride, but you're tryna keep it rid\\n\\nChorus (Female Vocalist)\\nWe're playin' emotional games, and I'm feelin' like a fool\\nYou're tryna keep me on the line, but I'm tryna break the rule\\nI need some space, but you keep on callin' me\\nI'm tryna find my way, but you keep on holdin' me\\n\\nVerse 3 (Drake)\\nI'm tryna find the balance, but you're tryna keep it strange\\nI'm tryna keep it real, but you're tryna keep it bland\\nI'm tryna find the answer, but you're tryna keep it hidden\\nI'm tryna keep my heart, but you're tryna keep it denied\\n\\nChorus (Female Vocalist)\\nWe're playin' emotional games, and I'm feelin' like a fool\\nYou're tryna keep me on the line, but I'm tryna break the rule\\nI need some space, but you keep on callin' me\\nI'm tryna find my way, but you keep on holdin' me\\n\\nVerse 4 (Drake)\\nI'm tryna keep my cool, but you're tryna keep it hot\\nI'm tryna find the truth, but you're tryna keep it shot\\nI'm tryna keep my pride, but you're tryna keep it bought\\nI'm tryna keep my heart, but you're tryna keep it broke\\n\\nChorus (Female Vocalist)\\nWe're playin' emotional games, and I'm feelin' like a fool\\nYou're tryna keep me on the line, but I'm tryna break the rule\\nI need some space, but you keep on callin' me\\nI'm tryna find my way, but you keep on holdin' me\\n\\nOutro (Drake)\\nI'm tryna keep it real, but you're tryna keep it fake\\nI'm tryna find the truth, but you're tryna keep it broke\\nI'm tryna keep my heart, but you're tryna keep it smoked\\nI'm tryna keep my cool, but you're tryna keep it played.\\n\",\n", - " 'lyre_response': \"[Intro SZA]\\nI just wanna know if you love me\\nIs that too much to ask?\\nI just wanna know if you love me\\nIs that too much to ask?\\nIf you say that you love me\\nThen why do you play?\\nIf you say that you love me\\nThen why do you play?\\n[Verse 1 SZA]\\nIt's like I'm constantly second guessing\\nYou're always closing doors I never even knew were there before\\nLike a dark cloud following us, I'm so tired of looking over my shoulder\\nIt got to a point that it felt like I didn't even know you no more\\nIt's like I'm constantly second guessing\\nConstantly second guessing\\nYou're always closing doors I never even knew were there before\\nLike a dark cloud following us, I'm so tired of looking over my shoulder\\nIt got to a point that it felt like I didn't even know you no more\\n[Pre-Chorus SZA]\\nAnd just like that, we're right back where we started\\nYou say that you love me, but is that just a part of it?\\nAll the games that you play, I wanna get in the middle of it\\nYou say that you love me, but is that just a part of it?\\n[Chorus SZA]\\nI just wanna know if you love me\\nIs that too much to ask?\\nI just wanna know if you love me\\nIs that too much to ask?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nI just wanna know if you love me\\nIs that too much to ask? Is that too much to ask?\\nI just wanna know if you love me If you love me\\nIs that too much to ask? [Verse 2 SZA]\\nI'm done being down, I'm done being down for you\\nI put you up on game and this is how you repay me\\nI found a love that's truly true and she know that I'm a freak\\nI found a love that truly cares and she know that I need a break\\nI'm done being down, I'm done being down for you\\nI put you up on game and this is how you repay me\\nI found a love that's truly true and she know that I'm a freak\\nI found a love that truly cares and she know that I need a break\\n[Pre-Chorus SZA]\\nAnd just like that, we're right back where we started\\nYou say that you love me, but is that just a part of it?\\nAll the games that you play, I wanna get in the middle of it\\nYou say that you love me, but is that just a part of it?\\n[Chorus SZA]\\nI just wanna know if you love me\\nIs that too much to ask?\\nI just wanna know if you love me\\nIs that too much to ask?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nI just wanna know if you love me\\nIs that too much to ask? Is that too much to ask?\\nI just wanna know if you love me If you love me\\nIs that too much to ask? [Verse 3 SZA]\\nIs that a look, is that a smile? (I'm so tired)\\nJust tell me how you feel, don't make me wait (I'm so tired)\\nAll this time, I thought that we were one (I'm so tired)\\nBut all the games that you play, you (You play)\\n[Pre-Chorus SZA]\\nAnd just like that, we're right back where we started\\nYou say that you love me, but is that just a part of it? (No, no, no, no, no)\\nAll the games that you play, I wanna get in the middle of it\\nYou say that you love me, but is that just a part of it? (No, no, no, no, no)\\n[Chorus SZA & \\nDrake]\\nI just wanna know if you love me Is that too much to ask?\\nIs that too much to ask? Is that too much to ask?\\nI just wanna know if you love me\\nIs that too much to ask?\\nI just wanna know if you love me\\nIs that too much to ask? Is that too much to ask?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nIf you say that you love me\\nThen why do you play? Why do you play?\\nI just wanna know if you love me If you love me\\nIs that too much to ask?\\nI just wanna know if you love me If you love me\\nIs that too much to ask?\",\n", - " 'id': 9521954},\n", - " {'name': 'Turn Yo Clic Up',\n", - " 'artist': 'Future',\n", - " 'llama_response': \"(Verse 1)\\nI'm the king of the trap, the one and only\\nGot my crew around me, we all in this together\\nFrom the hood to the top, we grinded every day\\nNow we living lavish, ain't no way to play\\n\\nBrand new whip, it's a Lambo, it's a Ferrari\\nGot my name on it, ain't no other way to be\\nGot my homies with me, we all on the rise\\nLeaving all the haters in the dust, they can't deny\\n\\n(Chorus)\\nBoss in the streets, that's what I am\\nGot my status, got my wealth, got my fame\\nBut it ain't easy, ain't no overnight thing\\nGot to keep pushing, got to keep climbing\\n\\n(Verse 2)\\nI'm the one they all look up to, the one they all fear\\nGot my own lane, ain't no one in my ear\\nGot my own flow, ain't no one got my style\\nGot my own swag, ain't no one got my vibe\\n\\nGot my own label, ain't no one on my payroll\\nGot my own team, ain't no one in my zone\\nGot my own game, ain't no one on my soil\\nGot my own flow, ain't no one got my go\\n\\n(Chorus)\\nBoss in the streets, that's what I am\\nGot my status, got my wealth, got my fame\\nBut it ain't easy, ain't no overnight thing\\nGot to keep pushing, got to keep climbing\\n\\n(Bridge)\\nSetbacks and haters, they'll try to bring me down\\nBut I won't fall, I'll keep standing tall and proud\\nGot my loyal crew, they'll never leave my side\\nGot my street cred, it's the only thing that's right\\n\\n(Verse 3)\\nI'm the one they all respect, the one they all fear\\nGot my own path, ain't no one in my ear\\nGot my own voice, ain't no one got my style\\nGot my own vision, ain't no one got my vibe\\n\\nGot my own empire, ain't no one in my way\\nGot my own legacy, ain't no one got my say\\nGot my own story, ain't no one got my flow\\nGot my own identity, ain't no one got my go\\n\\n(Chorus)\\nBoss in the streets, that's what I am\\nGot my status, got my wealth, got my fame\\nBut it ain't easy, ain't no overnight thing\\nGot to keep pushing, got to keep climbing\\n\\n(Outro)\\nSo listen up, y'all, I hope you understand\\nBeing a boss in the streets, it ain't no easy hand\\nBut I'll keep climbing, I'll keep pushing hard\",\n", - " 'lyre_response': \"[Intro]\\nRaymond, you a fool for this one\\n[Chorus]\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss Raymond, you a fool for this one\\n[Verse 1]\\nI can't show no emotions, I'm from the streets\\nMy nigga, you know I got no heart\\nI'm from the trenches, I'm from the seeds\\nYou know I got no time for your feelings\\nI keep my bitch, I keep my bitch\\nShe got a ass, and when she sit\\nYou know it's on me, you know it's on me\\nShe get a dick, she get a dick\\nShe get a dick, she get a dick\\nAnd when she done, she done\\nAnd when she done, she done\\nI take a lil' off, I take a lil' off\\nI take a lil' off, I take a lil' off, I'm a boss\\n[Chorus]\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss Raymond, you a fool for this one [Verse 2]\\nI got my set, I got my set\\nIf you not with us, then you against us\\nYou know how this game go, you know the end\\nYou either with us, or you ride solo\\nMy nigga, I swear to God, you is not loyal\\nI had to cut you off, I had to cut you off\\nI can't have no pussy ass nigga with my dopest coupe\\nI got too many other niggas that's willing to cut you off\\nI'm just saying, I'm just saying [Chorus]\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss ain't cheap, but the cost on your soul\\nHeavy is the head that wears the crown\\nHeavy is the head that wears the crown\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss Raymond, you a fool for this one\\n[Outro]\\nI'm a fool for this one\\nBeing a boss, being a boss\\nBeing a boss, being a boss\\nBeing a boss, being a boss Raymond, you a fool for this one\",\n", - " 'id': 9315592},\n", - " {'name': 'Feel It',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm in the club, feel the energy, got my eyes on you\\nYou're lookin' fine, gotta take you home with me, yeah\\nGot my drink in hand, feelin' like a star\\nGot my eyes on you, girl, you're the only one I care\\n\\n(Chorus)\\nShawty, I won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\nI won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\n\\n(Verse 2)\\nYou're movin' to the beat, got me feelin' like a king\\nGot my hands on you, gotta keep it goin'\\nGot my eyes on you, girl, you're the only one I see\\nGot my heart on you, girl, you're the only one for me\\n\\n(Chorus)\\nShawty, I won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\nI won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\n\\n(Bridge)\\nWe're livin' life to the fullest, gotta make the most of it\\nGot my hands on you, gotta keep it movin'\\nWe're in the moment, gotta let it ride\\nGot my eyes on you, girl, you're takin' me higher\\n\\n(Chorus)\\nShawty, I won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\nI won't stop, I won't stop, I won't stop\\nUntil you feel it, until you feel it, yeah\\n\\n(Outro)\\nI'll keep on pushin', keep on pullin' you in\\nGot my eyes on you, girl, you're the only one I'm in\\nGot my heart on you, girl, you're the only one I'll need\\nShawty, I won't stop, until you feel it, yeah.\\n\",\n", - " 'lyre_response': \"[Intro PARTYNEXTDOOR]\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nShawty, I won't stop\\nShawty, I won't stop\\nShawty, I won't stop\\nShawty, I won't stop\\n[Chorus PARTYNEXTDOOR]\\nShawty, I won't stop until you feel it\\nWon't stop until you feel it, yeah\\nWon't stop until you feel it\\nWon't stop until you feel it\\nWon't stop, yeah, I won't stop, yeah\\n[Verse 1 Travis Scott]\\nI'll go out my way to get a lick\\nI'll go out my way to bring you bacon\\nTell my nurse she gotta hit the road\\n'Cause I'ma do this shit all night, all day\\nShe gon' leave her boyfriend for the night\\n'Cause I'ma do this shit all night, all day\\nI'm the lust and love of your life\\nGot a dick that'll make you feel like you're flyin'\\nGot a tongue that'll make you feel like you're dyin'\\nYou'll never be the same after we collide\\n[Pre-Chorus PARTYNEXTDOOR]\\nI'm gon' take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\nI'm gonna take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\n[Chorus PARTYNEXTDOOR]\\nShawty, I won't stop until you feel it\\nWon't stop until you feel it, yeah\\nWon't stop until you feel it\\nWon't stop until you feel it\\nWon't stop, yeah I won't stop, yeah\\n[Verse 2 Travis Scott]\\nPour the Patron, I'll take it from here\\nPour the Patron, I'll take it from here\\nI'll put you up on game, I'll take you everywhere\\nWon't stop, 'cause I'm the man of the year\\nI'm all in this bitch, feel like I'm in a mirror\\nLike I'm staring at myself, is you my mirror?\\nMirror, mirror, who's the fairest one of all?\\nAll, all, who's the fairest one of all?\\n[Pre-Chorus PARTYNEXTDOOR]\\nI'm gon' take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\nI'm gonna take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\n[Chorus PARTYNEXTDOOR]\\nShawty, I won't stop until you feel it\\nWon't stop until you feel it, yeah\\nWon't stop until you feel it\\nWon't stop until you feel it\\nWon't stop, yeah I won't stop, yeah\\n[Bridge PARTYNEXTDOOR]\\nI'm gonna take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\nI'm gonna take this night and I'm gonna ride\\nI'm gon' take this night and I might die\\n[Chorus PARTYNEXTDOOR & \\nTravis Scott]\\nShawty, I won't stop until you feel it\\nWon't stop until you feel it, yeah Uh\\nWon't stop until you feel it Feel it\\nWon't stop until you feel it Feel it\\nWon't stop until you feel it\\nWon't stop, yeah I won't stop, yeah\",\n", - " 'id': 4805544},\n", - " {'name': 'Diamonds',\n", - " 'artist': 'Sia',\n", - " 'llama_response': \"Verse 1\\nI've been through the fire and the rain\\nBut I'm still standing, I'm still here\\nI've got scars that tell my story\\nBut I'm not broken, I'm not sorry\\nI've been through the storm, but I'm not shaken\\nI've emerged stronger, my spirit unbroken\\n\\nChorus\\nI'm a diamond in the rough, shining bright\\nI've weathered every storm, I'm still standing tall\\nI've got the heart of a warrior, I won't give up the fight\\nI'll shine my light, I'll rise above the night\\nI'm a diamond in the rough, I'm radiant and strong\\nI'll keep on shining, all life long\\n\\nVerse 2\\nI've seen the darkest of days\\nBut I've never lost my way\\nI've found the light in every moment\\nAnd I've risen above the fray\\nI've got the strength of a lioness\\nAnd the grace of a hummingbird's wings\\nI'll soar on the wind, I'll dance in the rain\\nI'm unstoppable, I'm untamed\\n\\nChorus\\nI'm a diamond in the rough, shining bright\\nI've weathered every storm, I'm still standing tall\\nI've got the heart of a warrior, I won't give up the fight\\nI'll shine my light, I'll rise above the night\\nI'm a diamond in the rough, I'm radiant and strong\\nI'll keep on shining, all life long\\n\\nBridge\\nI'll never let the shadows take control\\nI'll never let my spirit be sold\\nI'll rise above the noise, I'll stand tall and proud\\nI'm a diamond in the rough, I'm unbreakable and loud\\n\\nChorus\\nI'm a diamond in the rough, shining bright\\nI've weathered every storm, I'm still standing tall\\nI've got the heart of a warrior, I won't give up the fight\\nI'll shine my light, I'll rise above the night\\nI'm a diamond in the rough, I'm radiant and strong\\nI'll keep on shining, all life long\\n\\nOutro\\nI'm a diamond in the rough, a shining light\\nI'll keep on shining, through day and night\\nI'll rise above the darkness, I'll never give up the fight\\nI'm a diamond in the rough, I'm unbreakable and bright.\\n\\nMusical Arrangement\\n\\n* The song begins with a soft, haunting melody on piano and strings, with Sia's signature soaring vocals.\\n* The tempo picks up in the chorus, with a driving beat and uplifting harmonies, building to an anthemic climax.\\n* The verses feature a mix of piano and guitar, with a subtle use of percussion and strings to create a sense of depth and texture.\\n* The bridge features a more stripped-back arrangement, with just piano and vocals, before building back up to the final chorus.\\n* The song ends with a reprise of the chorus, with a sense of resolution and triumph.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOh, oh, oh, oh\\nOh, oh, oh, oh\\nOh, oh, oh, oh\\nDiamonds are formed under pressure\\nSo are the things that are worth the most\\nSo, let the rain wash over you\\nAnd the sun light the things that you've done\\nAnd you'll become a diamond, too\\n[Verse 1]\\nSo, let it fall, let it crumble\\nForming a foundation for what's to come\\nSo, let it break, let it shatter\\nAnd let the pieces fall where they may\\nSo, let it burn, let it bleed\\nAnd let the fire come to wash away all the pain\\n[Pre-Chorus]\\nBecause when the going gets tough\\nThat's when you get to prove yourself\\nSo, let it fall, let it crumble\\nForming a foundation for what's to come\\nSo, let it break, let it shatter\\nAnd let the pieces fall where they may\\nSo, let it burn, let it bleed\\nAnd let the fire come to wash away all the pain\\n[Chorus]\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine [Verse 2]\\nSo, let it fall, let it crumble\\nForming a foundation for what's to come\\nSo, let it break, let it shatter\\nAnd let the pieces fall where they may\\nSo, let it burn, let it bleed\\nAnd let the fire come to wash away all the pain\\n[Pre-Chorus]\\nBecause when the going gets tough\\nThat's when you get to prove yourself\\nSo, let it fall, let it crumble\\nForming a foundation for what's to come\\nSo, let it break, let it shatter\\nAnd let the pieces fall where they may\\nSo, let it burn, let it bleed\\nAnd let the fire come to wash away all the pain\\n[Chorus]\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine [Outro]\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine, so you can shine\\nSo, you can shine\",\n", - " 'id': 89794},\n", - " {'name': 'Tattooed Heart',\n", - " 'artist': 'Ariana Grande',\n", - " 'llama_response': \"Verse 1\\nI've been thinking 'bout the way you make me feel\\nLike you're the only one who knows me, really knows me\\nAnd I can't help but wonder if you feel the same\\nIf you'd be the one to ink my name on your heart, forevermore\\n\\nChorus\\nI want to be the one you think of when you see the stars up high\\nThe one you dream of, the one you can't deny\\nI want to be the name on your tattooed heart\\nForever and always, we'll never be apart\\n\\nVerse 2\\nI know it's crazy, but I can't help how I feel\\nLike I need a symbol, something tangible to reveal\\nThe depth of our love, the connection we share\\nA mark that'll last forever, beyond compare\\n\\nChorus\\nI want to be the one you think of when you see the stars up high\\nThe one you dream of, the one you can't deny\\nI want to be the name on your tattooed heart\\nForever and always, we'll never be apart\\n\\nBridge\\nI don't need diamonds or fancy cars\\nAll I need is you, and a heart that's yours\\nI'll give you my love, my heart, my everything\\nForever and always, my love will sing\\n\\nChorus\\nI want to be the one you think of when you see the stars up high\\nThe one you dream of, the one you can't deny\\nI want to be the name on your tattooed heart\\nForever and always, we'll never be apart\\n\\nOutro\\nI know it's not traditional, but I don't care\\nI just want you to know that I'm always there\\nIn your heart, in your soul, in your dreams\\nForever and always, my love will gleam.\\n\",\n", - " 'lyre_response': \"[Intro]\\nMy tattooed heart\\nWill forever be yours\\nYou're the one I need\\nForever and always\\n[Verse 1]\\nWill you be my tattooed heart?\\nWill you be my tattooed heart?\\nI want to be your temporary high\\nI want you to surrender to me, me, yeah\\nI don't need no diamond ring\\nI don't need no material thing\\nI need your love, your love, your love\\nI want your love, your love\\n[Pre-Chorus]\\nAnd I will be your temporary high\\nI will surrender to you\\nI don't need no diamond ring\\nI don't need no material thing\\nI need your love, your love, your love\\nI want your love, your love\\n[Chorus]\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\n[Verse 2]\\nWill you be my tattooed heart?\\nWill you be my tattooed heart?\\nI want to be your temporary high\\nI want you to surrender to me, me, yeah\\nI don't need no diamond ring\\nI don't need no material thing\\nI need your love, your love, your love\\nI want your love, your love [Pre-Chorus]\\nAnd I will be your temporary high\\nI will surrender to you\\nI don't need no diamond ring\\nI don't need no material thing\\nI need your love, your love, your love\\nI want your love, your love\\n[Chorus]\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\\nI want to be your tattooed heart\",\n", - " 'id': 213372},\n", - " {'name': 'The Hillbillies',\n", - " 'artist': 'Kendrick Lamar',\n", - " 'llama_response': \"Verse 1 (Kendrick Lamar)\\nI'm livin' large, ballin' like a pro,\\nFresh off the plane, private jet flow,\\nFashion brands on me like a badge of honor,\\nBillions in the bank, but I'm still feelin' like a rogue.\\n\\nChorus (Bon Iver)\\nI'm a celebrity, but I'm not myself,\\nLiving in a world that's not real,\\nI'm a shadow of the person I used to be,\\nA reflection of the fame that's been bestowed upon me.\\n\\nVerse 2 (Kendrick Lamar)\\nI've got the world at my fingertips,\\nRed carpets, awards, and diamond-studded rings,\\nBut the more I have, the more I'm left with,\\nA hollow feeling, like there's nothin' that's real.\\n\\nChorus (Bon Iver)\\nI'm a celebrity, but I'm not myself,\\nLiving in a world that's not real,\\nI'm a shadow of the person I used to be,\\nA reflection of the fame that's been bestowed upon me.\\n\\nVerse 3 (Kendrick Lamar)\\nI'm the king of the game, but I'm not the king of my life,\\nI'm a puppet on a string, a pawn in the game of strife,\\nI've got the world at my feet, but I'm still searchin' for the truth,\\nAin't no Instagram filter can hide the emptiness I feel.\\n\\nChorus (Bon Iver)\\nI'm a celebrity, but I'm not myself,\\nLiving in a world that's not real,\\nI'm a shadow of the person I used to be,\\nA reflection of the fame that's been bestowed upon me.\\n\\nVerse 4 (Kendrick Lamar)\\nI'm the king of the castle, but I'm not the king of my heart,\\nI'm a ghost in the machine, a stranger in this world from the start,\\nI've got the world in the palm of my hand, but I'm still reachin' for the sky,\\nAin't no status symbol can replace the love that I desire.\\n\\nChorus (Bon Iver)\\nI'm a celebrity, but I'm not myself,\\nLiving in a world that's not real,\\nI'm a shadow of the person I used to be,\\nA reflection of the fame that's been bestowed upon me.\\n\\nBridge (Kendrick Lamar)\\nI'm a work of art, a masterpiece in the making,\\nA reflection of the world that's been shaping me,\\nI'm a mirror of society, a reflection of the times,\\nA product of the system, a slave to the rhymes.\\n\\nChorus (Bon Iver)\\nI'm a celebrity, but I'm not myself,\\nLiving in a world that's not real,\\nI'm a shadow of the person I used to be,\\nA reflection of the fame that's been bestowed upon me.\\n\\nOutro (Kendrick Lamar)\\nI'm the king of the game, but I'm not the king of my life,\\nA celebrity in the spotlight, but I'm still searchin' for the truth,\\nI'm a ghost in the machine, a stranger in this world from the start,\\nBut I'll keep on fightin', keep on searchin', keep on reachin' for the sky.\\n\",\n", - " 'lyre_response': \"[Intro Kendrick Lamar]\\nIt's real, I'm in the cut, heart full of pride, I'm tied\\nTo a fashion brand, just not sure which one, yet\\nI'm\\u2005in\\u2005the\\u2005club, I'm\\u2005by myself, no one's around\\nI\\u2005got my drink, no one's served it, I'm the only one here\\n[Verse 1 Kendrick Lamar]\\nI'm a \\nreal one, not an actor\\nI don't do shit for attention, I just do it for the fabric\\nI'm a black Taurus, 45, and I'm loaded\\nMention my name, they'll mention my properties\\nI don't do shit for free, you gotta pay me\\nYou gotta pay me if you want me to endorse ya\\nYou gotta pay me if you want me to appear ya\\nI don't owe no one nothin', I just do it for the love\\nI'm in the club, I got a balcony, I got a view\\nI'm with my woes, we don't know each other, we don't hug\\nI got plenty dough, but I'm not rich enough\\nI'm on a quest to find the realest shit\\nI'm on a flight right now, I'm one of the few\\nI'm on first class, but I'm not here for the view\\nI'm here for you [Bridge Kendrick Lamar & \\nBon Iver]\\nI'm in the cut, I'm tied to a fashion brand\\nI'm in the club by myself, I'm the only one here\\nI don't owe no one nothin', I just do it for the love\\nI'm on a quest to find the realest shit\\nI'm in the cut, I'm tied to a fashion brand\\nI'm in the club by myself, I'm the only one here\\nI don't owe no one nothin', I just do it for the love\\nI'm on a quest to find the realest shit\\nI'm in the cut, I'm tied to a fashion brand\\nI'm in the club by myself, I'm the only one here\\nI don't owe no one nothin', I just do it for the love\\nI'm on a quest to find the realest shit\\n[Verse 2 Bon Iver]\\nI'm a real one, not an actor\\nI don't do shit for attention, I just do it for the cracker\\nJacksons, I'm a Michigander, 250, and I'm loaded\\nMention my name, they'll mention my properties\\nI don't do shit for free, you gotta pay me\\nYou gotta pay me if you want me to endorse ya\\nYou gotta pay me if you want me to appear ya\\nI don't owe no one nothin', I just do it for the love\\nI'm on a flight right now, I'm one of the few\\nI'm on first class, but I'm not here for the view\\nI'm here for you [Bridge Kendrick Lamar & \\nBon Iver]\\nI'm in the cut, I'm tied to a fashion brand\\nI'm in the club by myself, I'm the only one here\\nI don't owe no one nothin', I just do it for the love\\nI'm on a quest to find the realest shit\\nI'm in the cut, I'm tied to a fashion brand\\nI'm in the club by myself, I'm the only one here\\nI don't owe no one nothin', I just do it for the love\\nI'm on a quest to find the realest shit\\n[Outro Kendrick Lamar]\\nI'm a real one, not an actor\\nI don't do shit for attention, I just do it for the cracker\\nJackson's, I'm a Michigander, 250, and I'm loaded\\nMention my name, they'll mention my properties\\nI don't do shit for free, you gotta pay me\\nYou gotta pay me if you want me to endorse ya\\nYou gotta pay me if you want me to appear ya\\nI don't owe no one nothin', I just do it for the love\\nI'm on a flight right now, I'm one of the few\\nI'm on first class, but I'm not here for the view\\nI'm here for you\",\n", - " 'id': 9178861},\n", - " {'name': 'Bongos',\n", - " 'artist': 'Cardi B',\n", - " 'llama_response': \"(Verse 1 - Cardi B)\\nI'm the queen of the club, ain't no one touchin' me\\nGot my own money, ain't no one fundin' me\\nBirkin bag on my arm, Louboutins on my feet\\nI'm the one they all come to see, can't nobody beat\\n\\n(Chorus - Cardi B & Megan Thee Stallion)\\nWe the baddest bitches in the game, don't you know\\nWe got the flow, we got the style, we got the dough\\nWe ain't no one's bitch, we in control, you see\\nWe the queens of the club, and we're here to be free\\n\\n(Verse 2 - Megan Thee Stallion)\\nI'm the king of the throne, ain't no one touchin' me\\nGot my own swag, ain't no one jackin' me\\nRockin' my designer, got my own style\\nI'm the one they all come to buy, can't nobody smile\\n\\n(Chorus - Cardi B & Megan Thee Stallion)\\nWe the baddest bitches in the game, don't you know\\nWe got the flow, we got the style, we got the dough\\nWe ain't no one's bitch, we in control, you see\\nWe the queens of the club, and we're here to be free\\n\\n(Verse 3 - Cardi B)\\nI'm the one they all come to see, I'm the king of the throne\\nGot my own money, ain't no one takin' it from me\\nGot my own style, ain't no one copyin' me\\nI'm the one they all come to be, can't nobody be me\\n\\n(Chorus - Cardi B & Megan Thee Stallion)\\nWe the baddest bitches in the game, don't you know\\nWe got the flow, we got the style, we got the dough\\nWe ain't no one's bitch, we in control, you see\\nWe the queens of the club, and we're here to be free\\n\\n(Bridge - Both)\\nWe the ones they all come to see, we the ones they all come to be\\nWe the baddest bitches in the game, and we're here to set them free\\nWe the queens of the club, and we're here to stay\\nWe the ones they all come to see, every single day\\n\\n(Chorus - Cardi B & Megan Thee Stallion)\\nWe the baddest bitches in the game, don't you know\\nWe got the flow, we got the style, we got the dough\\nWe ain't no one's bitch, we in control, you see\\nWe the queens of the club, and we're here to be free\\n\\n(Outro - Both)\\nSo if you come to the club, you know what to do\\nGot to come to see the baddest bitches in the game, it's true\\nWe the queens of the club, and we're here to stay\",\n", - " 'lyre_response': '[Intro Cardi B]\\nBitch, I\\'m a dollar bill\\nKnow my value, I was born with it\\nSoon as I step in, you know I\\'m gon\\' pay it\\nI know my value, I was born with it (Woah, woah)\\n[Chorus Megan Thee Stallion & \\nCardi B]\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set\\nHottie\\n, he a hottie\\n Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah, yeah\\nHottie\\n, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set\\nHottie\\n, he a hottie\\n[Refrain Cardi B & \\nMegan Thee Stallion]\\nShould I pick up a check or should I not? (Hey)\\nI\\'m a hottie and you\\'re a hottie (Woah)\\nWe like to party and we like to turn up (Cardi)\\nWe like to travel and we like to jet set (Megan)\\n[Verse 1 Megan Thee Stallion]\\nI can\\'t help it, I\\'m a mess\\nIf I can\\'t be with you, I don\\'t want none\\nI don\\'t want him, he too messy\\nI\\'ll walk by and I\\'ma give him detention\\nFucking with my head, I can\\'t seem to focus\\nI know he\\'s bad for me, but I\\'m addicted\\nI\\'ve been with guys like him before\\nThey always want me to be a secretary\\nWant me to be their little puppet\\nWanna fuck me and then diss me and then send me a letter\\nRead it on my cell, my heart all in pieces\\nTried to call him, but I couldn\\'t reach him\\nI\\'m so done with dudes, I want Queen Megan\\nI want a king, I want a billion\\nI want a mansion, I want a yacht\\nI want a jet, I want a Rolls\\nI want a drop-top, I want a gold mine\\nI want a big ass, I want a photo shoot\\nI want a contract, I want a mega deal\\nI want, I want, I want, I want, I want\\n[Pre-Chorus Megan Thee Stallion]\\nI want, I want, I want, I want, I want\\nI want, I want, I want, I want\\nI want, I want, I want, I want, I want Woah\\n[Chorus Megan Thee Stallion & \\nCardi B]\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up Woah\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up Cardi\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\n[Refrain Cardi B & \\nMegan Thee Stallion]\\nShould I pick up a check or should I not? (Hey)\\nI\\'m a hottie and you\\'re a hottie (Woah)\\nWe like to party and we like to turn up (Cardi)\\nWe like to travel and we like to jet set (Megan)\\n[Verse 2 Cardi B]\\nNow my new Chanel bag cost six thousand\\nMy new Gucci shoes, they got the rubber band on \\'em\\nYou just a regular nigga, no, not Fendi rich\\nBut you could be if you just understood the hustle\\nAin\\'t no way you could ever compare to me\\nI was born with money, you was born with your momma\\nBut she still caught the bus just like all the rest\\nShe still works at the office, she don\\'t do no less\\nI pull up in the Jag, I see her lil\\' ass\\nShe gives me a kiss, then she pulls out the VHS\\nShe says, \"Tyrone, you be slowing down, you gotta get it\"\\nI\\'m like, \"Ma, I\\'m a hustler, not a golfer\"\\nCardi, Cardi, Cardi, do your homework\\nIf you was me, you\\'d be a billionaire by thirty\\nYour daddy\\'s money, your mama\\'s pretty\\nBut she raised a smart one, that\\'s me, that\\'s me\\nCardi, Cardi, Cardi, do your homework\\nIf you was me, you\\'d be a billionaire by thirty [Pre-Chorus Cardi B]\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up\\nI\\'m a hottie, he a hottie\\nWe like to party, we like to turn up\\nI\\'m a hottie, he a hottie Woah\\nWe like to party, we like to turn up Woah\\nI like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up Cardi\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Yeah\\nHottie\\n, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set Woah\\nHottie\\n, he a hottie Woah\\n[Refrain Cardi B & \\nMegan Thee Stallion]\\nShould I pick up a check or should I not? (Hey)\\nI\\'m a hottie and you\\'re a hottie (Woah)\\nWe like to party and we like to turn up (Cardi)\\nWe like to travel and we like to jet set (Megan)\\n[Outro Megan Thee Stallion & \\nCardi B]\\nI\\'m a hottie, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set\\nHottie, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set\\nHottie, he a hottie Woah\\nWe like to party, we like to turn up\\nWe like to travel, we like to jet set\\nHottie, he a hottie Woah\\nWe like to party, we like to turn up',\n", - " 'id': 9491312},\n", - " {'name': 'Private Landing',\n", - " 'artist': 'Justin Bieber ',\n", - " 'llama_response': \"(Verse 1)\\nI'm livin' large, livin' fast, livin' life to the fullest\\nGot my name in lights, got my face on the wall\\nFame and fortune, they come and they go\\nBut I'm stuck in this life, like a fly in a gold mine\\n\\n(Chorus)\\nI'm trapped in the high life, but I won't say no\\nTo the thrill of the chase, the rush of the show\\nI'm living large, but it's not all it seems\\nThe lavish lifestyle, it's just a dream\\n\\n(Verse 2)\\nI got champagne on ice, got diamonds on my hand\\nGot a private jet, got a mansion on the sand\\nBut the more I have, the more I want\\nThe fame, the fortune, it's a never-ending chase\\n\\n(Chorus)\\nI'm trapped in the high life, but I won't say no\\nTo the thrill of the chase, the rush of the show\\nI'm living large, but it's not all it seems\\nThe lavish lifestyle, it's just a dream\\n\\n(Bridge)\\nI know I'm lucky, I know I'm blessed\\nBut sometimes I feel like I'm in a mess\\nThe pressures of fame, the pressures of love\\nIt's hard to keep up, it's hard to rise above\\n\\n(Verse 3)\\nI'm chasing the dream, I'm living the life\\nGot my heart on my sleeve, got my love in strife\\nWe're dancing on the floor, we're feeling alive\\nBut the more we have, the more we want to survive\\n\\n(Chorus)\\nI'm trapped in the high life, but I won't say no\\nTo the thrill of the chase, the rush of the show\\nI'm living large, but it's not all it seems\\nThe lavish lifestyle, it's just a dream\\n\\n(Outro)\\nSo I'll keep on dancing, I'll keep on singing\\nI'll keep on living life to the fullest\\nThe high life may be complex, but I'll never give up\",\n", - " 'lyre_response': \"[Intro]\\nDon't do me no good\\nDon't do it, yeah\\nDon't do me no good, no\\nDon't do it, nah\\n[Verse 1 Justin Bieber]\\nDon't do me no good, and I still would stay\\nWhere you go, I follow, it's a madhouse, yeah\\nDon't wanna be a player, but I know how to play\\nI got a few other girls, they be all up in my face\\nGirl, let me put you on a jet, yeah\\nLet me take you to a place\\nWhere you won't ever set a foot ain't no way, yeah\\nCould be forever, if you want it, yeah\\nBut you gotta run a certain circle, yeah\\nYou ain't normal, but I like that in a girl (In a girl)\\nYou got a certain smell, it's called success (It's called success)\\nI'm a bad boy, but I'm really a good boy\\nI'm bored in the room, it's called excess (It's called excess)\\n[Chorus Justin Bieber]\\nAnd I'm trapped in the high life\\nWith too many choices\\nAnd I'm trapped in the high life\\nAnd I like it, yeah, I like it, yeah\\n'Cause I'm trapped in the high life\\nAnd I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah\\n'Cause I'm trapped in the high life\\n[Verse 2 Ludacris]\\nUh, what up, baby? \\nYou know who you are\\nIf you're here, then you know I got a big heart (Woo)\\nAnd you can make it easier for me to give it to you, baby\\nIf you just let me put it to you in a different way (Woo)\\nIt's a special night, so I'm thinkin' it's time to get ignited (Woo)\\nI'm feelin' so good I'ma probably end up in heaven (Woo)\\nWhen I leave, make sure you remember me in your dreams (Woo)\\nAnd I promise when I'm gone, you'll still be in my thoughts (Woo)\\nGot a lot of money, power, and fame\\nLot of pressure, stress, and pain (Yeah)\\nLot of women, but I'm a flirt (Uh)\\nIt's a lot of things, but I just can't quit (Woo)\\n[Bridge Justin Bieber & \\nLudacris]\\nDon't do me no good, and I still would stay Don't do it, yeah\\nWhere you go, I follow, it's a madhouse, yeah Don't do me no good, no\\nI don't wanna be a player, but I know how to play\\nI got a few other girls, they be all up in my face\\nBut you're the one that's got me trapped, baby, now you know\\nGirl, let me put you on a jet, yeah\\nLet me take you to a place\\nWhere you won't ever set a foot ain't no way, yeah Oh\\nCould be forever, if you want it, yeah Oh\\nBut you gotta run a certain circle, yeah\\nYou ain't normal, but I like that in a girl Oh\\nYou got a certain smell, it's called success Oh\\nI'm a bad boy, but I'm really a good boy Oh\\nI'm bored in the room, it's called excess Oh\\n[Chorus Justin Bieber & \\nLudacris]\\nAnd I'm trapped in the high life And I'm trapped, and I'm trapped, and I'm trapped in the high life\\nWith too many choices Oh\\nAnd I'm trapped in the high life And I'm trapped, and I'm trapped, and I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah Don't do me no good\\nDon't do it, yeah\\n'Cause I'm trapped in the high life And I'm trapped, and I'm trapped, and I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah Don't do me no good\\nDon't do it, nah\\n'Cause I'm trapped in the high life And I'm trapped, and I'm trapped, and I'm trapped in the high life\\n[Verse 3 Sevyn Streeter]\\nUh, Girl, I see you, and I gotta say\\nYou got a lot of nerve, leading me on like that\\nUh, when you know that I'm aware, that you got a man, it's cold\\nBut I'm still here, so what that tell you, baby?\\nWhat that tell you, baby?\\nIt tell you that I'm a fool, and I'll never learn\\nBut what they say is true, love is a burn\\nBut I'll never ever, ever, ever leave (Uh)\\nSo baby, you got the best of me (Uh)\\nGirl, you got the best of me (Uh)\\nSo baby, won't you please (Uh)\\nWon't you please just love me? (Uh)\\nWon't you please just love me? (Uh)\\n[Chorus Justin Bieber]\\nAnd I'm trapped in the high life\\nWith too many choices\\nAnd I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah\\n'Cause I'm trapped in the high life\\nAnd I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah\\n'Cause I'm trapped in the high life\\n[Verse 4 Chris Brown]\\nI'm trapped in the high life\\nAnd I like it, yeah\\nI'm trapped in the high life\\nAnd I like it, yeah\\nI'm trapped in the high life\\nWith too many choices\\nAnd I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah\\nGirl, you got me\\nI'm stuck on you, girl\\nYou got a nerve, but I like it, yeah\\n'Cause I'm trapped in the high life\\nAnd I'm trapped in the high life\\nAnd I like it, yeah I like it, yeah\\n'Cause I'm trapped in the high life\",\n", - " 'id': 8846302},\n", - " {'name': 'Evil Ways',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI was just a youngin' tryna make a name\\nBut life had other plans, it was all a game\\nI was chasin' fame, tryna get my shine\\nBut it came with prices, I had to redefine\\nWhat success mean to me, what I'm willin' to design\\nGot my eyes on the prize, but I ain't never gonna find\\nPeace in the fame, if I ain't bein' true to myself\\nGotta grow, gotta learn, gotta evolve, gotta heal\\n\\nChorus\\nI'm growin' up, I'm growin' old\\nFame is a game, but I'm tellin' my story\\nGot my ups and downs, got my highs and lows\\nBut I'm still standin', ain't no stoppin' me now\\n\\nVerse 2\\nI was a young lion, roarin' in the night\\nBut now I'm a wise old dog, tryna make things right\\nI had to learn the hard way, had to lose it all\\nBut now I'm back, standin' tall, and I won't fall\\nI been through the fire, I been through the rain\\nBut I'm still here, ain't nothin' gonna change\\nMy rhymes is like a sword, they cut deep and true\\nGot my loyal fans, they see the real me, boo\\n\\nChorus\\nI'm growin' up, I'm growin' old\\nFame is a game, but I'm tellin' my story\\nGot my ups and downs, got my highs and lows\\nBut I'm still standin', ain't no stoppin' me now\\n\\nVerse 3\\nI used to be a stranger, tryna find my way\\nBut now I'm a leader, tryna pave the way\\nI had to overcome, had to break the chains\\nBut now I'm free, ain't nothin' gonna remain\\nI'm a product of my past, but I ain't the same\\nGot my eyes on the future, ain't no time to aim\\nI'm growin' up, I'm growin' old\\nBut my rhymes is forever, they'll never be cold\\n\\nChorus\\nI'm growin' up, I'm growin' old\\nFame is a game, but I'm tellin' my story\\nGot my ups and downs, got my highs and lows\\nBut I'm still standin', ain't no stoppin' me now\\n\\nOutro\\nI'm a different man, I'm a different artist\\nBut my rhymes is still hot, it's still a work of art\\nI'm growin' up, I'm growin' old\\nBut my legacy will never grow cold.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, it's Drake\\nYou just turned 30, you a grown ass man\\nYou got a son, you a grown ass man\\nYou know you better stop this back and forth\\nYou know you better grow up fast\\nYou know you better stop this back and forth\\nYou know you better grow up 'fore it's too late, yeah\\n[Verse 1]\\nEverybody grow up, they just do it at their own pace\\nSome get lost in the darkness, some find it on the way\\nI was in and out of trouble, lost and found God\\nI came in and out of my mama's house\\nDied and came to life again on the daily\\nI remember just how far it was to the top\\nAnd how many people said I'd never make it\\nThey were right, I wouldn't be here if it wasn't for him\\nMy father, who art in heaven, I'm tryna make it without him\\nThese memories are all that I have left of him\\nI hope the heavens have a plan for me and my son\\nI hope the heavens have a plan for me and my son\\n[Verse 2]\\nMy son, don't believe everything that you hear\\nAnd only believe half of what you see\\nShow him the world and educate him, but don't spoil him\\nBoy, you gonna go through some stuff, you better be strong\\nI know you don't know me, boy, but I'm your producer\\nAnd I'll be listening to all of your songs\\nI'll be in the audience every time that you perform\\nAnd I'll be the one out of all of these people who know you the most\\nAnd I'll be the first to tell you when you're wrong or when you're right\\nAnd you can ask me any question, I'll do my best to provide\\nAny information that a 10-year-old could need\\nBut don't think for a second that I'll be easy on you\\nBoy, I won't be, 'cause I don't believe in living vicariously\\nThrough my children, so you better be true to yourself\\nAnd don't look to me for financial support\\nYou got a lot to learn, but you're off to a good start\\nYour momma loves you, I love you, but she could never love you like I will\\nAnd I don't want you to ever remember me as a deadbeat dad\\nSo I'll be in the gallery when you play at the garden\\nAnd I'll be the one who takes your call when you ever feel unsafe\\nAnd I'll be the one to make you walk away from the fame\\nAnd I'll be the one to make you walk back to your car\\nAnd I'll be the one who wipes your tears\\nSo you don't ever have to worry, I'll always be your father [Interlude]\\nYour life is yours to live, but don't fuck with mine\\nDon't fuck with mine, don't fuck with mine\\nDon't fuck with mine\\n[Verse 3]\\nNever thought that I'd be the type to say these things\\nNever thought that I'd be the type to change\\nLike a former villain, now I'm the hero with the verse\\nIt's funny how life goes around in circles\\nSo I'll say the things that I needed to hear as a youngster\\nNever get involved in Involuntary manslaughter\\nNever leave a nigga for dead, that could be you later\\nAlways keep your wits about you, never take a day for granted\\nNever be afraid to apologize and make amends\\nIt's better to eat your pride than to eat your tears\\nLove yourself and you'll never have to fear\\nLove yourself and you'll never have to fear\\nLove yourself and you'll never have to fear\\nLove yourself and you'll never have to fear [Interlude Wayne McGlory]\\nYou just turned 30, you a grown ass man\\nYou got a son, you a grown ass man\\nYou know you better stop this back and forth\\nYou know you better grow up fast\\nYou know you better stop this back and forth\\nYou know you better grow up 'fore it's too late, yeah\\n[Verse 4]\\nI've come to realize that the greatest wealth is the wealth of the mind\\nThe greatest riches is the riches that's within\\nThe greatest treasure is the treasure that you can find\\nThe greatest pearls are the pearls that you can dive for\\nThe greatest magic is the magic that you provide\\nThe greatest miracles are the miracles that you survive\\nThe greatest heroes are the heroes that you see at night\\nThe greatest dreams are the dreams that you can make come true\\nThe greatest love is the love that you can give and receive\\nThe greatest gift is the gift that you can give to yourself\\nThe greatest glory is the glory that you can earn for yourself\\nThe greatest honor is the honor that you can give to yourself\\nThe greatest pride is the pride that you can take in yourself\\nThe greatest treasure is the treasure that you can find\\nThe greatest pearls are the pearls that you can dive for\\nThe greatest magic is the magic that you provide\\nThe greatest miracles are the miracles that you survive\\nThe greatest heroes are the heroes that you see at night\\nThe greatest dreams are the dreams that you can make come true\\nThe greatest love is the love that you can give and receive\\nThe greatest gift is the gift that you can give to yourself\\nThe greatest glory is the glory that you can earn for yourself\\nThe greatest honor is the honor that you can give to yourself\\nThe greatest pride is the pride that you can take in yourself [Outro]\\nYeah, it's Drake\\nYou just turned 30, you a grown ass man\\nYou got a son, you a grown ass man\\nYou know you better stop this back and forth\\nYou know you better grow up fast\\nYou know you better stop this back and forth\\nYou know you better grow up 'fore it's too late, yeah\",\n", - " 'id': 9743590},\n", - " {'name': 'Shakira: Bzrp Music Sessions, Vol. 53',\n", - " 'artist': 'Shakira',\n", - " 'llama_response': \"(Verse 1)\\nI used to be the one who held on tight\\nBut now I'm the one who's moving on tonight\\nI outgrew the love that didn't stand the test\\nNow I'm finding my worth, and I won't be undressed\\n\\nI'm not the same girl you used to know\\nI've grown into my own, and I'm in the flow\\nI'm worth more than the tears you shed for me\\nI'm worth more than the lies you fed to see\\n\\n(Chorus)\\nI'm a queen, I'm a boss, I'm on the rise\\nI'm independent, and I won't be surprised\\nI'm worth more than the love you gave me\\nI'm worth more than the lies you made me see\\n\\n(Verse 2)\\nI used to be the one who played by the rules\\nBut now I'm breaking free, and I'm taking my shoes\\nI'm not the same girl you used to see\\nI'm a woman, and I'm destined to be\\n\\nI'm worth more than the secrets you kept inside\\nI'm worth more than the love you didn't provide\\nI'm worth more than the lies you fed to me\\nI'm worth more than the love you didn't be\\n\\n(Chorus)\\nI'm a queen, I'm a boss, I'm on the rise\\nI'm independent, and I won't be surprised\\nI'm worth more than the love you gave me\\nI'm worth more than the lies you made me see\\n\\n(Bridge)\\nI'm not the girl you thought I'd be\\nI'm not the girl you wanted me to be\\nI'm the girl I'm meant to be\\nI'm the girl I'm meant to see\\n\\n(Chorus)\\nI'm a queen, I'm a boss, I'm on the rise\\nI'm independent, and I won't be surprised\\nI'm worth more than the love you gave me\\nI'm worth more than the lies you made me see\\n\\n(Outro)\\nI'm moving on, I'm moving up\\nI'm finding my worth, and I won't stop\\nI'm a strong, independent woman\\nAnd I won't be held back by your lies and your lies.\\n\",\n", - " 'lyre_response': '[Letra de \"Shakira Bzrp Music Sessions, Vol. 53\"]\\n[Intro Bizarrap]\\n(Yeah, yeah)\\n(Ah-ah)\\n[Verso 1 Bizarrap & \\nShakira]\\nEl peso de tu mirada, ya no es lo mismo\\nTu cuerpo, no me da miedo ya, como antes\\nMe parece agua lo que antes me trapaba\\nY ahora me basta con una rayita\\nYo no me arrepiento del pasado\\nNo eseso lo que está sucediendo\\nNo eseso lo que está sucediendo, no\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n[Refrán Bizarrap & \\nShakira]\\nUn gran amor no muere\\n(No, no, no, no, no)\\nY yo no lloro por el mío\\n(Si no querías entender)\\n(No es algo que pasó solo) [Puente Bizarrap & \\nShakira]\\nEl dinero no es todo, \\nhay más alla\\nDe lo que a ti te guste, \\nhay más alla\\nDe lo que a ti te guste, sí\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n[Coro Shakira]\\nY ahora que lo tenemos claro\\nYa no te lloraré\\nYa no me arrepentiré\\nYa no me enfermaré\\n(Si no querías entender)\\n(No es algo que pasó solo)\\nY ahora que lo tenemos claro\\nYa no te lloraré\\nYa no me arrepentiré\\nYa no me enfermaré (Ah-ah) [Verso 2 Bizarrap & \\nShakira]\\nMe vale un ruido, un besito\\nMe vale un descuido, un abrazo\\nEs que ya no quiero verte\\nNi oírte más, ni siquiera escuchar\\nTe metiste en mi vida\\nY ahora te pasas como un crack addicto\\nYo me fui para ponerme bien\\nYa no más late, no vuelva más\\n[Refrán Bizarrap & \\nShakira]\\nUn gran amor no muere\\n(No, no, no, no, no)\\nY yo no lloro por el mío\\n(Si no querías entender)\\n(No es algo que pasó solo) [Puente Bizarrap & \\nShakira]\\nEl dinero no es todo, \\nhay más alla\\nDe lo que a ti te guste, \\nhay más alla\\nDe lo que a ti te guste, sí\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n[Coro Shakira]\\nY ahora que lo tenemos claro\\nYa no te lloraré\\nYa no me arrepentiré\\nYa no me enfermaré\\n(Si no querías entender)\\n(No es algo que pasó solo)\\nY ahora que lo tenemos claro\\nYa no te lloraré\\nYa no me arrepentiré\\nYa no me enfermaré (Ah-ah)\\n[Post-Coro Bizarrap & \\nShakira]\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n(Si no querías entender)\\n(No es algo que pasó solo)\\n(Si no querías entender)\\n(No es algo que pasó solo)',\n", - " 'id': 8714746},\n", - " {'name': 'We Found Love',\n", - " 'artist': 'Rihanna',\n", - " 'llama_response': \"Verse 1\\nI was lost in the dark, couldn't find my way\\nFeeling like I'm drowning, in a sea of dismay\\nBut then I saw you, and my heart took flight\\nYou shone so bright, like a beacon in the night\\n\\nChorus\\nLove in the darkness, it's where I found you\\nIn the depths of my despair, you broke through\\nYou showed me hope, when I thought it was gone\\nLove in the darkness, it's where I've been\\n\\nVerse 2\\nI was running from the pain, trying to escape\\nBut you caught me, and you wouldn't let me break\\nYou held me close, and you showed me your heart\\nYou said I'm not alone, we'll never be apart\\n\\nChorus\\nLove in the darkness, it's where I found you\\nIn the depths of my despair, you broke through\\nYou showed me hope, when I thought it was gone\\nLove in the darkness, it's where I've been\\n\\nBridge\\nWe dance in the rain, under the city lights\\nOur love shining bright, like a beacon in flight\\nWe found each other, in the midst of the night\\nAnd now we're here, together, feeling alright\\n\\nChorus\\nLove in the darkness, it's where I found you\\nIn the depths of my despair, you broke through\\nYou showed me hope, when I thought it was gone\\nLove in the darkness, it's where I've been\\n\\nInstrumental Drop\\nThe music drops into an intense, pulsing electro house beat, with soaring synths and a driving bassline. The rhythm is infectious and energetic, building up to a powerful drop that captures the emotional intensity of the lyrics.\\n\\nOutro\\nI'm standing here, with you by my side\\nOur love shining bright, like a beacon in the tide\\nWe found each other, in the darkest night\\nAnd now we're here, together, feeling alright\\n\",\n", - " 'lyre_response': \"[Intro]\\nDrop\\nDrop\\nDrop\\nDrop\\n[Verse 1]\\nI was lost in the dark, had given up on love\\nThought that all hope was lost, that I'd never ever feel it\\nBut then you found me, in this place so cold\\nYou took my heart and turned it to dust\\nIt was dark, and I was encased in a mold\\nBut then you found me, in this place so cold\\n[Pre-Chorus]\\nHow could I ever forget this?\\nThis, the night that I found love\\nIn the deep, in the dark, where there's no way out\\nThis, the night that I found love\\n[Chorus]\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\\n[Verse 2]\\nYou'll never guess what I found, found, found\\nLove in a hopeless place, hopeless place\\nLove in a hopeless place, hopeless place\\nFound love in a hopeless place\\n[Pre-Chorus]\\nHow could I ever forget this?\\nThis, the night that I found love\\nIn the deep, in the dark, where there's no way out\\nThis, the night that I found love\\n[Chorus]\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\\n[Instrumental Drop] [Chorus]\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\\nFound love in a hopeless place\",\n", - " 'id': 56642},\n", - " {'name': 'Castles Crumbling (Taylor’s Version) [From The Vault]',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': 'Verse 1\\nI was the queen of this empire, oh so tall and so grand\\nMy crown shone bright, my people adored me, hand in hand\\nBut now the walls are crumbling, the castle\\'s in ruins\\nAnd I\\'m left standing here, with nothing but my regrets and my sins\\n\\nChorus\\nOh, the fall from grace, it\\'s a hard pill to swallow\\nMy glory days are gone, my bridges are burning\\nI once held the world in the palm of my hand\\nBut now I\\'m just a shadow of what I used to be\\n\\nVerse 2\\nI remember the cheers, the accolades, the fame\\nBut now the only sound is the echoes of my shame\\nMy relationships are tattered, my reputation in shreds\\nAnd I\\'m left to face the truth, that I\\'ve lost all my leads\\n\\nChorus\\nOh, the fall from grace, it\\'s a hard pill to swallow\\nMy glory days are gone, my bridges are burning\\nI once held the world in the palm of my hand\\nBut now I\\'m just a shadow of what I used to be\\n\\nVerse 3\\nI see the looks of disdain, the whispers in the air\\nThe judgments of those who once revered me, without a care\\nI know I\\'ve let them down, I\\'ve lost their trust\\nAnd now I\\'m left to face the consequences, of my own rust\\n\\nChorus\\nOh, the fall from grace, it\\'s a hard pill to swallow\\nMy glory days are gone, my bridges are burning\\nI once held the world in the palm of my hand\\nBut now I\\'m just a shadow of what I used to be\\n\\nBridge\\nI remember the heights, the adoration, the fame\\nBut now I\\'m just a ghost of my former self, with nothing but my name\\nI\\'ve lost the love, the respect, the power and the grace\\nAnd now I\\'m left to face the truth, in this lonely place\\n\\nChorus\\nOh, the fall from grace, it\\'s a hard pill to swallow\\nMy glory days are gone, my bridges are burning\\nI once held the world in the palm of my hand\\nBut now I\\'m just a shadow of what I used to be\\n\\nOutro\\nI once held the world in the palm of my hand\\nBut now I\\'m just a shadow of what I used to be\\nThe fall from grace, it\\'s a hard pill to swallow\\nMy glory days are gone, my bridges are burning.\\n\\nThis song captures the essence of a fallen empire, reflecting on past glory and the pain of lost grandeur. The lyrics convey a narrative of a protagonist who once held immense power and admiration but is now facing their downfall, with their achievements and relationships in ruins. The chorus emphasizes the crumbling of their metaphorical castle and the burning of bridges, highlighting the protagonist\\'s isolation and regret.\\n\\nThe song incorporates the emotional depth and storytelling akin to Taylor Swift\\'s music, with a collaboration verse similar to Hayley Williams\\'s style, to highlight the contrast between past and present. The use of imagery and symbolism, such as the \"castle\" and \"bridges,\" adds depth to the narrative, while the repetition of the chorus creates a sense of musical unity and emphasizes the protagonist\\'s downfall.\\n',\n", - " 'lyre_response': \"[Intro]\\nOnce the tallest tower\\nIn the whole dang town\\nHad the highest score\\nIn all of Yorkshire\\nAnd I'm pretty sure\\nEvery single person\\nIn that whole entire town\\nWould stop and turn\\nTheir head when\\nThey'd see me pass\\nNow I'm just a rubble\\nOf what I used to be\\nAnd this castle\\nIt's nothing but\\nRuins now\\n[Verse 1 Taylor Swift]\\nI used to be the girl with the most beautiful hair\\nWith the prettiest dresses and the boy of my dreams\\nEveryone loved me\\nI was living my dreams\\nI used to be the girl with the most beautiful hair\\nAnd the prettiest dresses and the boy of my dreams\\nEveryone loved me\\nI was living my dreams\\nUntil one day\\nIt all came crashing down\\n[Verse 2 Hayley Williams]\\nOnce I had a master\\nNow I'm nothing but a mess\\nAnd you can take my crown\\nIt won't make a dent\\nIn who I am or what I was\\nAnd you can take my crown\\nIt won't make a dent\\nIn who I am or what I was Was\\n[Chorus Hayley Williams]\\nMy castle's on the ground\\nAnd it's burning down\\nBridges burn, behind us\\nNow we have nothing but\\nThe ashes of our past lives\\nAnd my castle's on the ground\\nAnd it's burning down\\nBridges burn, behind us\\nNow we have nothing but\\nThe ashes of our past lives [Verse 3 Both, \\nTaylor Swift\\n, \\nHayley Williams]\\nI used to be the girl with the most beautiful hair\\nWith the prettiest dresses and the boy of my dreams\\nEveryone loved me\\nI was living my dreams\\nUntil one day\\nIt all came crashing down \\nCrashing down, oh, oh\\nAnd now I'm living in a burned-down town\\nWhere everyone I know\\nIs someone I don't know\\nAnd I'm left to wander\\nAlone and confused\\nAnd that's how you'll find me\\nIn my burned-down town\\nBurned-down town, burned-down town [Chorus Hayley Williams]\\nMy castle's on the ground\\nAnd it's burning down\\nBridges burn, behind us\\nNow we have nothing but\\nThe ashes of our past lives\\nAnd my castle's on the ground\\nAnd it's burning down\\nBridges burn, behind us\\nNow we have nothing but\\nThe ashes of our past lives\",\n", - " 'id': 4499925},\n", - " {'name': 'Sucia (Talibán Original)',\n", - " 'artist': 'Lil Pump',\n", - " 'llama_response': \"(Verse 1)\\nI'm in the streets, ain't no one touchin' me\\nGot my money makin' money, that's just how it be\\nFlaunting my wealth, ain't no one gonna stop me\\nGot my diamonds shinin', got my whip poppin'\\n\\n(Chorus)\\nUh, I'm livin' life raw, ain't no one gonna tell me how\\nGot my own way, ain't no one gonna know\\nI'm the king of the streets, ain't no one gonna take my throne\\nI'm the one they all know, ain't no one gonna leave me alone\\n\\n(Verse 2)\\nI don't give a damn 'bout no haters, they just get ignored\\nGot my own lifestyle, ain't no one gonna explode\\nI'm livin' life to the fullest, ain't no one gonna slow me down\\nGot my own vibe, ain't no one gonna drown me out\\n\\n(Chorus)\\nUh, I'm livin' life raw, ain't no one gonna tell me how\\nGot my own way, ain't no one gonna know\\nI'm the king of the streets, ain't no one gonna take my throne\\nI'm the one they all know, ain't no one gonna leave me alone\\n\\n(Bridge)\\nPrr, I'm feelin' like a star, ain't no one gonna dim my shine\\nGot my own flow, ain't no one gonna make me decline\\nI'm on top of the world, ain't no one gonna bring me down\\nJajaja, I'm the king of the town\\n\\n(Chorus)\\nUh, I'm livin' life raw, ain't no one gonna tell me how\\nGot my own way, ain't no one gonna know\\nI'm the king of the streets, ain't no one gonna take my throne\\nI'm the one they all know, ain't no one gonna leave me alone\\n\\n(Outro)\\nSo if you see me comin', better get out the way\\n'Cause I'm the king of the streets, and I'm here to stay\\nGot my own style, ain't no one gonna take my crown\\nUh, I'm the one they all know, and I'm here to drown.\\n\",\n", - " 'lyre_response': \"[Intro]\\nLil Pump\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nOh, yeah\\nPremiere Classe\\n[Bridge]\\nYeah, lil' bitch, I'm sittin' on 40\\nCould fuck my girlfriend's sister, if I wanted to (If I wanted to)\\nDon't talk dirty to me, talk dirty to my monster (Talk dirty)\\nSwallow, whore, I don't want your condom (Prr)\\n[Chorus]\\nShe wanna go raw, that's why I fuck her so clean (Clean, why?)\\nI don't want your condom, I just wanna have fun (Have fun, have fun)\\nYeah, bitch, I'm tryna fuck, you got the D, we can have fun (Fuck, D, hey)\\nI don't want your condom, I just wanna have fun\\n[Post-Chorus]\\nBet you wanna fuck me, bet you wanna fuck me raw (Raw, bet you do, hey)\\nI'ma make you suck my dick, you know that's just how I was made (Suck, dick, hey)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby, hey)\\n[Verse]\\nAyy, lil' bitch, I walk in star class (Hey)\\nAsk me, do I look like I play games? (No way)\\nWent to McDonald's, the Arches (Hey)\\nGot me, OGs, the old heads (Ayy)\\nYeah, I got a big tool (Ooh, yeah)\\nAnd I know how to use it, school it (Yeah, yeah)\\nNigga's mad because I'm move it (Huh? Why?)\\nI got drip, can't be soaked in (No way)\\nNigga pull up in a Maxima (Hey)\\nWant to fuck my girl's sister (Huh?)\\nI don't want your condom, I just wanna have fun (Have fun, hey)\\nBet you wanna fuck me, bet you wanna fuck me raw (Raw, bet you do, hey)\\nI'ma make you suck my dick, you know that's just how I was made (Suck, dick, hey)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby, hey)\\n[Chorus]\\nShe wanna go raw, that's why I fuck her so clean (Clean, why?)\\nI don't want your condom, I just wanna have fun (Have fun, have fun)\\nYeah, bitch, I'm tryna fuck, you got the D, we can have fun (Fuck, D, hey)\\nI don't want your condom, I just wanna have fun\\n[Post-Chorus]\\nBet you wanna fuck me, bet you wanna fuck me raw (Raw, bet you do, hey)\\nI'ma make you suck my dick, you know that's just how I was made (Suck, dick, hey)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby, hey)\\n[Outro]\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby)\\nI'ma make you love me, babe, now you know that I was born to be your baby (Love me, baby)\",\n", - " 'id': 5328101},\n", - " {'name': '\\u200b\\u200bfavorite kind of high',\n", - " 'artist': 'Kelly Clarkson',\n", - " 'llama_response': \"Verse 1\\nI try to fight it, I try to resist\\nBut you're like a drug, and I'm addicted\\nThe way you make me feel, it's like a fire\\nBurning inside of me, it's a dangerous desire\\n\\nChorus\\nYou're my favorite kind of high\\nThe one that makes me feel alive\\nI'm helplessly drawn to your eyes\\nLike a moth to a flame, I can't deny\\n\\nVerse 2\\nI know I should push you away\\nBut I can't help myself, I'm drawn in every day\\nYou're the one I want, the one I need\\nThe one that makes my heart sing, it's all I need\\n\\nChorus\\nYou're my favorite kind of high\\nThe one that makes me feel alive\\nI'm helplessly drawn to your eyes\\nLike a moth to a flame, I can't deny\\n\\nBridge\\nI know I'll fall, I know I'll give in\\nBut I can't help myself, I'm already in\\nYou're the one that makes my heart race\\nThe one that makes me lose my place\\n\\nChorus\\nYou're my favorite kind of high\\nThe one that makes me feel alive\\nI'm helplessly drawn to your eyes\\nLike a moth to a flame, I can't deny\\n\\nOutro\\nYou're my favorite kind of high\\nThe one that makes me feel alive\\nI'm helplessly drawn to your eyes\\nLike a moth to a flame, I can't deny\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't need no other\\nWhen I've got you, you're all I need\\nYou're all I, I need, need\\n[Verse 1]\\nDon't try to understand it\\n'Cause I really don't think you can\\nThis is science, not love\\nThis is crazy, just let it happen\\nLet it happen\\n[Pre-Chorus]\\nAnd I feel weaker, the more I resist\\nFeel myself giving in, finally\\nFeel myself surrender\\n[Chorus]\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need\\nAnd I could try to fight it\\nBut I'd rather surrender\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need [Verse 2]\\nDon't try to understand it\\n'Cause I really don't think you can\\nThis is science, not love\\nJust let it happen\\n[Pre-Chorus]\\nAnd I feel weaker, the more I resist\\nFeel myself giving in, finally\\nFeel myself surrender\\n[Chorus]\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need\\nAnd I could try to fight it\\nBut I'd rather surrender\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need\\nAll I need, you're all I need\\nYou're all I need\\nYou're all I need\\nYou're all I need\\nYou're all I need\\n[Bridge]\\nNo other\\nWhen I've got you, you're all I need\\nYou're all I, I need, need\\nNo other\\nWhen I've got you, you're all I need\\nYou're all I, I need, need\\n[Chorus]\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need\\nAnd I could try to fight it\\nBut I'd rather surrender\\nYou're like my favorite kind of high\\nI'm like a junkie for your love\\nYou're all I need, you're all I need\",\n", - " 'id': 9017322},\n", - " {'name': 'On My Love',\n", - " 'artist': 'David Guetta',\n", - " 'llama_response': \"(Verse 1)\\nI'm falling deep into your eyes, like a shipwreck in the tide\\nI'm lost in the depths of your love, where I'll gladly reside\\nEvery moment with you is a dream, a love that's hard to define\\nBut I know in this dance, we'll find the rhythm of our hearts entwined\\n\\n(Chorus)\\nI'll stand by you, through every storm, through every wave\\nTogether we'll ride, the highs and lows, and never be afraid\\nOf the love we share, and the fire that we ignite\\nIn this dance of life, I'll be by your side, with all my might\\n\\n(Verse 2)\\nYou're the melody that fills my heart, the rhythm that sets my soul on fire\\nI'm ready to face any challenge, to keep this love on higher\\nWe'll weather every storm, and rise above the pain\\nTogether we'll dance, until our love remains\\n\\n(Chorus)\\nI'll stand by you, through every storm, through every wave\\nTogether we'll ride, the highs and lows, and never be afraid\\nOf the love we share, and the fire that we ignite\\nIn this dance of life, I'll be by your side, with all my might\\n\\n(Bridge)\\nWe'll make our own way, we'll break the mold\\nWe'll write our own story, and watch it unfold\\nWith every step we take, we'll find our way\\nTogether we'll dance, through every moment of every day\\n\\n(Chorus)\\nI'll stand by you, through every storm, through every wave\\nTogether we'll ride, the highs and lows, and never be afraid\\nOf the love we share, and the fire that we ignite\\nIn this dance of life, I'll be by your side, with all my might\\n\\n(Drop)\\nWe're in this together, we're one and the same\\nOur love is the beat, that keeps the rhythm alive\\nWe'll keep on dancing, through the good and the bad\\nIn this dance of life, we'll never be sad\\n\\n(Outro)\\nIn this dance of life, we'll find our way\\nWith every step we take, we'll find our day\\nWith every beat we make, we'll find our way\\nIn this dance of life, we'll dance forevermore.\\n\",\n", - " 'lyre_response': \"[Intro]\\nAre you willing to fight for us?\\nAre you willing to fly for us?\\nAre you willing to break for us?\\nYeah\\n[Verse 1]\\nAre you willing to lose for us?\\nAre you willing to cry for us?\\nAre you willing to lie for us?\\nYeah\\nAre you willing to die for us?\\nOh, if that's what it takes, yeah\\nAre you willing to die for us? Yeah\\n[Pre-Chorus]\\nJust don't ask me to go without a fight\\nI swear that I'll give you all I got, yeah\\n[Chorus]\\nI'm willing to fall for you\\nI'm willing to burn for you\\nI'm willing to bleed for you\\nI'm willing to die for you\\nOh, just don't ask me to say goodbye\\nI swear that I'll give you all I got\\n[Verse 2]\\nAre you willing to heal my past?\\nAre you willing to take my pain?\\nAre you willing to last?\\nYeah\\nAre you willing to bleed for us?\\nOh, if that's what it takes, yeah\\nAre you willing to bleed for us? Yeah [Pre-Chorus]\\nJust don't ask me to go without a fight\\nI swear that I'll give you all I got, yeah\\n[Chorus]\\nI'm willing to fall for you\\nI'm willing to burn for you\\nI'm willing to bleed for you\\nI'm willing to die for you\\nOh, just don't ask me to say goodbye\\nI swear that I'll give you all I got\\n[Drop]\\n[Bridge]\\nAre you willing?\\nAre you willing?\\nAre you willing?\\nAre you willing?\\n[Pre-Chorus]\\nJust don't ask me to go without a fight\\nI swear that I'll give you all I got, yeah\\n[Chorus]\\nI'm willing to fall for you\\nI'm willing to burn for you\\nI'm willing to bleed for you\\nI'm willing to die for you\\nOh, just don't ask me to say goodbye\\nI swear that I'll give you all I got\\n[Chorus]\\nI'm willing to fall for you\\nI'm willing to burn for you\\nI'm willing to bleed for you\\nI'm willing to die for you\\nOh, just don't ask me to say goodbye\\nI swear that I'll give you all I got\",\n", - " 'id': 9481808},\n", - " {'name': '7969 Santa',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI thought I had you figured out, but you keep on changing\\nLike a chameleon, always adapting, never staying the same\\nYou used to be so sweet, now you're cold and distant\\nI can't help but wonder, did I drive you insane?\\n\\nChorus\\nDisappointment, it's all I feel\\nLike you're always breaking my heart and stealing\\nMy trust, my love, my everything\\nI can't keep on living like this, it's time to move on\\n\\nVerse 2\\nYou used to be so reliable, now you're unpredictable\\nI can't keep up with your mood swings, it's like a rollercoaster\\nYou dye your hair, get new tattoos, it's like you're hiding\\nBut from what, from me? I don't know, I'm still trying\\n\\nChorus\\nDisappointment, it's all I feel\\nLike you're always breaking my heart and stealing\\nMy trust, my love, my everything\\nI can't keep on living like this, it's time to move on\\n\\nBridge\\nI catch myself thinking 'bout the good times\\nWhen life was simple, when love was on my mind\\nBut now it's all just a distant memory\\nAs I try to move on, but you're still on my mind\\n\\nChorus\\nDisappointment, it's all I feel\\nLike you're always breaking my heart and stealing\\nMy trust, my love, my everything\\nI can't keep on living like this, it's time to move on\\n\\nOutro\\nI'm tired of feeling this way, tired of being hurt\\nI need to find a way to let go, to move forward\\nBut it's hard when the person I care about\\nIs the one who's causing all this doubt.\\n\",\n", - " 'lyre_response': \"[Refrain]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\nNow she's got a new hobby\\nNew hobby, yeah, yeah, yeah\\nAnd she's putting all her time into it\\nWhat is this, 40 for her?\\nShit, I'm just kidding, that's not true\\nI'm sure she's still beauty\\nEven at 50, she's still beauty\\nI just don't want her to get suspicious\\nI'm sure she'll understand later\\n[Verse 1]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\nShe used to be so down to earth\\nDown to earth, yeah, yeah\\nAnd now she's out of this world\\nOr at least that's what it feels like, yeah\\nShe used to be so full of life\\nFull of life, yeah, yeah\\nAnd now she's full of shit\\nTalkin' 'bout she's 50 but she doesn't act like it\\n[Refrain]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\nNow she's got a new hobby\\nNew hobby, yeah, yeah, yeah\\nAnd she's putting all her time into it\\nWhat is this, 40 for her?\\nShit, I'm just kidding, that's not true\\nI'm sure she's still beauty\\nEven at 50, she's still beauty\\nI just don't want her to get suspicious\\nI'm sure she'll understand later\\n[Verse 2]\\nI used to be so in love with her\\nIn love, yeah, yeah\\nBut that was before she, before she changed\\nUsed to be so proud of her\\nProud, yeah, yeah\\nAnd now I'm just ashamed of her\\nNever used to leave her\\nUsed to be so down to ride with her\\nNow I'm just too tired to stay with her\\n[Refrain]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\nNow she's got a new hobby\\nNew hobby, yeah, yeah, yeah\\nAnd she's putting all her time into it\\nWhat is this, 40 for her?\\nShit, I'm just kidding, that's not true\\nI'm sure she's still beauty\\nEven at 50, she's still beauty\\nI just don't want her to get suspicious\\nI'm sure she'll understand later [Bridge]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\n[Refrain]\\nShe used to be so mad at me\\nUsed to be so mad, yeah, yeah\\nAnd now she's mad at me\\nBut that's not the only thing that's different\\nNow she's got a new hobby\\nNew hobby, yeah, yeah, yeah\\nAnd she's putting all her time into it\\nWhat is this, 40 for her?\\nShit, I'm just kidding, that's not true\\nI'm sure she's still beauty\\nEven at 50, she's still beauty\\nI just don't want her to get suspicious\\nI'm sure she'll understand later\",\n", - " 'id': 9592360},\n", - " {'name': 'How Does It Feel',\n", - " 'artist': 'Chris Brown',\n", - " 'llama_response': \"(Verse 1 - Male Perspective)\\nI thought I found my forever in your eyes\\nGave you my heart, my soul, my everything inside\\nBut now I'm left wondering why I gave so much\\nCause you don't see the value of the love that I've been clutching\\n\\nYou take, take, take, but never give back\\nI'm giving more, but you're not even on the attack\\nI thought you loved me, but now I'm in disbelief\\nCause the more I give, the less you seem to receive\\n\\n(Chorus)\\nI'm giving more than you, but it's not enough\\nI'm trying to hold on, but you're pushing me away\\nI thought love was supposed to be a two-way street\\nBut now I'm left with nothing but tears to appease\\n\\n(Verse 2 - Female Perspective)\\nI never meant to hurt you, I never meant to play\\nBut sometimes love just doesn't work out the way\\nI gave you my heart, but you tore it apart\\nNow I'm left with a broken heart, and a love that's torn apart\\n\\nI tried to give you everything, but you didn't see\\nThe love that I had for you, the love that I needed\\nBut now I'm walking away, cause I can't stay\\nCause the more I gave, the more you took away\\n\\n(Chorus)\\nI'm giving more than you, but it's not enough\\nI'm trying to hold on, but you're pushing me away\\nI thought love was supposed to be a two-way street\\nBut now I'm left with nothing but tears to appease\\n\\n(Bridge)\\nI wish I could turn back time, and make you see\\nThe love that I had for you, the love that was meant to be\\nBut now it's too late, cause you've gone away\\nAnd all I'm left with is this emptiness, this emptiness that won't go away\\n\\n(Chorus)\\nI'm giving more than you, but it's not enough\\nI'm trying to hold on, but you're pushing me away\\nI thought love was supposed to be a two-way street\\nBut now I'm left with nothing but tears to appease\\n\\n(Outro)\\nNow I'm left with just a memory\\nOf the love that we had, and the love that could have been\\nBut now it's gone, and I'm moving on\\nCause the more I gave, the more I realized, it was never meant to be.\\n\",\n", - " 'lyre_response': \"[Intro Chris Brown, \\nJordin Sparks\\n, \\nBoth]\\nLost, lost, yeah\\nAnd I just can't believe\\nThat you're not here by my side\\nLost, lost, yeah\\nAnd I can't help but wonder\\nWhy you did the things you did\\nIt still makes me mad Oh, yeah\\nLost, lost, yeah\\nAnd I can't help but wonder\\nWhy you did the things you did Why?\\nIt still makes me sad, yeah Yeah\\n[Verse 1 Jordin Sparks, \\nChris Brown]\\nMaybe I'm just too open, maybe I'm just too honest\\nYou get a glimpse of me and then you're done, oh\\nYou can't have everything, you can't have me\\nYou can't have my heart, you can't have my love\\nI gave it all to you, don't understand\\nHow could you let me down, down?\\n[Pre-Chorus Jordin Sparks]\\nI tried to see things from your point of view\\nAnd in my heart, I believed in you\\nBut things just aren't the same\\nIt's like you're a different person now\\n[Chorus Both, \\nChris Brown]\\nYou tell me that you love me, but you don't\\nYou say that you could never let me down Oh, down\\nBut you're the one who broke my heart Yeah\\nAnd now I'm left to pick up the pieces Yeah\\nYou tell me that you love me, but you don't Oh, yeah\\nYou say that you could never let me down\\nBut you're the one who broke my heart Broke my heart\\nAnd now I'm left to pick up the pieces\\n[Verse 2 Chris Brown, \\nJordin Sparks]\\nI know that you're somewhere new, with someone new\\nLiving the life we used to do, down to the T\\nI know that you're happy and that's what hurts most\\nTo know that you're lovin' someone else and not me, yeah\\nI tried to forget you, move on with my life\\nBut you're the only one I ever really gave my heart to Oh, yeah\\nGave my heart to Oh, yeah\\nAnd now you're gone, and I'm left to wonder why Why?\\n[Pre-Chorus Jordin Sparks, \\nJordin Sparks & Chris Brown]\\nI tried to see things from your point of view\\nAnd in my heart, I believed in you\\nBut things just aren't the same\\nIt's like you're a different person now\\nYou tell me that you love me, but you don't You don't\\nYou say that you could never let me down\\nBut you're the one who broke my heart You broke my heart\\nAnd now I'm left to pick up the pieces\\n[Chorus Both, \\nChris Brown\\n, \\nJordin Sparks]\\nYou tell me that you love me, but you don't\\nYou say that you could never let me down\\nBut you're the one who broke my heart Down\\nAnd now I'm left to pick up the pieces\\nYou tell me that you love me, but you don't Oh, yeah\\nYou say that you could never let me down\\nBut you're the one who broke my heart Broke my heart\\nAnd now I'm left to pick up the pieces\\n[Bridge Jordin Sparks, \\nChris Brown]\\nI tried to see things from your point of view\\nBut in my heart, I can't fool\\nYou're not coming back, no matter what I do\\nNot coming back\\nNow I know that I'll be okay (I'll be okay)\\nThough you were the one that I loved the most\\nI'll be alright, I'll be alright\\n(I'll be alright, I'll be alright)\\n[Chorus Both, \\nJordin Sparks\\n, \\nChris Brown]\\nYou tell me that you love me, but you don't You don't love me\\nYou say that you could never let me down\\nBut you're the one who broke my heart Down\\nAnd now I'm left to pick up the pieces\\nYou tell me that you love me, but you don't Oh, yeah\\nYou say that you could never let me down\\nBut you're the one who broke my heart Broke my heart\\nAnd now I'm left to pick up the pieces I'm left to pick up the pieces\",\n", - " 'id': 8827240},\n", - " {'name': 'A Cup of Coffee',\n", - " 'artist': 'Katy Perry',\n", - " 'llama_response': \"Verse 1\\nI wake up every morning, drowning in my tears\\nMemories of you still lingering, like a haunting refrain\\nI try to shake it off, but it's hard to let go\\nOf the love that we had, and the pain that it shows\\n\\nChorus\\nI drink my coffee, black as my heart\\nTrying to escape the hurt, but it never leaves my start\\nI'm searching for a high, to take me away\\nFrom the pain of losing you, and the memories that stay\\n\\nVerse 2\\nI thought we had it all, love that would last\\nBut now I'm left with nothing, but the past\\nI thought we'd grow old, together in love\\nBut now I'm alone, and the pain it comes from above\\n\\nChorus\\nI drink my coffee, black as my heart\\nTrying to escape the hurt, but it never leaves my start\\nI'm searching for a high, to take me away\\nFrom the pain of losing you, and the memories that stay\\n\\nBridge\\nI know I should move on, but I can't let go\\nThe memories of you, they still make my heart glow\\nI know I should be strong, but I'm still holding on\\nTo the love that we had, and the love that's gone\\n\\nChorus\\nI drink my coffee, black as my heart\\nTrying to escape the hurt, but it never leaves my start\\nI'm searching for a high, to take me away\\nFrom the pain of losing you, and the memories that stay\\n\\nInstrumental Break\\n(Electric guitar solo, building in intensity)\\n\\nChorus\\nI drink my coffee, black as my heart\\nTrying to escape the hurt, but it never leaves my start\\nI'm searching for a high, to take me away\\nFrom the pain of losing you, and the memories that stay\\n\\nOutro\\nI'll always remember you, and the love we had\\nBut I know I must keep moving, and let go of the past\\nI'll drink my coffee, and try to face the day\\nWith the hope of healing, and a brighter way.\\n\",\n", - " 'lyre_response': '[Intro]\\nCoffee\\nYou likes his coffee\\nI likes my coffee\\nWe likes our coffee\\nCoffee\\n[Verse 1]\\nOnce upon a time, we were ridin\\'\\nOn a rollercoaster of love\\nNow we\\'re crazier than the passengers\\nTryna jump out of the moving car\\nWaving to the people on the ground\\nLike our future was in their hands\\nWell, the future\\'s in your hands\\n[Pre-Chorus]\\nYou hold my future in your hands\\nIf you let me go, I\\'ll be just fine\\nI\\'ll drift away, I\\'ll slip away\\nBut if you stay, I\\'ll overdose\\nOn the memories of you\\n[Chorus]\\nI think I\\'ll drink my coffee\\nBlack, just like my heart\\nI think I\\'ll drink my coffee\\n\\'Til I have an overdose\\nOn the memories of you [Verse 2]\\nI don\\'t wanna waste a single moment\\nIn case the outcome is \"no\"\\nSo I\\'ll get angry before you even\\nSay the words, \"You\\'re too close\"\\n\"I can\\'t do this,\" I\\'ll say \\'em first\\nI don\\'t wanna waste a single moment\\nIn case the outcome is \"no\" [Pre-Chorus]\\nYou hold my future in your hands\\nIf you let me go, I\\'ll be just fine\\nI\\'ll drift away, I\\'ll slip away\\nBut if you stay, I\\'ll overdose\\nOn the memories of you\\n[Chorus]\\nI think I\\'ll drink my coffee\\nBlack, just like my heart\\nI think I\\'ll drink my coffee\\n\\'Til I have an overdose\\nOn the memories of you\\n[Instrumental Break]\\n[Bridge]\\nWanna drink my coffee\\n\\'Til I have an overdose\\nOn the memories of you\\nYeah, I\\'ll drink my coffee\\nBlack, just like my heart\\nI think I\\'ll drink my coffee\\n\\'Til I have an overdose\\nOn the memories of you [Chorus]\\nI think I\\'ll drink my coffee\\nBlack, just like my heart\\nI think I\\'ll drink my coffee\\n\\'Til I have an overdose\\nOn the memories of you\\n[Outro]\\nOverdose\\nOn the memories of you',\n", - " 'id': 195965},\n", - " {'name': 'Why Don’t You Love Me',\n", - " 'artist': 'Dua Lipa',\n", - " 'llama_response': \"Verse 1\\nI see the way you look at me, but do you really see?\\nThe tears I cry myself to sleep, the scars that I can't conceal\\nYou say you love me, but is it true?\\nOr is it just a lie, a game we're both playing, baby?\\n\\n(Physical movement Hands on hips, head thrown back, a mix of confidence and vulnerability)\\n\\nChorus\\nWhy don't you love me?\\nWhy don't you love me?\\nI give and give and give, but it's never enough\\nWhy don't you love me?\\n\\nVerse 2\\nI try to keep my cool, but the pain's too much to bear\\nYou say you're there for me, but you're always elsewhere\\nI'm losing faith in you, in us, in everything\\nWhy don't you love me?\\n\\n(Physical movement Arms crossed, eyes downcast, a sense of resignation)\\n\\nChorus\\nWhy don't you love me?\\nWhy don't you love me?\\nI give and give and give, but it's never enough\\nWhy don't you love me?\\n\\nBridge\\nI thought we had a bond that would last\\nBut now I'm left to pick up the pieces of my broken past\\nI deserve better, I deserve more\\nWhy don't you love me?\\n\\n(Physical movement Hands on heart, a mix of sadness and determination)\\n\\nChorus\\nWhy don't you love me?\\nWhy don't you love me?\\nI give and give and give, but it's never enough\\nWhy don't you love me?\\n\\nOutro\\nI'll rise above this, I'll shine so bright\\nI won't let you bring me down, I won't let you take my light\\nI deserve love, I deserve care\\nWhy don't you love me?\\n\\n(Physical movement Arms open wide, a sense of empowerment and self-love)\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\n[Verse 1]\\nWalk all over me, I'm wide open (Wide open)\\nDon't think I won't ever tell, I'm just watching (I'm just watching)\\nYou must think I'm stupid, you're so damn clever (So damn clever)\\nI should never question, I'm just a fool (Just a fool)\\n[Pre-Chorus]\\nLittle drops of poison, you're making me sick\\nI can't work out what you want, one minute you're in\\nBut one thing I know for sure\\nI know that I can't trust you, but I'm still hanging on\\n[Chorus]\\nWhy don't you love me?\\nWhy do you do me this way?\\nWhy don't you love me?\\nWhy do you break me down\\nAnd build me up?\\nWhy don't you love me?\\nWhy do you make me question myself so much?\\nWhy don't you love me? [Verse 2]\\nGo to war with me, I'll stand by your side (I'll stand by your side)\\nTell me you need me, say you can't live without me (You can't live without me)\\nYou must think I'm irreplaceable, you're so damn right (So damn right)\\nI'm the only thing holding you, keeping you alive [Pre-Chorus]\\nLittle drops of poison, you're making me sick\\nI can't work out what you want, one minute you're in\\nBut one thing I know for sure\\nI know that I can't trust you, but I'm still hanging on\\n[Chorus]\\nWhy don't you love me?\\nWhy do you do me this way?\\nWhy don't you love me?\\nWhy do you break me down\\nAnd build me up?\\nWhy don't you love me?\\nWhy do you make me question myself so much?\\nWhy don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\nWhy don't you love me?\\nWhy do you do me this way?\\nWhy don't you love me?\\nWhy do you break me down\\nAnd build me up?\\nWhy don't you love me?\\nWhy do you make me question myself so much?\\nWhy don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\n[Refrain]\\nWhy do you love me so little?\\nYou loved me so badly\\nWhy do you love me at all?\\nIf you don't love me, why do you hurt me so much?\\n[Chorus]\\nWhy don't you love me?\\nWhy do you do me this way?\\nWhy don't you love me?\\nWhy do you break me down\\nAnd build me up?\\nWhy don't you love me?\\nWhy do you make me question myself so much?\\nWhy don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\\nDon't you, don't you\\nDon't you, don't you\\nDon't you, don't you love me?\",\n", - " 'id': 6217414},\n", - " {'name': 'Yves Slatt Laurent',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI was running through the 6 with my woes,\\nTryna find some peace, but they still know my flow.\\nMet up with a dude from the past, he claimed to be familiar,\\nBut I ain't never seen him, he must've got lost in the shuffle.\\n\\nChorus\\nI'm living life like a boss, got my own lane,\\nBut when I see you, it's like a ghost from my past,\\nYou claim to know me, but I don't know you at all,\\nWe used to be friends, but now you're just a stranger in the hall.\\n\\nVerse 2\\nI'm sipping on a drink, feeling like a king,\\nGot my eyes on the prize, and my crown on my head.\\nMade it out the hood, made it to the top,\\nBut when I see you, I'm hit with a wave of nostalgia.\\n\\nChorus\\nI'm living life like a boss, got my own lane,\\nBut when I see you, it's like a ghost from my past,\\nYou claim to know me, but I don't know you at all,\\nWe used to be friends, but now you're just a stranger in the hall.\\n\\nVerse 3\\nI got my own crew, my own brand, my own flow,\\nI don't need no one else, I'm living life on my own.\\nI see you trying to keep up, but you're falling behind,\\nI'm on the top of the world, and you're just a distant memory in my mind.\\n\\nChorus\\nI'm living life like a boss, got my own lane,\\nBut when I see you, it's like a ghost from my past,\\nYou claim to know me, but I don't know you at all,\\nWe used to be friends, but now you're just a stranger in the hall.\\n\\nBridge\\nI'm not the same person I used to be,\\nGrowth and success, that's just part of the spree.\\nI've got my own identity, my own voice, my own style,\\nI don't need no one else to make me feel alive.\\n\\nChorus\\nI'm living life like a boss, got my own lane,\\nBut when I see you, it's like a ghost from my past,\\nYou claim to know me, but I don't know you at all,\\nWe used to be friends, but now you're just a stranger in the hall.\\n\\nOutro\\nI'm moving on up, I'm moving on out,\\nI don't need no one else, I'm living life without a doubt.\\nI'm the king of my own world, I'm on top of the game,\\nAnd when I see you, it's just a distant memory, a name.\\n\",\n", - " 'lyre_response': '[Intro]\\nYeah, Ren, M.O.F, and the boy J.R.\\nAnd a special guest appearance by Farrakhan\\n[Verse 1]\\nHe said, \"I heard you went pretty far\\nSince we last saw each other, man, you are a star\"\\nI said, \"It\\'s only because they know our history\\nThe D would be nothing without you and me\"\\nHe looked at me, he smiled, he said, \"You\\'re welcome here\\nHometown hero, you always made time for the streets\"\\nI didn\\'t say nothing, he looked at me for a reason\\nMaybe it was pride or maybe it was fear\\nThat if I said something, it would come to be known\\nThat I wasn\\'t the same kid he once called friend\\nSo he touched my face, it was a moment so cold\\nI could tell he wasn\\'t there anymore\\nI said, \"I know you got somewhere to be, this what you wanted, right?\\nJust touched base, reconnecting, you understand the vibe\"\\nHe said, \"Yeah, this is where I was supposed to be\\nAt 1030, I was supposed to be here\\nAnd look like I never left, look like nothing changed\\nLook like I\\'m still your friend, look like I\\'m still your lil\\' homie\\nBut when I showed up, it turned out that you wasn\\'t here alone\\nYour girl was with you and she was fine as hell\\nI could tell she was out of your league, you understand what I mean\\nI said, \"Sorry, I don\\'t get involved, that\\'s my business and my peace\\nAnd she\\'s not here with me, she\\'s with you, homie, that\\'s so messed up\"\\nAnd with that, I turned to leave, he grabbed my arm\\nHe said, \"Wait, don\\'t go, I didn\\'t say thank you for the chain\\nAnd the winters and the summers that you shared with me\\nThat\\'s a debt that could never be repaid, you understand me\"\\nAnd I said, \"I\\'ll always be there for you, 416-441-0706\\nThat\\'s my number and it\\'s unavailable, that\\'s my only number\\nThat\\'s so you never call that you can\\'t hang on\\nOr you don\\'t show up when you\\'re supposed to\\nAnd besides, what are the chances that someone would call that\\nKnowing I\\'m always on the road and never there to answer?\"',\n", - " 'id': 9496510},\n", - " {'name': 'Sauce (Version 2)',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm sippin' on a drank, got my sauce on fly\\nGot my designer tags, got my haters sayin' bye\\nGot a watch that cost a mill', got my braggadocio on\\nGot my swag game on point, ain't no one touchin' my throne\\n\\nI'm rollin' in my whip, got my jewels on display\\nGot my high-end cars, ain't no one touchin' my pay\\nGot my own style, ain't no one copyn' my flow\\nGot my swag on point, ain't no one knowin' how to go\\n\\n(Chorus)\\nSauce, sauce, got my sauce on fly\\nGot my swag on point, ain't no one touchin' my high\\nSauce, sauce, got my swag on point\\nGot my confidence on point, ain't no one stoppin' my mount\\n\\n(Verse 2)\\nI'm the king of the game, ain't no one touchin' my throne\\nGot my wealth on display, got my haters alone\\nGot my designer clothes, got my jewels on my neck\\nGot my swag on point, ain't no one checkin' my deck\\n\\nI'm drippin' in my sauce, got my braggadocio on\\nGot my high-end cars, ain't no one touchin' my zone\\nGot my own style, ain't no one copyn' my flow\\nGot my swag on point, ain't no one knowin' how to go\\n\\n(Chorus)\\nSauce, sauce, got my sauce on fly\\nGot my swag on point, ain't no one touchin' my high\\nSauce, sauce, got my swag on point\\nGot my confidence on point, ain't no one stoppin' my mount\\n\\n(Bridge)\\nI don't got time for haters, they just a distraction\\nGot my own lane, ain't no one gonna stop my progression\\nI'm on the top of the game, ain't no one touchin' my throne\\nGot my swag on point, ain't no one gonna take my zone\\n\\n(Verse 3)\\nI'm the king of the trap, ain't no one touchin' my crown\\nGot my wealth on display, got my haters bowin' down\\nGot my designer clothes, got my jewels on my neck\\nGot my swag on point, ain't no one checkin' my deck\\n\\nI'm drippin' in my sauce, got my braggadocio on\\nGot my high-end cars, ain't no one touchin' my zone\\nGot my own style, ain't no one copyn' my flow\\nGot my swag on point, ain't no one knowin' how to go\\n\\n(Chorus)\\nSauce, sauce, got my sauce on fly\\nGot my swag on point, ain't no one touchin' my high\\nSauce, sauce, got my swag on point\\nGot my confidence on point, ain't no one stoppin' my mount\\n\\n(Outro)\\nSo if you hatin', just keep on hatin'\\nI'm on the top, ain't no one touchin' my position\\nGot my swag on point, ain't no one stoppin' my flow\",\n", - " 'lyre_response': \"[Intro]\\nWoah, lil' bitch, I got sauce, ayy\\nPhantom when I roll up, ayy\\nGot some racks, ayy\\n[Chorus Lil Uzi Vert & \\nSyd]\\nI got sauce, yeah Woah, lil' bitch, I got sauce, ayy\\nGot my Phantom like a mall cop Ayy\\nWalk around like nothing at all Ayy\\nNo, I'm not gon' give you my heart Ooh, ayy\\n'Cause I'm a lil' bitch with a lot of flaws Ooh, ayy-ayy-ayy\\nIn my past, that's what happened with them Ooh, ayy\\nYeah, let me break it down for you Ooh, ayy-ayy-ayy\\nYou know I got sauce\\n Ayy\\nI got sauce, bitch Ayy\\n[Verse 1 Lil Uzi Vert]\\nWoah, lil' bitch, I got sauce, ayy\\nGot a garage full of dirty, dirty laundry (Dirty laundry, oh)\\nWanna ball, got that swamp stuff, like the muck (Like the muck, oh)\\nPull up on your bitch, I'm that mug shot, boy (Mug shot, boy)\\nGot a curvy, got that swerve, it's like the first (It's like the first, oh, woah)\\nGot an opp that's sweeter than your first (Your first, oh, woah)\\nWalk around with a smile, don't be a dour (Don't be a dour, oh)\\nWanna ball, I got that swagger, like the bag (Like the bag, oh)\\nIn the build, with the shit that'll have them talkin' (Like the bag, oh)\\nWoah, I got sauce (Ayy), lil' bitch (Ayy)\\nI got sauce, slatt\\n (Woah)\\nWoah, lil' bitch, I got sauce, ayy\\nGot a bag full of green, like the avocado (Like the avocado, oh)\\nMotorcycle like the Honda VF700 (Like the VF700, oh)\\nPull up on your bitch, I'm that thunderstorm, boy (I'm that thunderstorm, boy)\\nGot a curvy, got that swerve, it's like the first (It's like the first, oh, woah)\\nGot an opp that's sweeter than your first (Your first, oh, woah)\\nWalk around with a smile, don't be a dour (Don't be a dour, oh)\\nWanna ball, I got that swagger, like the bag (Like the bag, oh)\\nIn the build, with the shit that'll have them talkin' (Like the bag, oh)\\nWoah, I got sauce (Ayy), lil' bitch (Ayy)\\nI got sauce, slatt\\n (Woah)\\nI got sauce, bitch (Woah, lil' bitch, I got sauce, ayy)\\nGot my Phantom like a mall cop (Walk around like nothing at all, ayy)\\nWalk around like nothing at all (Ayy)\\nNo, I'm not gon' give you my heart (Cause I'm a lil' bitch with a lot of flaws, ooh, ayy-ayy-ayy)\\n'Cause I'm a lil' bitch with a lot of flaws (Ooh, ayy-ayy-ayy)\\nIn my past, that's what happened with them (Ooh, ayy)\\nYeah, let me break it down for you (Ooh, ayy-ayy-ayy)\\nYou know I got sauce\\n (Ayy)\\nI got sauce, bitch (Ayy)\\nI got sauce (Ayy)\\n, slatt\\nI got sauce, bitch (Woah, lil' bitch, I got sauce, ayy)\\nI got sauce, bitch (Ayy)\\n[Chorus Lil Uzi Vert & \\nSyd]\\nI got sauce, yeah Woah, lil' bitch, I got sauce, ayy\\nGot my Phantom like a mall cop Ayy\\nWalk around like nothing at all Ayy\\nNo, I'm not gon' give you my heart Ooh, ayy\\n'Cause I'm a lil' bitch with a lot of flaws Ooh, ayy-ayy-ayy\\nIn my past, that's what happened with them Ooh, ayy\\nYeah, let me break it down for you Ooh, ayy-ayy-ayy\\nYou know I got sauce\\n Ayy\\nI got sauce, bitch Ayy\\n[Verse 2 Syd]\\nI got sauce, yeah\\nWalk around like nothing at all, ayy\\nNo, I'm not gon' give you my heart, ayy\\n'Cause I'm a lil' bitch with a lot of flaws, ooh, ayy-ayy-ayy\\nIn my past, that's what happened with them, ooh, ayy\\nYeah, let me break it down for you, ooh, ayy-ayy-ayy\\nYou know I got sauce, ayy\\nI got sauce, bitch, ayy\\n[Outro]\\nWoah, lil' bitch, I got sauce, ayy\\nAyy, Phantom when I roll up, ayy\\nGot some racks, ayy\\nOoh, ayy-ayy-ayy\\nIn my past, that's what happened with them, ooh, ayy\\nYeah, let me break it down for you, ooh, ayy-ayy-ayy\\nYou know I got sauce, ayy\\nI got sauce, bitch\",\n", - " 'id': 6368552},\n", - " {'name': 'I’m Not Here To Make Friends',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI've been searching for a connection, something real\\nNot just a friend, but a lover, someone to reveal\\nMy true self, my deepest desires, my every need\\nSomeone who will see me, and make me feel free\\n\\nChorus\\nI want a love that's genuine, a bond that's strong and true\\nNot just a casual friendship, but something that's meant to be\\nI'm tired of the superficial, the shallow and the fake\\nI want a love that will stay, and never break\\n\\nVerse 2\\nI've been hurt before, I've been left in the dark\\nBut I won't let my past define my heart\\nI'm ready for a love that's gonna heal me, set me free\\nA love that will make me feel like I'm meant to be\\n\\nChorus\\nI want a love that's genuine, a bond that's strong and true\\nNot just a casual friendship, but something that's meant to be\\nI'm tired of the superficial, the shallow and the fake\\nI want a love that will stay, and never break\\n\\nBridge\\nI know I'm worthy, I know I deserve\\nA love that will make me feel alive, and never deprive\\nOf the connection, the intimacy, the fire that burns\\nI want a love that will leave me feeling like I'm number one\\n\\nChorus\\nI want a love that's genuine, a bond that's strong and true\\nNot just a casual friendship, but something that's meant to be\\nI'm tired of the superficial, the shallow and the fake\\nI want a love that will stay, and never break\\n\\nPost-Chorus\\nI want a love that will stay, stay with me all night\\nA love that will never leave, never say goodbye\\nI want a love that will stay, and make everything right\\nI want a love that will stay, and shine so bright\\n\\nOutro\\nI want a love that will stay, and never fade\\nA love that will make me feel alive, and never be afraid\\nOf being myself, of being true\\nI want a love that will stay, and always be new.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOh, woah\\nOh, oh, woah\\n[Verse 1]\\nI've been looking for a lover, not just friends\\nI don't wanna hang around if there's no end\\nTo be honest, I'm a bit tired of all these casual\\nLove, love, love, love, love, love, lovers\\n[Pre-Chorus]\\nI'm waiting for a face like you, like you\\nBaby, so baby, come be my\\nI'm waiting for a face like you, like you\\nBaby, so baby, come be my\\n(Be my)\\n[Chorus]\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\n[Verse 2]\\nI've been looking for a lover, not just friends\\nDon't wanna hang around if there's no end\\nTo be honest, I'm a bit tired of all these casual\\nLove, love, love, love, love, love, lovers\\n[Pre-Chorus]\\nI'm waiting for a face like you, like you\\nBaby, so baby, come be my\\nI'm waiting for a face like you, like you\\nBaby, so baby, come be my\\n(Be my)\\n[Chorus]\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my\\n[Post-Chorus]\\nSo just be my\\nSo just be my\\nSo just be my\\nSo just be my\\n[Bridge]\\nI'm not ashamed of my desire\\nI wanna be consumed by your fire\\nI'm not ashamed of my tears\\nI'll cry until you're here\\n[Chorus]\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my\\n[Outro]\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my, be my\\nBe my, be my, be my\",\n", - " 'id': 8490754},\n", - " {'name': 'Snow On The Beach (feat. More Lana Del Rey)',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI never thought I'd find myself at the edge of the sea\\nWith a heart that's been shattered, and a soul that's free\\nBut then you came along, like a ghost in the night\\nAnd swept me off my feet, with a love so bright\\n\\nChorus\\nOh, the irony of love, like snow at the beach\\nAn unlikely romance, that's hard to reach\\nBut I can't help but feel, like a dream in the night\\nWith you by my side, everything's alright\\n\\nVerse 2\\nWe dance beneath the stars, with the moon as our guide\\nOur love shining bright, like a fire in the tide\\nWe chase the shadows away, with a love that's so true\\nAnd in this moment, I know, I'll always see you\\n\\nChorus\\nOh, the irony of love, like snow at the beach\\nAn unlikely romance, that's hard to reach\\nBut I can't help but feel, like a dream in the night\\nWith you by my side, everything's alright\\n\\nBridge\\nWe're like two ships, adrift in a sea of time\\nOur love the only anchor, that keeps us aligned\\nAnd though the waves may rage, and the winds may blow\\nOur love will keep us safe, like a shelter in the snow\\n\\nChorus\\nOh, the irony of love, like snow at the beach\\nAn unlikely romance, that's hard to reach\\nBut I can't help but feel, like a dream in the night\\nWith you by my side, everything's alright\\n\\nOutro\\nSo let's hold on to love, like a fragile thing\\nAnd cherish every moment, before the morning brings\\nThe light of day, and the end of this dream\\nBut for now, I'm yours, and you're mine, and that's all that matters, it seems.\\n\",\n", - " 'lyre_response': '[Intro Taylor Swift]\\nThere was snow at the beach\\nAnd you were my perfect gift\\nThe kind you give at Christmas\\nTime you never get back\\n[Verse 1 Taylor Swift]\\nYou said, \"Let\\'s get out of this town\\nDrive out of the city, away from the crowds\"\\nSo we headed out to the coastal road\\nAnd I picked the short way, not the long way\\n\\'Cause I never saw this coming\\nNever saw you were the type\\nTo be falling for me, yeah\\n[Pre-Chorus Lana Del Rey]\\nIf it was a movie, I would laugh\\nAt the absurdity of it all\\nBut this is real life, so I guess\\nI have to keep you\\n[Chorus Lana Del Rey & \\nTaylor Swift]\\nAnd you\\'ll be my prince\\nAnd I\\'ll be your princess\\nAnd you\\'ll take me away\\nTo a place where the air is pure\\nAnd we can run by the sea\\nAnd you\\'ll be my prince\\nAnd I\\'ll be your princess\\nAnd you\\'ll take me away\\nTo a place where the air is pure\\nAnd we can run by the sea\\n[Verse 2 Lana Del Rey]\\nI was walking in the park in the dark\\nWith you holding my hand, it\\'s a start\\nAnd in your arms is where I belong\\nSo I\\'ll shade my eyes and look at the stars\\nAnd think that this is all so sudden\\nAnd maybe it\\'s crazy, what we\\'re doing\\nBut you make me feel like I\\'m dreaming [Pre-Chorus Lana Del Rey]\\nSo I\\'ll take you to the beach in the snow\\nAnd we\\'ll hold each other \\'til we\\'re glowing\\nAnd you\\'ll be my prince\\nAnd I\\'ll be your princess\\nAnd we\\'ll live in a world that isn\\'t broken\\n[Chorus Lana Del Rey & \\nTaylor Swift]\\nAnd you\\'ll be my prince\\nAnd I\\'ll be your princess\\nAnd you\\'ll take me away\\nTo a place where the air is pure\\nAnd we can run by the sea\\nAnd you\\'ll be my prince\\nAnd I\\'ll be your princess\\nAnd you\\'ll take me away\\nTo a place where the air is pure\\nAnd we can run by the sea\\n[Outro Lana Del Rey & \\nTaylor Swift]\\nI was walking in the park in the dark\\nWith you holding my hand, it\\'s a start\\nAnd in your arms is where I belong\\nSo I\\'ll shade my eyes and look at the stars\\nAnd think that this is all so sudden\\nAnd maybe it\\'s crazy, what we\\'re doing\\nBut you make me feel like I\\'m dreaming',\n", - " 'id': 9157481},\n", - " {'name': 'All Alone',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm sippin' on a drank, got my wrists on a grind\\nGot my pockets full of stacks, ain't no time to unwind\\nI'm livin' my best life, ain't no time to chill\\nGot my eyes on the prize, and my game is on thrill\\n\\n(Chorus)\\nI'm Uzi Vert, I'm on top of the world\\nGot my cake, got my pie, got my girl\\nI'm livin' like a star, ain't no time to unfurl\\nI'm the king of the game, ain't no time to be a fool\\n\\n(Verse 2)\\nI got a Benz, it's black and it's sleek\\nGot a bad bitch, she's lookin' like a dream\\nI'm ridin' through the city, got my music on repeat\\nGot my Glock by my side, ain't no time to decease\\n\\n(Chorus)\\nI'm Uzi Vert, I'm on top of the world\\nGot my cake, got my pie, got my girl\\nI'm livin' like a star, ain't no time to unfurl\\nI'm the king of the game, ain't no time to be a fool\\n\\n(Verse 3)\\nI got a mansion, it's big and it's grand\\nGot a private jet, it's flyin' through the land\\nI'm travelin' through the world, got my squad by my side\\nGot my champagne on ice, ain't no time to hide\\n\\n(Chorus)\\nI'm Uzi Vert, I'm on top of the world\\nGot my cake, got my pie, got my girl\\nI'm livin' like a star, ain't no time to unfurl\\nI'm the king of the game, ain't no time to be a fool\\n\\n(Bridge)\\nI'm the king of the game, ain't no time to lose\\nGot my money on my mind, ain't no time to choose\\nI'm livin' like a boss, ain't no time to cruise\\nI'm the one and only, ain't no time to abuse\\n\\n(Chorus)\\nI'm Uzi Vert, I'm on top of the world\\nGot my cake, got my pie, got my girl\\nI'm livin' like a star, ain't no time to unfurl\\nI'm the king of the game, ain't no time to be a fool\\n\\n(Outro)\\nI'm Uzi Vert, I'm on top of the game\\nGot my money on my mind, ain't no time to proclaim\\nI'm livin' like a star, ain't no time to tame\\nI'm the king of the game, ain't no time to reclaim.\\n\",\n", - " 'lyre_response': \"[Intro]\\nWoah, Cash Only\\nYou know, I only use cash now, ayy\\nAnd I only roll with bosses now, ayy\\nYeah, my bitch is a boss, she ain't no basic bitch, ayy She's a boss\\nI can tell her ass is a go getter, ayy She's a boss\\nI swear to God, my life is a movie, ayy\\nI just go gassed up, I got gas for days, ayy\\nI can see her in the rough, she still look like diamonds, ayy You're a boss\\nWoah, she's a ten, I only fuck with nines, ayy You're a boss\\nWoah, I said she's a ten, I only fuck with nines, ayy\\n[Chorus]\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours Cash Only\\n[Verse 1]\\nI just made a million dollars, ayy You're a boss\\nCounting them bands on me, ayy You're a boss\\nCounting them bands on me, ayy You're a boss\\nAll these niggas hatin' on me, ayy You're a boss\\nRollin' up the cheese, ayy You're a boss\\nRollin' up the cheese, ayy You're a boss\\nI fuck that bitch, now she a ho, ayy You're a boss\\nI fuck that bitch, now she a ho, ayy You're a boss\\nI fuck that bitch, now she a ho, ayy You're a boss\\nI fuck that bitch, now she a ho, ayy You're a boss\\n[Chorus]\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours Cash Only\\n[Verse 2]\\nI'm tryna fuck a bitch from head to toe\\nGive that lil' pussy, that lil' dick, a home, yeah\\nI just spent fourteen hundred at the mall, yeah\\nYou know, I only use cash now, ayy\\nAnd I only roll with bosses now, ayy\\nYeah, my bitch is a boss, she ain't no basic bitch, ayy She's a boss\\nI can tell her ass is a go getter, ayy She's a boss\\nI swear to God, my life is a movie, ayy\\nI just go gassed up, I got gas for days, ayy\\nI can see her in the rough, she still look like diamonds, ayy You're a boss\\nWoah, she's a ten, I only fuck with nines, ayy You're a boss\\nWoah, I said she's a ten, I only fuck with nines, ayy\\n[Chorus]\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours\\nI'm young, I'm rich, I'm famous, I'm yours Cash Only\",\n", - " 'id': 9278189},\n", - " {'name': 'Ring Ring',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"Verse 1\\nI'm on a mission, ain't no slowin' me down\\nGot my eyes on the prize, and I'm ready to drown\\nIn the night, where the vibes are always high\\nI'm chasin' the thrill, and I won't say goodbye\\n\\nPre-Chorus\\nI'm livin' life on the edge, ain't no time for sleep\\nGot my ad-libs on repeat, and my rhymes on repeat\\nI'm on a roll, ain't no stoppin' me now\\nGot my sights on the top, and I'm ready to bow\\n\\nChorus\\nI'm wild and free, like a wolf on the run\\nI'm livin' for the moment, and I won't be done\\nI'm on a nocturnal escape, where the lights never dim\\nI'm chasin' the high, and I won't give up the grind\\n\\nVerse 2\\nI'm drippin' in finesse, got my style on fleek\\nGot my wealth and my luxury, and my status on repeat\\nI'm on a mission to prove, that I'm the real deal\\nGot my eyes on the prize, and I won't ever feel\\n\\nPre-Chorus\\nI'm livin' life on the edge, ain't no time for sleep\\nGot my ad-libs on repeat, and my rhymes on repeat\\nI'm on a roll, ain't no stoppin' me now\\nGot my sights on the top, and I'm ready to bow\\n\\nChorus\\nI'm wild and free, like a wolf on the run\\nI'm livin' for the moment, and I won't be done\\nI'm on a nocturnal escape, where the lights never dim\\nI'm chasin' the high, and I won't give up the grind\\n\\nBridge\\nBut the thrill of the chase, it comes with a cost\\nGot my demons on my back, and they won't be lost\\nI'm on a collision course, with the fire in my soul\\nI'm on a journey to the top, and I won't be controlled\\n\\nChorus\\nI'm wild and free, like a wolf on the run\\nI'm livin' for the moment, and I won't be done\\nI'm on a nocturnal escape, where the lights never dim\\nI'm chasin' the high, and I won't give up the grind\\n\\nOutro\\nI'm on a mission, ain't no slowin' me down\\nGot my eyes on the prize, and I won't be found\\nLivin' life on the edge, where the thrill never fades\\nI'm on a nocturnal escape, where the night never fades.\\n\",\n", - " 'lyre_response': \"[Intro]\\nPlayboi Carti\\nAyy, ayy, ayy, ayy\\nTravis Scott\\nAyy, ayy, ayy, ayy\\n[Verse 1]\\nPour the lean, I'm gettin' rowdy (Yeah, yeah)\\nI'm 'bout to roll up, call me Logan (Yeah, yeah)\\nGot my Audemar, call me James Bond (Yeah, yeah)\\nShe gon' fall in love with me in this Rolls Royce, yeah\\n[Pre-Chorus]\\nI'm on a ego trip, so I'm tryna wake up in Vegas (Yeah)\\nEvery night, I'm tryna fuck somethin', no baby, I'm not a vegan (Yeah)\\nI'm the one they talk about, I got a bad rep, that's a blessin' (Yeah)\\nI'm the one they copy, but they can't replicate this\\n[Chorus]\\nI'm too known, too known, too known, I'm too known, too known I'm too known, too known\\nI'm too known, too known, too known, I'm too known, too known I'm too known, too known\\nCall my bitch known, known, known Known, known\\nCall my bitch known, known, known Known, known\\nShe gon' fuck any nigga known, known, known Known, known\\nShe gon' fuck any nigga known, known, known Known, known\\n[Verse 2]\\nI'm on a ego trip, tryna wake up in Vegas (Yeah, yeah)\\nEvery night, I'm tryna fuck somethin', no baby, I'm not a vegan (Yeah, yeah)\\nAnd I don't give a fuck if she known, she well aware of the rules (Yeah)\\n'Cause I fuck her with my squad, and we all swarm like wolves (Yeah)\\n[Pre-Chorus]\\nI'm on a ego trip, so I'm tryna wake up in Vegas (Yeah)\\nEvery night, I'm tryna fuck somethin', no baby, I'm not a vegan (Yeah)\\nI'm the one they talk about, I got a bad rep, that's a blessin' (Yeah)\\nI'm the one they copy, but they can't replicate this\\n[Chorus]\\nI'm too known, too known, too known, I'm too known, too known I'm too known, too known\\nI'm too known, too known, too known, I'm too known, too known I'm too known, too known\\nCall my bitch known, known, known Known, known\\nCall my bitch known, known, known Known, known\\nShe gon' fuck any nigga known, known, known Known, known\\nShe gon' fuck any nigga known, known, known Known, known\\n[Bridge]\\nShe gon' fuck any nigga known, known, known Known, known\\nShe gon' fuck any nigga known, known, known Known, known\\n[Outro]\\nI'm on a ego trip, so I'm tryna wake up in Vegas (Woah, yeah)\\nEvery night, I'm tryna fuck somethin', no baby, I'm not a vegan (No, woah)\\nAnd I don't give a fuck if she known (No, woah), she well aware of the rules (No, woah)\\n'Cause I fuck her with my squad, and we all swarm like wolves (Woah, yeah)\",\n", - " 'id': 8209014},\n", - " {'name': 'Doomsday',\n", - " 'artist': 'Eminem',\n", - " 'llama_response': \"Verse 1\\nI was born to make noise, my rhymes like a thunderstorm\\nFrom the streets to the spotlight, my rise to fame form\\nHumble beginnings, grindin' every day\\nNow I'm makin' waves, breakin' the mold in every way\\n\\nChorus\\nI'm the new king of the game, don't you forget my name\\nI'm the one they're talkin' 'bout, the one they can't tame\\nI'm on a roll, ain't no stoppin' me now\\nI'm the future of rap, I'm takin' it to the top, yo\\n\\nVerse 2\\nI faced obstacles, but I didn't let 'em bring me down\\nI kept pushin', kept grindin', now I'm wearin' the crown\\nI'm a rebel, I'm a renegade, I'm a nonconformist too\\nI won't be silenced, I won't be stopped, I won't be blue\\n\\nChorus\\nI'm the new king of the game, don't you forget my name\\nI'm the one they're talkin' 'bout, the one they can't tame\\nI'm on a roll, ain't no stoppin' me now\\nI'm the future of rap, I'm takin' it to the top, yo\\n\\nVerse 3\\nI'm on a mission, I'm on a quest\\nTo make my mark, to leave my legacy\\nI won't be held down, I won't be contained\\nI'm a force to be reckoned with, I'm on the rise again\\n\\nChorus\\nI'm the new king of the game, don't you forget my name\\nI'm the one they're talkin' 'bout, the one they can't tame\\nI'm on a roll, ain't no stoppin' me now\\nI'm the future of rap, I'm takin' it to the top, yo\\n\\nVerse 4\\nI'm a product of the streets, I'm a product of the game\\nBut I won't be defined, I won't be tamed\\nI'm a cultural icon, I'm a movement too\\nI'm the voice of the voiceless, I'm the one they're talkin' 'bout\\n\\nChorus\\nI'm the new king of the game, don't you forget my name\\nI'm the one they're talkin' 'bout, the one they can't tame\\nI'm on a roll, ain't no stoppin' me now\\nI'm the future of rap, I'm takin' it to the top, yo\\n\\nOutro\\nSo listen up, y'all, I'm here to stay\\nI'm the new king of rap, and I'm here to play\\nI won't be ignored, I won't be left behind\",\n", - " 'lyre_response': '[Intro]\\nYeah, it\\'s young, it\\'s confident, it\\'s cocky even Hey\\nBut can the artist make his mark?\\nHe\\'s trying to stand out in a world that\\'s over-saturated\\nWith wannabes and has-beens and can he make a difference? Difference\\nWith the fate of his career on his shoulders\\nHe\\'s got a lot to prove before he\\'s considered one of the greats\\nSo let\\'s take a look at the life and times of\\nSlim Shady\\nLewinsky\\n[Verse 1 Eminem]\\nI shot a man named Gray, he was a drifter\\nCaught him in the act of burglarizing my house\\nGotten a beat-down worse than Rodney King\\nI tell you, that was the day before\\nMy mother\\'s birthday, it was December 8\\nShe was nailed to the crotch of a crucifix\\nBy some Christian fundamentalists who hated her for being a lesbian\\nThey set fire to our house while she was inside\\nI was 10 years old, I didn\\'t see her no more\\nAfter that, my dad put us both in an orphanage\\n\\'Til he died of an overdose\\n\\'Cause he just couldn\\'t cope\\nAnd I was labeled a juvenile delinquent\\nCutting off my mom\\'s head and putting it in a box\\nWith a note that said, \"I hate you, you fucking bitch\"\\nThat was the day my dad died (I think)\\n\\'Cause I left him hanging from the ceiling by his bathroom tile\\nWith a note that said, \"You can\\'t live without me\"\\nThat was the day before my 11th birthday (Huh)\\nSo I guess this means I\\'m a man now\\nFuck the system, I\\'m breaking out the asylum\\nI\\'m taking all your daughters, this is an emergency\\nI\\'m laying all my sons, this is an epidemic\\nIt\\'s a massacre in this house, there\\'s bodies all over the lawn\\nThe neighbors are complaining, this is a darker version of suburban life\\nThey should call the police, this is a welfare call\\n\\'Cause they can hear my mother and father arguing through the wall (Shh)\\n[Verse 2 Eminem]\\nIt was winter 1991, I was 11 years old\\nIn the basement of my home, I had a vision of me rapping on TV\\nWith no equipment or computers back then\\nJust a mic and a recorder and a dream, I was determined\\nTo be the greatest of all time, I wouldn\\'t let nothing get in my way\\nEspecially high school, fuck that, I dropped out in 92\\nI started off as a MC, I never had a chance in the rap game\\nUntil I came up with a fake name, Slim Shady\\nMy parents didn\\'t approve, they said it was a phase\\nI got kicked out in the winter, it was 20 degrees\\nNo food stamps, no cash, and I\\'m ashamed\\nTo say that I\\'m from Detroit, man, this city\\'s to blame\\nFor my demise, \\'cause they never had pride in they\\'s eyes\\nJust drugs and crime, but I couldn\\'t see that with my own eyes\\nI was too busy dreaming about killin\\' on the mic\\nNow I\\'m a walking disaster, this is the last chapter\\nI\\'ll be back in a year, this is the final act\\n[Verse 3 Eminem]\\n(In my best Paul Rosenberg voice)\\nOoh, feel the hatred, feel the anger\\nComin\\' from this young man, it\\'s unreal\\nHe\\'s got a chip on his shoulder\\nThe size of a Cadillac, you can bet your ass he\\'s goin\\' places\\nHe\\'s one of those mothafuckas that never smiles, always has a scowl on his face\\nAnd he\\'s cold, like the winter in Detroit, but the coldest on the mic\\nSo take your fuckin\\' shit and bounce, you\\'re wasting my time\\nYou\\'re never gonna make it in this business, you\\'re fucked\\nYou got a fuckin\\' disgrace of a diction, your flow is fucked\\nYou ain\\'t got no style, you\\'re fuckin\\' wack, go fuck yourself in a couple of places\\nPaul Rosenberg\\n[Outro]\\nOoh, feel the hatred, feel the anger\\nComin\\' from this young man, it\\'s unreal\\n(He\\'s one of those mothafuckas that never smiles, always has a scowl on his face)\\nHe\\'s got a chip on his shoulder\\nThe size of a Cadillac, you can bet your ass he\\'s goin\\' places',\n", - " 'id': 9255119},\n", - " {'name': 'Up & Down',\n", - " 'artist': 'Chainsmokers',\n", - " 'llama_response': \"(Verse 1)\\nI was lost in the underground, couldn't find my way out\\nFeeling like a ghost, invisible and without a doubt\\nBut then I saw the light, a beacon in the night\\nAnd I knew I had to fight, to break free from the fight\\n\\n(Chorus)\\nNow I'm on the clouds, I'm shining bright\\nI'm seen in a new light, I'm feeling alive tonight\\nI overcame the struggles, I rose above the pain\\nI'm not the same person, I'm a new person again\\n\\n(Verse 2)\\nI used to feel like I didn't belong, like I was out of place\\nBut now I see that I'm where I'm meant to be, in this space\\nI found my voice, I found my strength\\nI'm not afraid to be myself, I'm not afraid to be bold\\n\\n(Chorus)\\nNow I'm on the clouds, I'm shining bright\\nI'm seen in a new light, I'm feeling alive tonight\\nI overcame the struggles, I rose above the pain\\nI'm not the same person, I'm a new person again\\n\\n(Bridge)\\nI'm not the same person, I'm a new person again\\nI'm rising up, I'm breaking free\\nI'm finding my place, I'm finding my voice\\nI'm shining bright, I'm in my choice\\n\\n(Chorus)\\nNow I'm on the clouds, I'm shining bright\\nI'm seen in a new light, I'm feeling alive tonight\\nI overcame the struggles, I rose above the pain\\nI'm not the same person, I'm a new person again\\n\\n(Drop)\\nI'm on the clouds, I'm shining bright\\nI'm feeling alive, I'm feeling right\\nI overcame the struggles, I rose above the pain\\nI'm a new person, I'm a new name\\n\",\n", - " 'lyre_response': \"[Verse 1]\\nI'm lost in a crowd, but I don't feel invisible\\nLights so bright, but I don't see a thing\\nDidn't know what I wanted, but I know what I have to do\\nSo I'm running for my life in the underground\\n[Pre-Chorus]\\nClouds, clouds, clouds, clouds\\nI'm coming up to the clouds\\n[Chorus]\\nAll my friends are looking up, looking up, looking up\\nAt the cloud that I'm on, the cloud that I'm on\\nAll my friends are looking up, looking up, looking up\\nAt the cloud that I'm on, the cloud that I'm on\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen\\n[Drop]\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen [Verse 2]\\nI'm so out of place, but I feel so alive\\nSomeone call a doctor, 'cause I'm in the sky\\nDidn't know what I wanted, but I know what I have to do\\nSo I'm running for my life in the underground [Pre-Chorus]\\nClouds, clouds, clouds, clouds\\nI'm coming up to the clouds\\n[Chorus]\\nAll my friends are looking up, looking up, looking up\\nAt the cloud that I'm on, the cloud that I'm on\\nAll my friends are looking up, looking up, looking up\\nAt the cloud that I'm on, the cloud that I'm on\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen\\n[Drop]\\nI'm on the cloud, the cloud, the cloud, the cloud\\nSo high up that I, that I\\nI'm seen, I'm seen, I'm seen, I'm seen\",\n", - " 'id': 8700423},\n", - " {'name': 'Swag Disease (400 Degrees)*',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1 - Lil Uzi Vert)\\nI'm the king of the block, ain't no one touchin' me\\nGot my two Glocks, they're always on me\\nI'm the one they all fear, ain't no one near\\nI'm the one they all cheer, I got that swag disease\\n\\nI'm from the 1600 block, where the streets are cold\\nBut I'm the one they all know, I'm the one they all hold\\nI got the edge over all my rivals, you know the deal\\nI'm the one they all want to be, I'm the one they all feel\\n\\n(Chorus)\\nI got that swag disease, it's in my blood\\nI'm the one they all admire, I'm the one they all should\\nI'm the king of the block, ain't no one touchin' me\\nI'm the one they all fear, ain't no one near\\n\\n(Verse 2 - Playboi Carti)\\nI'm the one they all look at, I'm the one they all know\\nGot my flashy jewelry, it's showin' how I flow\\nI'm the one they all admire, I'm the one they all desire\\nI'm the one they all want to be, I'm the one they all aspire\\n\\nI got the spotlight on me, I got the crowd in awe\\nI'm the one they all attract, I'm the one they all draw\\nI got the swag disease too, it's in my DNA\\nI'm the one they all remember, I'm the one they all knew\\n\\n(Chorus)\\nI got that swag disease, it's in my blood\\nI'm the one they all admire, I'm the one they all should\\nI'm the one they all fear, ain't no one near\\nI'm the king of the block, ain't no one touchin' me\\n\\n(Bridge)\\nI'm the one they all talk about, I'm the one they all know\\nI'm the one they all want to be, I'm the one they all show\\nI got the swag disease bad, it's in my soul\\nI'm the one they all love, I'm the one they all hold\\n\\n(Chorus)\\nI got that swag disease, it's in my blood\\nI'm the one they all admire, I'm the one they all should\\nI'm the one they all fear, ain't no one near\\nI'm the king of the block, ain't no one touchin' me\\n\\n(Outro)\\nSo listen up, y'all, I hope you understand\\nI'm the one they all want, I'm the one they all demand\\nI got that swag disease, it's in my DNA\\nI'm the one they all know, I'm the one they all love.\\n\",\n", - " 'lyre_response': \"[Intro Lil Uzi Vert]\\nOh, oh, oh, oh, oh (Oh, oh, oh)\\nI'm from the 1600 block (Oh, \\noh, 1600, yeah\\nCarry two Glocks, I'm so reckless (Oh, \\noh, I'm so reckless, 1600\\nThat is just how I am (Woah, 1600)\\nI got swag disease and it's (Oh, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (Woah, I got two Glocks, 1600)\\nI'm so reckless, I tote that (Yeah, I'm so reckless, 1600)\\nI got swag disease and it's (I got swag disease and it's, 1600)\\nBitch, I got two Glocks (Oh, I got two Glocks, 1600)\\nI'm so reckless, I tote that (Oh, I'm so reckless, 1600)\\nI got swag disease and it's (Yeah, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\\n[Verse 1 Lil Uzi Vert]\\nI got \\nseven hundred in my sock (Woah, seven hundred)\\nI'm in the trenches with a mop (Woah, with a mop)\\nI got swag disease and it's (I got swag disease and it's, woah)\\nBitch, I got two Glocks (Two Glocks, woah)\\nI'm so reckless, I tote that (Oh, I'm so reckless, 1600)\\nI got swag disease and it's (I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\\n[Verse 2 Playboi Carti]\\nBitch, I been all in your social (All in your social, 1600)\\nI been all in your mind (All in your mind, 1600)\\nI got swag disease and it's (Yeah, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\\nI'm so reckless, I tote that (I'm so reckless, 1600)\\nI got swag disease and it's (I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\\n[Chorus Lil Uzi Vert & \\nPlayboi Carti]\\nI got swag disease and it's I got swag disease and it's, 1600\\nBitch, I got two Glocks I got two Glocks, 1600\\nI'm so reckless, I tote that Oh, I'm so reckless, 1600\\nI got swag disease and it's I got swag disease and it's, 1600\\nBitch, I got two Glocks I got two Glocks, 1600\\nI'm so reckless, I tote that (Oh, I'm so reckless, 1600)\\nI got swag disease and it's (Yeah, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600) [Outro Lil Uzi Vert]\\nOh, oh, oh, oh, oh (Oh, oh, oh)\\nI'm from the 1600 block (Oh, \\noh, I'm from the 1600 block\\nYeah\\nCarry two Glocks, I'm so reckless (I'm so reckless, 1600)\\nThat is just how I am (Woah, 1600)\\nI got swag disease and it's (Oh, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (Woah, I got two Glocks, 1600)\\nI'm so reckless, I tote that (Yeah, I'm so reckless, 1600)\\nI got swag disease and it's (Yeah, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\\nI'm so reckless, I tote that (Oh, I'm so reckless, 1600)\\nI got swag disease and it's (Oh, I got swag disease and it's, 1600)\\nBitch, I got two Glocks (I got two Glocks, 1600)\",\n", - " 'id': 4007193},\n", - " {'name': 'VALUES',\n", - " 'artist': 'Justin Timberlake',\n", - " 'llama_response': \"(Verse 1)\\nI'm sick of the facade, the masks we wear\\nThe curated lives we show, the secrets we share\\nBehind the screens, the truth we hide\\nA culture of superficiality, a world that's divide\\n\\n(Chorus)\\nWe're chasing the likes, the followers, the fame\\nBut is it worth the cost of our souls in flames?\\nWe're losing ourselves in the game\\nOf social media fame, of empty dreams\\n\\n(Verse 2)\\nWe're trapped in a world of instant gratification\\nWhere meaningful connections are just a click away\\nBut the more we scroll, the more we feel\\nDisconnected, alone, and lost in a sea of steel\\n\\n(Chorus)\\nWe're chasing the likes, the followers, the fame\\nBut is it worth the cost of our souls in flames?\\nWe're losing ourselves in the game\\nOf social media fame, of empty dreams\\n\\n(Bridge)\\nI long for the days when authenticity reigned\\nWhen values like empathy and kindness were the reign\\nBut now we're consumed by the need to impress\\nAnd the truth is, it's all just a mess\\n\\n(Chorus)\\nWe're chasing the likes, the followers, the fame\\nBut is it worth the cost of our souls in flames?\\nWe're losing ourselves in the game\\nOf social media fame, of empty dreams\\n\\n(Verse 3)\\nI see the world around me, it's a sight to behold\\nA culture of distraction, a society that's cold\\nWe're chasing the highs, the lows, the thrill of the game\\nBut at what cost, when the pain becomes the same\\n\\n(Chorus)\\nWe're chasing the likes, the followers, the fame\\nBut is it worth the cost of our souls in flames?\\nWe're losing ourselves in the game\\nOf social media fame, of empty dreams\\n\\n(Outro)\\nI'm calling out to the ones who feel the same\\nLet's break free from the chains that hold us tame\\nLet's find the truth, let's find our way\\nTo a world where authenticity is the only way.\\n\\nMusical Composition\\n\\n* The song should have a slow tempo, around 110-120 BPM, to convey a sense of reflectiveness and somberness.\\n* The instrumentation should blend Justin Timberlake's signature pop-R&B sound with a more introspective and emotional tone. This could include a combination of acoustic and electronic instruments, such as guitars, pianos, and synthesizers.\\n* The melody should be catchy and memorable, with a focus on the lyrics and their message. The hooks should be strong and repetitive, emphasizing the song's themes of disillusionment and the longing for truth and real connection.\\n* The rhythm should be consistent and driving, with a focus on the drums and percussion. The beat should be steady and reliable, with a few deviations to create tension and emphasis.\\n* The song should have a clear structure, with a verse-chorus-verse-chorus-bridge-chorus format. This will help to build anticipation and create a sense of release when the chorus hits.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't you think it's kinda crazy?\\nHow we gonna fix this mess we're in?\\nIf social media is a jail\\nThen I think I might be pinched in\\n[Verse 1]\\nEverybody's got the best intentions\\nFigure they can do some good in the world\\nGet a little bit of attention\\nMaybe even change a life\\nJust take a minute, reflect on the journey\\nHow you get where you're at in life\\nYou might be thinking you're an idol\\nJust remember that you're living a lie\\n[Chorus]\\nIf you're going to break the facade\\nGot to do it before it's too late\\nBetter do it before it's too late\\nYou're another statistics\\nBroken dreams and all the fakes\\nCouldn't even wait until the show was over\\nNow the whole world gets to see you lose it\\n[Verse 2]\\nSocially defined, the world has lost its mind\\nIt's like the more things change, the more they remain the same\\nJust different outlets, different times\\nStill got the same old problems\\nBut we're too busy chasing likes and shares\\nRatings and sales to care\\nSocial media is a cage\\nWe're all just living in a frame, yeah [Chorus]\\nIf you're going to break the facade\\nGot to do it before it's too late\\nBetter do it before it's too late\\nYou're another statistics\\nBroken dreams and all the fakes\\nCouldn't even wait until the show was over\\nNow the whole world gets to see you lose it\\n[Bridge]\\nAnd if you think that this is real\\nThen you should probably jot your feelings down\\nWhile they still mean something\\nBefore they drown in this town\\n[Verse 3]\\nThe world is hungry, gotta feed 'em\\nGotta give 'em what they need, not just what they want\\nGet 'em while they're young, mold 'em into something\\nMake a product out of nothing, yeah\\nIt's a bit twisted, but that's how they grow 'em\\nLike a motherfuckin' tomato, yeah\\nPink or red, it don't matter, just as long as it's not blue\\nWe got orders, gotta fill 'em\\nFuck the bills, pay the shrink, drink some fucking gin, yeah\\n[Chorus]\\nIf you're going to break the facade\\nGot to do it before it's too late\\nBetter do it before it's too late\\nYou're another statistics\\nBroken dreams and all the fakes\\nCouldn't even wait until the show was over\\nNow the whole world gets to see you lose it [Outro]\\nDon't you think it's kinda crazy?\\nHow we gonna fix this mess we're in?\\nIf social media is a jail\\nThen I think I might be pinched in\\nDon't you think it's kinda crazy?\\nHow we gonna fix this mess we're in?\\nIf social media is a jail\\nThen I think I might be pinched in\",\n", - " 'id': 8484262},\n", - " {'name': 'Money on My Mind',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI see the lights, the fame, the fortune\\nBut it's not worth the cost of my soul\\nI'd rather be true to myself, my art\\nThan compromise and play the fame game\\n\\nChorus\\nI'm doing it for the love, not for the money\\nI'm following my heart, not the trend\\nI'm not afraid to stand alone\\nWhen everyone else is singing the same song\\n\\nVerse 2\\nI've seen the greed, the jealousy, the lies\\nThe industry that tries to break the soul\\nBut I won't be swayed, I won't be bought\\nI'll keep my integrity, my art whole\\n\\nChorus\\nI'm doing it for the love, not for the money\\nI'm following my heart, not the trend\\nI'm not afraid to stand alone\\nWhen everyone else is singing the same song\\n\\nBridge\\nI know it's hard, I know it's tough\\nTo stand up for what you believe\\nBut I'll take the risk, I'll take the fall\\nBecause in the end, it's all worth it\\n\\nChorus\\nI'm doing it for the love, not for the money\\nI'm following my heart, not the trend\\nI'm not afraid to stand alone\\nWhen everyone else is singing the same song\\n\\nOutro\\nI'll keep on singing, I'll keep on writing\\nFor the love of music, not the fame\\nI'll be true to myself, I'll be true to my art\\nAnd I'll never compromise, I'll never start.\\n\",\n", - " 'lyre_response': '[Intro]\\nOh, no\\nWell, kind of\\nUh, yeah\\n[Verse 1]\\nYou\\'ve been callin\\' me, sayin\\' that you want a refund\\nYou\\'re cancelin\\' your tickets to my upcoming tour\\nYou\\'re like, \"I don\\'t wanna hear your mediocre sound\\nUnless that sound is coming from a Dodge Durango\"\\nAnd I\\'m like, \"Well, sadly, I don\\'t own a Dodge Durango\\nSo if you really wanna hear my music, you should probably just stream it\\nI guess that my success just went to my head, I\\'ve been livin\\' so long\\nLivin\\' so long\\n[Pre-Chorus]\\nAnd they said I did it for the money\\nThey said I did it for the power\\nThey said I did it for the money\\nBut really, I did it for the love\\n[Chorus]\\nI did it for the love, I did it for the love\\nI did it for the love, I didn\\'t do it for the money\\nI did it for the love, I did it for the love\\nI didn\\'t do it for the money\\n[Verse 2]\\nYou\\'ve been callin\\' me, sayin\\' that you\\'re really quite upset\\nYou don\\'t think that my music is good enough for your son or your daughter\\nYou\\'re like, \"You should be ashamed of yourself, you\\'re doin\\' this for the cash\"\\nAnd I\\'m like, \"Well, actually, I don\\'t think that I\\'ve ever been more ashamed\\nOf doin\\' anything in my whole life than bein\\' ashamed\\nWould mean I\\'m not true to what I wanna give\"\\n[Pre-Chorus]\\nAnd they said I did it for the money\\nThey said I did it for the power\\nThey said I did it for the money\\nBut really, I did it for the love\\n[Chorus]\\nI did it for the love, I did it for the love\\nI did it for the love, I didn\\'t do it for the money\\nI did it for the love, I did it for the love\\nI didn\\'t do it for the money [Bridge]\\nSome people wanna buy my songs and put \\'em on their radio stations\\nWanna use my voice to sell their perfume or their favorite brands\\nBut really, I just wanna sing my own songs in my own way\\nAnd I hope that you\\'ll stick with me and support me each and every day\\n[Chorus]\\nI did it for the love, I did it for the love\\nI did it for the love, I didn\\'t do it for the money\\nI did it for the love, I did it for the love\\nI didn\\'t do it for the money\\nI did it for the love, I did it for the love\\nI did it for the love, I didn\\'t do it for the money\\nI did it for the love, I did it for the love\\nI didn\\'t do it for the money\\n[Outro]\\nOh, no\\nWell, kind of\\nYeah',\n", - " 'id': 284741},\n", - " {'name': 'Karma (Remix)',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"(Verse 1)\\nKarma's got a plan, it's always on the prowl\\nWatching and waiting, never gonna let you go\\nShe's got a list, a long one, of all the wrongs you've done\\nAnd now it's time to pay, you're gonna have some fun\\n\\n(Chorus)\\nOh, karma's a funny thing, it's always on the rise\\nGonna make you pay, gonna give you surprise\\nShe's got a way of making things right\\nAnd when she does, you'll know she's in the fight\\n\\n(Verse 2)\\nYou thought you got away, but karma's got your number\\nGonna give you what you gave, gonna make it double\\nYou betrayed my trust, you broke my heart\\nBut now it's time to pay, you're gonna start\\n\\n(Chorus)\\nOh, karma's a funny thing, it's always on the rise\\nGonna make you pay, gonna give you surprise\\nShe's got a way of making things right\\nAnd when she does, you'll know she's in the fight\\n\\n(Bridge)\\nKarma's got a sense of humor, she's got a playful grin\\nGonna make you suffer, gonna make you spin\\nYou thought you were the boss, you thought you were the one\\nBut now you're gonna learn, you're gonna have fun\\n\\n(Chorus)\\nOh, karma's a funny thing, it's always on the rise\\nGonna make you pay, gonna give you surprise\\nShe's got a way of making things right\\nAnd when she does, you'll know she's in the fight\\n\\n(Outro)\\nSo watch out for karma, she's always on the move\\nShe's gonna make you pay, she's gonna make you prove\\nThat what you did was wrong, that what you did was right\\nAnd when she's done, you'll see the light.\\n\",\n", - " 'lyre_response': \"[Intro]\\nKarma, karma, karma, karma\\n(Ice Spice)\\nKarma, karma, karma, karma\\n(Ice Spice)\\nKarma, karma, karma, karma\\nKarma, karma, karma, karma (Ice Spice)\\n[Verse 1]\\nI heard she's got a brand new lease on life\\nAfter she left you, she done got religion\\nAnd she's out here droppin' science like Bill Nye\\nShe'll be alright, you on the other hand\\nYou just a fuckin' hand in her back, right?\\nSneakin' in her bed, get out of her head\\nShe doesn't wanna think, she doesn't wanna speak\\nJust stay the fuck out of her way\\n[Pre-Chorus]\\nBut that's fine, you'll get what you deserve\\nI hope it's cold enough in hell for you to burn\\n[Chorus]\\nAnd as for you\\nWell, I'm sure it's no surprise\\nThat the tables have turned\\nNow it's your turn to get what you deserve\\nAnd I hope it's cold enough in hell for you to burn\\n[Verse 2]\\nDon't you get it now, you're the one at hand\\nThe reason why, she won't pick up your calls\\nYou keep pushin' and pushin' and pushin' the issue\\nBut she's got a new man, and he's got a new balls\\nYou keep hittin' the phone, but it ain't gon' get you nowhere\\nShe's happy, you're not, it's a real bummer\\nYou were so lucky, gotta get over her\\nYou're one in a million, you'll never be hers\\n[Pre-Chorus]\\nBut that's fine, you'll get what you deserve\\nI hope it's cold enough in hell for you to burn\\n[Chorus]\\nAnd as for you\\nWell, I'm sure it's no surprise\\nThat the tables have turned\\nNow it's your turn to get what you deserve\\nAnd I hope it's cold enough in hell for you to burn\\n[Bridge]\\nAs for me, I got my revenge\\nI hope it's hot enough in hell for you to burn\\n[Chorus]\\nAnd as for you\\nWell, I'm sure it's no surprise\\nThat the tables have turned\\nNow it's your turn to get what you deserve\\nAnd I hope it's cold enough in hell for you to burn\\n[Outro]\\nKarma, karma, karma, karma\\nKarma, karma, karma, karma\\nKarma, karma, karma, karma\\nKarma, karma, karma, karma\",\n", - " 'id': 9157172},\n", - " {'name': 'I’m Not Human',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"Verse 1\\nI'm floating through the streets, feeling so alone\\nLike an alien in this world, just trying to find my home\\nI try to fit in, but it's hard when you're different\\nI'm not a human, I'm something else, it's a different matter\\n\\nI keep my secrets hidden, locked away in my mind\\nI'm scared to let them out, for fear of being left behind\\nBut sometimes I wish I could just let it all unwind\\nAnd find a place where I can be myself, without any kind\\n\\nChorus\\nI'm not a human, I'm something else, it's a different world\\nI'm just trying to find my place, in this life that's so unfurled\\nI'm not a human, I'm something else, it's a different tale\\nI'm just trying to escape, to a place where I can sail\\n\\nVerse 2\\nI see the world around me, but it's not my home\\nI'm just passing through, trying to find my way back to my dome\\nI'm searching for a sanctuary, where I can be myself and roam\\nFree from the chains of society, where I can just be anome\\n\\nI know I'm not like others, I'm different in every way\\nBut sometimes it feels like a curse, rather than a ray of day\\nI try to fit in, but it's hard when you're not of this world\\nI'm not a human, I'm something else, it's a different whirl\\n\\nChorus\\nI'm not a human, I'm something else, it's a different world\\nI'm just trying to find my place, in this life that's so unfurled\\nI'm not a human, I'm something else, it's a different tale\\nI'm just trying to escape, to a place where I can sail\\n\\nBridge\\nI know I'm not alone, there are others like me\\nWe're the outcasts and the oddities, the ones who don't fit in with glee\\nWe're the ones who see the world differently, with eyes that are bright\\nWe're the ones who know what it's like, to be an alien in this fight\\n\\nChorus\\nI'm not a human, I'm something else, it's a different world\\nI'm just trying to find my place, in this life that's so unfurled\\nI'm not a human, I'm something else, it's a different tale\\nI'm just trying to escape, to a place where I can sail\\n\\nOutro\\nSo I'll keep on searching, for my personal sanctuary\\nWhere I can be myself, without any kind of hurray\\nI'm not a human, I'm something else, it's a different world\",\n", - " 'lyre_response': \"[Intro Lil Uzi Vert]\\nI'm not a human, I'm not a human (Woah, woah)\\nI'm just a human, I'm just a human (Woah, woah)\\nI'm not a human, I'm not a human\\nI'm just a human, I'm just a human (Woah, woah)\\n[Verse 1 Lil Uzi Vert]\\nWoah, I'm in a world that's not so distant (Not so distant)\\nA perfect imitation of a human (Human)\\nBut inside I feel like an alien (Alien)\\nA being that is far from human (Human)\\nI try to talk but the words won't come (Can't come)\\nI try to walk but my legs won't move (Won't move)\\nI'm stuck in my mind and I can't get out (Can't get out)\\nI'm scared to live but I'm scared to die (Scared to die)\\nOh, why? (Why)\\nBecause I'm not a human (Huh? What? Huh?)\\n[Chorus XXXTENTACION & \\nLil Uzi Vert]\\nI'm not a human\\nI'm just a human Woah, woah\\nI'm just a human Woah, woah\\n[Verse 2 XXXTENTACION]\\nI'm not a human, I'm just a temporary (Temporary)\\nI know I'm meant for greater things (Greater things)\\nYou don't know my life, you don't know my history (My history)\\nI was born to die an assassin (An assassin)\\nI feel no pain, I don't get tired (I don't get tired)\\nI got a long gun and I'm ready (And I'm ready)\\nI'm coming to your town, I'ma kill ya (I'ma kill ya)\\nI know your darkest secrets (Your darkest secrets)\\nI know you're scared of the unknown (The unknown)\\nI am your nightmare, I am your worst nightmare\\n(Woah, woah, \\nyeah [Chorus XXXTENTACION & \\nLil Uzi Vert]\\nI'm not a human\\nI'm just a human (Woah, woah)\\nI'm just a human (Woah, woah)\\n[Outro XXXTENTACION]\\nI'm not a human, I'm just a temporary (Temporary)\\nI know I'm meant for greater things (Greater things)\\nYou don't know my life, you don't know my history (My history)\\nI was born to die an assassin (An assassin)\\nI feel no pain, I don't get tired (I don't get tired)\\nI got a long gun and I'm ready (And I'm ready)\\nI'm coming to your town, I'ma kill ya (I'ma kill ya)\\nI know your darkest secrets (Your darkest secrets)\\nI know you're scared of the unknown (The unknown)\\nI am your nightmare, I am your worst nightmare\\nI'm not a human, I'm just a human\",\n", - " 'id': 8753696},\n", - " {'name': 'I Think I’m Ready',\n", - " 'artist': 'Katy Perry',\n", - " 'llama_response': \"(Verse 1)\\nI've been through the fire and the rain\\nSurvived the heartaches, the pain and the strain\\nBut I never thought I'd find myself open wide\\nTo the possibility of love, without a disguise\\n\\nI've been strong, independent and free\\nNever needed anyone, never needed to be\\nBut now I find myself in a new light\\nReady to embrace the vulnerability of the night\\n\\n(Chorus)\\nI'm ready for love, I'm ready to fly\\nI'm ready to soar, I'm ready to try\\nI'm ready to let go, I'm ready to be\\nTaken by surprise, by the beauty of love's decree\\n\\n(Verse 2)\\nI never thought I'd receive flowers without a reason\\nOr engage in long conversations, with a heart that's a-beatin'\\nBut now I find myself, in a new, unexpected way\\nOpening up to the possibility of a love that's here to stay\\n\\nI've been burned before, I've been left in the cold\\nBut this time, I'm different, I'm ready to unfold\\nThe layers of my heart, to reveal the real me\\nAnd embrace the love, that's been waiting to set me free\\n\\n(Chorus)\\nI'm ready for love, I'm ready to fly\\nI'm ready to soar, I'm ready to try\\nI'm ready to let go, I'm ready to be\\nTaken by surprise, by the beauty of love's decree\\n\\n(Bridge)\\nI'm not the same person, that I used to be\\nI've grown and learned, and found my destiny\\nAnd now I'm ready, to love with all my might\\nAnd let this new love, take flight\\n\\n(Chorus)\\nI'm ready for love, I'm ready to fly\\nI'm ready to soar, I'm ready to try\\nI'm ready to let go, I'm ready to be\\nTaken by surprise, by the beauty of love's decree\\n\\n(Outro)\\nI'm ready to embrace, the ups and the downs\\nThe laughter and the tears, the joy and the frowns\\nI'm ready to love, with every beat of my heart\\nAnd find the love, that will set us apart\\n\",\n", - " 'lyre_response': \"[Intro]\\nMy hands are shaking, I need to calm down\\nYou're making me blush, I'm losing my touch now\\nBut I'm always up for a challenge\\n[Verse 1]\\nI've got no need for love songs\\nI've got no need for romance\\nI've got no need to be made, mmm\\nI've got no need for your sweet talk\\nI've got no need for your lies\\nAnd I've got no need to be saved, mmm\\n[Pre-Chorus]\\nSo send me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\n[Chorus]\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need, mmm\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need\\n[Verse 2]\\nI don't need any flowers, I'll take that as a gesture\\nAnd I don't need a date night, I'll take that as a promise\\nBut what I do need is for you to hold me, mmm\\nI don't need any lies, I'll take the truth instead\\nJust hold me close and whisper, mmm [Pre-Chorus]\\nSo send me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\n[Chorus]\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need, mmm\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need\\n[Bridge]\\nSend me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\\n[Pre-Chorus]\\nSo send me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\n[Chorus]\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need, mmm\\n'Cause I've been so lonely, I've been afraid to fall\\nI've been so lonely, I've been afraid to fall\\nBut you are the one I need\\n[Outro]\\nSo send me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love without an occasion\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\\nSend me your love, send me your love\",\n", - " 'id': 195964},\n", - " {'name': 'Houdini',\n", - " 'artist': 'Dua Lipa',\n", - " 'llama_response': \"(Verse 1)\\nI see you from across the room, a flash of magic in the night\\nYour eyes lock on mine, and I can't help but feel the spark\\nBut like a Houdini act, you disappear without a fight\\nLeaving me wondering if you're worth the risk, if you're worth the fight\\n\\n(Chorus)\\nComing and going, like a magic trick\\nYou're here and then you're gone, it's like a trick of the mind\\nI can't help but feel the allure of mystery\\nBut I need proof of worthiness, before I give my heart to thee\\n\\n(Verse 2)\\nI ask for signs and proof, but you just smile and shake your head\\nSaying that love is a game, and I'm just playing at its edge\\nBut I'm not afraid to take the leap, to risk it all on you\\nI need to know that you're the real deal, before I give my heart to you\\n\\n(Chorus)\\nComing and going, like a magic trick\\nYou're here and then you're gone, it's like a trick of the mind\\nI can't help but feel the allure of mystery\\nBut I need proof of worthiness, before I give my heart to thee\\n\\n(Bridge)\\nI'm not looking for a fling, or a temporary thrill\\nI need something real, something that will make me whole\\nI'll play this game of love, but I won't be fooled\\nI need to know that you're the one, before I give my heart to you\\n\\n(Chorus)\\nComing and going, like a magic trick\\nYou're here and then you're gone, it's like a trick of the mind\\nI can't help but feel the allure of mystery\\nBut I need proof of worthiness, before I give my heart to thee\\n\\n(Outro)\\nSo show me what you're made of, prove your worth to me\\nI'll be the judge of your love, and I'll decide if it's worth the energy\\nI'm not afraid to be bold, to take the lead in this game\\nBut I need you to prove yourself, before I give my heart to you, before I give my heart away.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't need no words, don't need no words\\nDon't need to say, don't need to say\\nCome and go like Houdini\\nCome and go like Houdini\\n[Verse 1]\\nSometimes the magic works\\nSometimes it don't, but I\\nCan't get enough, so I wonder if you\\nCould be the one to make me believe\\nCan you prove it? Can you prove it?\\nAm I dreaming? Am I dreaming?\\n[Pre-Chorus]\\nI won't stay with you, so give me a reason to\\nGive me a reason to, give me a reason to\\nGive me a reason to, give me a reason to\\nCome and go like Houdini\\nCome and go like Houdini\\n[Chorus]\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\\n[Verse 2]\\nI know you got a challenge\\nOn, so show me what you're made of\\nProve it to me, prove it to me\\nCan you handle it? Can you handle it?\\nCan you handle the love and the danger?\\n (Danger)\\n[Pre-Chorus]\\nI won't stay with you, so give me a reason to\\nGive me a reason to, give me a reason to\\nGive me a reason to, give me a reason to\\nCome and go like Houdini\\nCome and go like Houdini [Chorus]\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\\n[Bridge]\\nI won't stay with you, so give me a reason to\\nGive me a reason to, give me a reason to\\nGive me a reason to, give me a reason to\\nCome and go like Houdini\\nCome and go like Houdini\\nI won't stay with you, so give me a reason to\\nGive me a reason to, give me a reason to\\nGive me a reason to, give me a reason to\\nCome and go like Houdini\\nCome and go like Houdini\\n[Chorus]\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\\nYou know I come and go like Houdini\\nDon't need no words, don't need no words\\nCome and go like Houdini\\nCome and go like Houdini\",\n", - " 'id': 9712938},\n", - " {'name': 'Drama Queen',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"(Verse 1)\\nI was once a heartbreaker's plaything,\\nChasing after you like a love song.\\nBut now I'm standing tall and strong,\\nAnd I'm moving on, where you can't go.\\n\\n(Chorus)\\nI'm over it, I'm over you,\\nI'm done with the drama, I'm through.\\nI'm finding my worth, I'm finding my way,\\nAnd I'm moving on to a brighter day.\\n\\n(Verse 2)\\nYou were a queen of drama and pain,\\nBut I'm not gonna let you bring me down again.\\nI've got a new love, he's got a heart of gold,\\nAnd he's gonna make me feel like I'm worth more than a thousand lies.\\n\\n(Chorus)\\nI'm over it, I'm over you,\\nI'm done with the drama, I'm through.\\nI'm finding my worth, I'm finding my way,\\nAnd I'm moving on to a brighter day.\\n\\n(Bridge)\\nSometimes I think back on the way we were,\\nAnd I realize how much I had to give.\\nBut you took it all and you tore it apart,\\nAnd now I'm standing here, stronger than my heart.\\n\\n(Chorus)\\nI'm over it, I'm over you,\\nI'm done with the drama, I'm through.\\nI'm finding my worth, I'm finding my way,\\nAnd I'm moving on to a brighter day.\\n\\n(Outro)\\nI'm not gonna let you bring me down,\\nI'm gonna rise up and shine.\\nI'm gonna find my happy end,\\nAnd I'm gonna love again, with a love that's true.\\n\",\n", - " 'lyre_response': \"[Intro]\\nHe's fuckin' with me\\nThis one's for all the drama queens\\nAnd I'm not even famous\\nI just met somebody new\\n[Verse 1]\\nThere's nothing I can do\\nYou've got a brand new crush\\nAnd he's got a brand new girl\\nAnd I just lost all my sparkle\\nOver a guys' club\\nAnd she's got all the attention\\nThat I once gave you\\n[Pre-Chorus]\\nAnd I'm so over it\\nWhy can't you see?\\nThat I'm better off without ya\\n[Chorus]\\nThat you're out with some new chick\\nKissin' up on my style\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it\\nYou're on another girl's radar\\nBut you're not even on my radar\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it [Verse 2]\\nShe's so much better than me\\nThat's why I'm jealous\\nWish I could be her\\nBut I know I'm better off\\nWith out ya\\n[Pre-Chorus]\\nAnd I'm so over it\\nDon't understand\\nHow you can act like that\\nAnd then turn around\\nAnd make me think\\nThat you were different\\nBut I'm better off without ya [Chorus]\\nThat you're out with some new chick\\nKissin' up on my style\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it\\nYou're on another girl's radar\\nBut you're not even on my radar\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it\\n[Bridge]\\nI just thought you should know\\nYou once lived in my dreams\\nBut now you just occupy my time\\nWithout holding me down\\nAnd I just thought you should know\\nThat I've moved on\\nTo a new place\\nAnd I like it here\\nAnd you're just a memory\\nNow I know\\nThat I deserve better\\nAnd you're so bad for me\\nAnd I just thought you should know\\n[Chorus]\\nThat you're out with some new chick\\nKissin' up on my style\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it\\nYou're on another girl's radar\\nBut you're not even on my radar\\nAnd I'm over it, I'm over it\\nYeah, that's right, I'm over it\",\n", - " 'id': 3947016},\n", - " {'name': 'Till Further Notice (OG)',\n", - " 'artist': '21 Savage',\n", - " 'llama_response': \"Verse 1\\nI was in love, thought it was real, but now I'm feelin' like a fool\\nShe said she loved me, but she was just playin' me, oh\\nI gave her my heart, but she tore it apart\\nNow I'm left with these scars, and a broken heart\\n\\nChorus\\nRelationship fallin' apart, can't find my way back to her heart\\nGot my demons, they're tearin' me apart\\nTryna find the pieces, but they're scattered from the start\\nCan't seem to heal, feelin' like I'm losin' myself in this dark\\n\\nVerse 2\\nI thought I was the one, but I guess I was wrong\\nShe said she needed space, but now I'm just singin' this song\\nI gave her my all, but she threw it away\\nNow I'm left with nothin', just a breakup to stay\\n\\nChorus\\nRelationship fallin' apart, can't find my way back to her heart\\nGot my demons, they're tearin' me apart\\nTryna find the pieces, but they're scattered from the start\\nCan't seem to heal, feelin' like I'm losin' myself in this dark\\n\\nBridge\\nI'm lost in my thoughts, can't seem to find my way\\nTryna make sense of it all, but it's just a blur\\nI'm tryin' to move on, but it's hard when I still feel\\nThe weight of our love, and the mistakes that I made, oh\\n\\nChorus\\nRelationship fallin' apart, can't find my way back to her heart\\nGot my demons, they're tearin' me apart\\nTryna find the pieces, but they're scattered from the start\\nCan't seem to heal, feelin' like I'm losin' myself in this dark\\n\\nOutro\\nI'll always remember, the way she made me feel\\nBut I can't keep livin' in the past, gotta let it heal\\nGot my own flaws, and my own personal battles to fight\\nBut I'll keep on movin', 'cause I know I'll be alright.\\n\",\n", - " 'lyre_response': '[Intro James Blake]\\nI am afraid of loving, afraid of losing\\nAfraid of my own weaknesses\\nAnd when it comes to you\\nI am not afraid to say\\n[Verse 1 James Blake]\\nYour touch, it made me feel alive\\nBut I know that it will soon subside\\nIt’s just a feeling, it will soon go away\\nBut while it lasts, I will take no money for the ride\\n[Chorus James Blake]\\nAnd when it ends, I’ll be hurt again\\nBut when it ends, I’ll be wiser\\nWhen it ends\\nWhen it ends\\nWhen it ends, I’ll be hurt again\\nBut when it ends, I’ll be wiser\\n[Verse 2 James Blake]\\nWhy do we fall? So we can learn to get up again\\nBut when it comes to love, the risk is worth the pain\\nAnd if you need to go, I will let you go\\nBut while you’re here, I won’t let you go, no\\n[Chorus James Blake]\\nAnd when it ends, I’ll be hurt again\\nBut when it ends, I’ll be wiser\\nWhen it ends\\nWhen it ends\\nAnd when it ends, I’ll be hurt again\\nBut when it ends, I’ll be wiser\\n[Verse 3 Travis Scott]\\nSo you ran off with my best friend\\nIt\\'s like we always end, right?\\nIn the same position, same shit\\nYou know, I\\'m not a patient man\\nYou know that, right?\\nFrom the jump, I told you how I was\\nBut you wanna test fate, you\\'re playin\\' a role\\nThat\\'s not you, right?\\nYou don\\'t wanna lose it all on some bullshit\\nTalkin\\' \\'bout, \"You\\'re just not fulfillin\\' my needs\"\\nBaby, you\\'re not makin\\' any sense\\nIt\\'s too late, you already made your decision\\nIt\\'s too late, you already left me high and dry\\nBetter call me when it\\'s no heat between us\\nBetter call me when you\\'re all alone, woo\\nBetter call me, but you won\\'t, yeah, yeah\\n[Chorus James Blake]\\nAnd when it ends, I\\'ll be hurt again\\nBut when it ends, I\\'ll be wiser\\nWhen it ends\\nWhen it ends\\nAnd when it ends, I\\'ll be hurt again\\nBut when it ends, I\\'ll be wiser\\n[Outro James Blake]\\nI am afraid of loving, afraid of losing\\nAfraid of my own weaknesses\\nAnd when it comes to you\\nI am not afraid to say',\n", - " 'id': 9104119},\n", - " {'name': 'Eyes Closed',\n", - " 'artist': 'Ed Sheeran',\n", - " 'llama_response': \"Verse 1\\nI've been dancing with my eyes closed, trying to escape the pain\\nOf a love that's lost, of a heart that's broken in vain\\nThe beat of the music is the only thing that stays\\nAs I sway to the rhythm, memories of you drift away\\n\\nChorus\\nOh, the years go by, and I'm still alone\\nDancing with my eyes closed, trying to find my way back home\\nBut the memories of you, they never fade\\nLike a ghost in my heart, they're always there, oh\\n\\nVerse 2\\nI've been searching for a way to heal my soul\\nBut the ache of your absence, it never gets old\\nI close my eyes and I'm back in your arms\\nBut when I open them, you're gone, and I'm left with these charms\\n\\nChorus\\nOh, the years go by, and I'm still alone\\nDancing with my eyes closed, trying to find my way back home\\nBut the memories of you, they never fade\\nLike a ghost in my heart, they're always there, oh\\n\\nBridge\\nI know I'll find my way, I'll find my way to you\\nBut until then, I'll keep on dancing, with my eyes closed, too\\nI'll hold on to the memories, and the love we shared\\nAnd I'll keep on moving, through the years, with my heart unbroken and bare\\n\\nChorus\\nOh, the years go by, and I'm still alone\\nDancing with my eyes closed, trying to find my way back home\\nBut the memories of you, they never fade\\nLike a ghost in my heart, they're always there, oh\\n\\nOutro\\nI'll keep on dancing, with my eyes closed tight\\nTrying to escape the pain, and the longing of the night\\nBut the memories of you, they'll always stay\\nAnd I'll keep on moving, until I find my way back to you, someday.\\n\",\n", - " 'lyre_response': \"[Verse 1]\\nI'm in the kitchen, it's one o'clock in the morning\\nI'm not usually up this late, but I was drinking\\nAnd thinking 'bout you, and I got to say, I'm feeling\\nA little bit lonely, wishing you were here with me\\nIt's been a year today, since we last saw each other\\nOne whole year, I can't believe it's been that long\\nFeels like just yesterday, we were together\\nSoaking up the sun in the early morn\\nWell, I'm still sober, that's one good thing, I suppose\\nI'm not as messed up as I was before I met you\\nBut, now you're gone and I'm alone, so I may as well\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\n[Chorus]\\nTime keeps slowing down, I'm losing you more quickly\\nThan I'm losing my mind, please come back, otherwise\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\\n[Verse 2]\\nIn the room, it's spinning, I need to get some rest\\nI'm hoping that soon, I'll be able to forget you\\nSleep isn't coming, I'm staring at the ceiling, it's\\nBeen two years now, since we last saw each other\\nTwo whole years, I can't believe it's been that long\\nFeels like just yesterday, we were together\\nFighting against the world, trying to make it better\\nWell, I'm still alone, that's one thing that remains\\nAnd you're gone and I'm alone, so I may as well\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\nDance with somebody, so I close my eyes and\\n[Chorus]\\nTime keeps slowing down, I'm losing you more quickly\\nThan I'm losing my mind, please come back, otherwise\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\\nI'll be dancing with somebody, so I close my eyes and\",\n", - " 'id': 8473040},\n", - " {'name': 'IDGAF',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"(Verse 1)\\nI'm livin' my best life, ain't no one gonna tell me how\\nI'm runnin' this game, got my own flow, you know\\nI'm from the 6, but now I'm takin' over the world\\nGot my own label, got my own girl, she's a superstar\\nI don't care what they say, I'm the king of this game\\nGot my own style, got my own fame, ain't no one gonna claim\\n\\nI'm rockin' diamond bracelets, got my own private jet\\nGot my own mansion, got my own private jet\\nI'm the man of the hour, got my own empire\\nGot my own throne, got my own fire\\nI'm the king of the game, ain't no one gonna stop me\\nGot my own flow, got my own groove, you know\\n\\n(Chorus)\\nI'm livin' my best life, ain't no one gonna bring me down\\nI'm on top of the world, ain't no one gonna wear the crown\\nI'm unstoppable, ain't no one gonna stop me now\\nI'm the king of the game, ain't no one gonna bring me down\\n\\n(Verse 2)\\nI got my own crew, they all wear my crown\\nWe're takin' over the game, we're takin' it to the throne\\nI got my own rhymes, they all flow like a stream\\nI'm the king of the game, ain't no one gonna beat me\\nI'm the one they all know, I'm the one they all fear\\nI'm the king of the game, ain't no one gonna bring me down to tears\\n\\nI got my own style, got my own vibe\\nI'm the king of the game, ain't no one gonna take my life\\nI'm the one they all want to be, I'm the one they all want to see\\nI'm the king of the game, ain't no one gonna take my crown from me\\n\\n(Bridge)\\nI'm the king of the game, ain't no one gonna stop me now\\nI'm on top of the world, ain't no one gonna bring me down\\nI'm unstoppable, ain't no one gonna stop me now\\nI'm the king of the game, ain't no one gonna bring me down\\n\\n(Chorus)\\nI'm livin' my best life, ain't no one gonna bring me down\\nI'm on top of the world, ain't no one gonna wear the crown\\nI'm unstoppable, ain't no one gonna stop me now\\nI'm the king of the game, ain't no one gonna bring me down\\n\\n(Outro)\\nSo if you're feelin' me, let's raise our glasses high\\nWe're the kings of the game, we're takin' over the sky\\nWe're unstoppable, we're unbreakable, we're unforgettable\",\n", - " 'lyre_response': '[Intro]\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\n[Verse 1]\\nBrand new bottles, all white girls\\nAnd all the dudes are black in this club\\nAnd everybody got guns, and I\\'m like, why?\\nBut I got one too, so I\\'m not gon\\' get into that\\nThis pistol got diamonds on it, like Rihanna\\nYou know I\\'m the one who holds Toronto down\\nI\\'m in the club and I see someone I know\\nBut I\\'m not gon\\' talk to him, I hate that fucking nigga\\nAnd I don\\'t care what no one gotta say\\nI\\'m livin\\' my life, in the end, it\\'s not gonna go my way\\n[Pre-Chorus]\\nBut one thing\\'s for sure, bitch, I\\'m gonna pay\\nEverything in cash, yeah, I\\'m breakin\\' all the rules\\nYeah, I\\'m breakin\\' all the rules\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Chorus]\\nCause I don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Verse 2]\\nI got a problem with people that can\\'t do themselves\\nLike, how you gonna front on me then go home to a nigga\\nThat you love and he die, and now you stuck here with me\\nAnd all you can do is focus on what I\\'m wearin\\', like, \"Who did that?\"\\nBitch, I can\\'t even begin to count the number of times\\nThat I\\'ve had to do the double-take \\'cause you look like someone I used to date\\nAnd I just pretend that I never heard your voice or seen your face\\nBut it\\'s difficult \\'cause we seem to run in the same circles\\nAnd everybody seems to know that we don\\'t get along\\nBut that\\'s the reason why I\\'m so good at this song\\n[Pre-Chorus]\\nBut one thing\\'s for sure, bitch, I\\'m gonna pay\\nEverything in cash, yeah, I\\'m breakin\\' all the rules\\nYeah, I\\'m breakin\\' all the rules\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Chorus]\\nCause I don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Verse 3]\\nYeah, I got two pairs of twins, that\\'s eight kids total\\nAnd they all on Instagram, they all follow me\\nAnd they all got my back when people be hating\\n\\'Cause they know that I\\'m the one that\\'s gonna provide for them\\nYeah, I\\'m a daddy at heart, even though I\\'m young\\nI know that the role that I\\'m in, it\\'s not easy for everybody\\nBut I promise you this, if you stick with me, we gon\\' make it\\nAnd we gon\\' live a life that they can only dream of, like\\n[Pre-Chorus]\\nBut one thing\\'s for sure, bitch, I\\'m gonna pay\\nEverything in cash, yeah, I\\'m breakin\\' all the rules\\nYeah, I\\'m breakin\\' all the rules\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Chorus]\\nCause I don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\nI don\\'t wanna, I don\\'t wanna, I don\\'t wanna hurt no more\\nAnd I don\\'t wanna, I don\\'t wanna, I don\\'t wanna cry no more\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\nI\\'m livin\\' my life, I\\'m breakin\\' all the rules\\n[Outro]\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah, yeah, yeah\\nYeah, yeah, yeah',\n", - " 'id': 7451924},\n", - " {'name': 'Poet and Parade',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"Verse 1 (Poet)\\nI'm the king of the game, ain't no one touchin' me\\nGot my own lane, ain't no one in my seat\\nFast cars, fast life, ain't no time to chill\\nGot my own style, ain't no one killin' my thrill\\nI'm the one they all come to see, ain't no one in my league\\nGot my own flow, ain't no one stealin' my sheen\\nI'm the one they all know, ain't no one in my zone\\nGot my own swag, ain't no one takin' my throne\\n\\nChorus\\nI'm livin' my best life, ain't no one gonna bring me down\\nI'm on top of the world, ain't no one gonna wear this crown\\nI'm the king of the game, ain't no one gonna take my place\\nI'm the one they all know, ain't no one gonna break my face\\n\\nVerse 2 (Parade)\\nI'm the one they all love, ain't no one gonna stop me now\\nGot my own crew, ain't no one gonna bring me down\\nFast cars, fast life, we're takin' over town\\nGot my own sound, ain't no one gonna wear this crown\\nWe're the ones they all know, ain't no one gonna take our place\\nGot my own style, ain't no one gonna break this pace\\nWe're the kings of the game, ain't no one gonna take our throne\\n\\nChorus\\nWe're livin' our best lives, ain't no one gonna bring us down\\nWe're on top of the world, ain't no one gonna wear this crown\\nWe're the kings of the game, ain't no one gonna take our place\\nWe're the ones they all know, ain't no one gonna break our face\\n\\nBridge\\nWe're unstoppable, ain't no one gonna bring us down\\nWe're the kings of the game, ain't no one gonna wear this crown\\nWe're the ones they all know, ain't no one gonna take our place\\nWe're the kings of the game, ain't no one gonna take our throne\\n\\nOutro\\nWe're the ones they all know, ain't no one gonna bring us down\\nWe're the kings of the game, ain't no one gonna wear this crown\\nWe're the ones they all know, ain't no one gonna take our place\\nWe're the kings of the game, ain't no one gonna take our throne.\\n\",\n", - " 'lyre_response': \"[Intro Swae Lee]\\nUnreal, what is this?\\nI thought I was just dreaming, woo\\nI thought I was just dreaming\\n[Verse 1 Travis Scott]\\nI\\u2005am not\\u2005a poet, but I\\u2005fuck like one\\nUnprotected, no condom, my darling, I done fucked the encyclopedia\\nI done fucked her mother, sister and nieces, they all wanna have a threesome\\nI am invincible, no handcuffs, but my pants still have the holes for them\\nI done fucked your bitch, I done fucked your bitch's friends\\nI done fucked your bitch's mama, I done fucked your bitch's dog\\nI am invincible, they can't sue me, they can't sue me\\nI am invincible, I done fucked your bitch, I done fucked your bitch's sister\\nI done fucked your bitch's cousins, I done fucked your bitch's kids, oh yeah\\n[Pre-Chorus Travis Scott]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work, yeah\\n[Chorus Swae Lee]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work\\n[Verse 2 Travis Scott]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\n[Pre-Chorus Travis Scott]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work, yeah\\n[Chorus Swae Lee & \\nTravis Scott]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work [Bridge Swae Lee & \\nTravis Scott]\\nUh, I done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nUh, I done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work, yeah\\nUh, I done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nUh, I done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work\\n[Chorus Swae Lee]\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI done fucked your bitch while you was at work, yeah\\nI'm an ad-lib, motherfucker, work\\n[Outro Swae Lee]\\nI'm an ad-lib, motherfucker, work\",\n", - " 'id': 9117279},\n", - " {'name': 'Cool for the Summer',\n", - " 'artist': 'Demi Lovato',\n", - " 'llama_response': \"Verse 1\\nI've got a secret, it's oh so sweet\\nA summer fling that can't be beat\\nWe sneak around, just you and me\\nA taste for the cherry, that's all we need\\n\\nChorus\\nCool for the summer, we're living our best lives\\nNo strings attached, just fun and vibes\\nWe'll make memories, and we'll take the ride\\nCool for the summer, we'll be alright\\n\\nVerse 2\\nWe'll dance under the stars, and we'll play in the sun\\nOur love is temporary, but it's just begun\\nWe'll laugh and we'll love, and we'll have our way\\nCool for the summer, every single day\\n\\nChorus\\nCool for the summer, we're living our best lives\\nNo strings attached, just fun and vibes\\nWe'll make memories, and we'll take the ride\\nCool for the summer, we'll be alright\\n\\nBridge\\nWe'll take our time, and we'll make it last\\nWe'll cherish every moment, and we'll never look back\\nThis summer fling, it's the real deal\\nCool for the summer, it's the way we feel\\n\\nChorus\\nCool for the summer, we're living our best lives\\nNo strings attached, just fun and vibes\\nWe'll make memories, and we'll take the ride\\nCool for the summer, we'll be alright\\n\\nOutro\\nWe'll be cool for the summer, and we'll never say goodbye\\nWe'll keep on loving, until the end of time\\nA summer fling, that's the best of it\\nCool for the summer, we'll always be it.\\n\",\n", - " 'lyre_response': '[Intro]\\nCool for the summer\\nCool for the summer\\n[Verse 1]\\nI\\'m only interested in getting you off\\nI\\'ll make it worth your while so, so, so\\nWe can keep this just between us, yeah\\n\\'Cause I don\\'t want to ruin your reputation\\nAnd I\\'m sure as heck not looking for a relationship\\n[Pre-Chorus]\\nIt\\'s gonna be so simple\\nJust lovers in secret\\nIt\\'s gonna be so simple\\nBeing your type, huh\\n[Chorus]\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\n[Post-Chorus]\\nYeah, yeah, yeah\\nYeah, yeah, yeah\\n[Verse 2]\\nYou got that body for the summer\\nWe can livin\\' it up \\'cause, \\'cause, \\'cause\\nI don\\'t wanna hear you talkin\\' down\\nYourself, reposition your priorities\\nSay you wanna have some fun this summer\\nBefore you fall in love this winter [Pre-Chorus]\\nIt\\'s gonna be so simple\\nJust lovers in secret\\nIt\\'s gonna be so simple\\nBeing your type\\n[Chorus]\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\n[Post-Chorus]\\nYeah, yeah, yeah\\nYeah, yeah, yeah\\n[Refrain]\\nHe\\'s tryna make me his, but I\\'m (I\\'m)\\nJust tryna make you my (you my)\\nBaby, we can play a game of (summer)\\n\"I\\'m cool for the\"\\nSummer, summer, yeah\\n[Verse 3]\\nI don\\'t wanna fall in love this winter\\nI just wanna make it through the summer\\nWith a little fun and a little love\\nAnd you can be the one I do it with, huh\\n\\'Cause I\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\n[Chorus]\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\n[Post-Chorus]\\nYeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah\\nYeah, yeah, yeah\\n[Outro]\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer\\nI\\'m cool for the summer',\n", - " 'id': 2158461},\n", - " {'name': 'Hits Different',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI'm dancing through the night, trying to shake off the blues\\nBut every flashing light, every beat of the drum\\nPulls me back to you, like a ghost in my shoes\\nI'm lost in the haze, of memories so true\\n\\nChorus\\nIt hits different this time, like a punch in the heart\\n'Cause I genuinely loved you, from the very start\\nTrying to move on, but it's hard to let go\\nOf the one that I loved, and the life that we know\\n\\nVerse 2\\nMy friends are trying to cheer me up, with their laughter and their lies\\nBut I can't shake this feeling, like a shadow in my eyes\\nI'm trying to find my way, through the dark of the night\\nBut the ghosts of our past, keep me up in the fight\\n\\nChorus\\nIt hits different this time, like a punch in the heart\\n'Cause I genuinely loved you, from the very start\\nTrying to move on, but it's hard to let go\\nOf the one that I loved, and the life that we know\\n\\nBridge\\nI know I'll find my way, through the pain and the strife\\nBut for now, I'm stuck in this place, where I can't find my life\\nI'll keep on dancing, through the tears and the rain\\nAnd maybe someday, I'll find love again\\n\\nChorus\\nIt hits different this time, like a punch in the heart\\n'Cause I genuinely loved you, from the very start\\nTrying to move on, but it's hard to let go\\nOf the one that I loved, and the life that we know\\n\\nOutro\\nI'm fading away, in the neon lights of the night\\nBut I'll always remember, the love that we had in sight\\nIt hits different this time, like a punch in the heart\\nBut I'll keep on dancing, through the dark and the start.\\n\\nMusical Arrangement\\n\\n* The song should have a slow-building, introspective vibe, with a steady drumbeat and atmospheric synths in the background.\\n* The chorus should have a catchy, anthemic quality, with a soaring melody and a driving beat.\\n* The verses should have a more subdued, introspective feel, with a focus on storytelling and lyrical depth.\\n* The bridge should have a more emotional, reflective quality, with a simpler melody and a focus on the emotional impact of the lyrics.\\n* The song should have a mix of country and pop sensibilities, with a focus on storytelling and emotional authenticity.\\n\\nLyrical Themes\\n\\n* Heartbreak and personal growth\\n* The struggle to move on from a past relationship\\n* The impact of memories on the healing process\\n* The support of friends and loved ones during difficult times\\n* The search for meaning and purpose in the aftermath of a breakup.\\n\\nMelodic Ideas\\n\\n* The chorus should have a soaring, anthemic quality, with a catchy melody that sticks in the listener's head.\\n* The verses should have a more subdued, introspective feel, with a focus on storytelling and lyrical depth.\\n* The bridge should have a more emotional, reflective quality, with a simpler melody and a focus on the emotional impact of the lyrics.\\n* The song should have a mix of country and pop sensibilities, with a focus on storytelling and emotional authenticity.\\n\",\n", - " 'lyre_response': \"[Intro]\\nIt hits differently this time\\n[Verse 1]\\nI'm in a state of panic, trying to get by\\nOn my own, but I'm not really sure I can\\nI'm drinking my weight in red wine\\nJust to get you out of my head\\nIt hits differently this time\\n[Pre-Chorus]\\nI'm in a state of mind\\nWhen I'm not really sure what's real\\nI chased you out of my heart\\nNow you're gone and I'm left with this feeling\\n[Chorus]\\nIt hits differently this time\\nBecause you were the one\\nI genuinely lovеd\\nYeah, it hits differently this time\\n[Verse 2]\\nI'm in a state of peace, I'm doing just fine\\nI got a lot of great things going on in my life\\nI've got some amazing friends who are always there for me\\nI don't need you to feel alive (It hits differently this time)\\n[Pre-Chorus]\\nBut tonight, I'm in a state of mind\\nWhere I'm not really sure what's real\\nI see you in my drinks and I feel you on my skin\\nYou're everywhere I go, inside my head\\n[Chorus]\\nIt hits differently this time\\nBecause you were the one\\nI genuinely loved\\nYeah, it hits differently this time\\n[Bridge]\\nIt's been six months since we broke up\\nAnd I'm still not over it\\nThoughts of you keep haunting me\\nLike I can't shake it\\nIt hits differently this time\\n[Chorus]\\nIt hits differently this time\\nBecause you were the one\\nI genuinely loved\\nYeah, it hits differently this time\\nIt hits differently this time\\nBecause you were the one\\nI genuinely loved\\nYeah, it hits differently this time\",\n", - " 'id': 8461583},\n", - " {'name': '1 Thing About Me',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm the king of my own kingdom, ain't no one gonna tell me what to do\\nI'm unstoppable, my flow's like a river, it's true\\nI don't need no one's approval, I'm the one in control\\nMy confidence is unshakable, I'm on top of the roll\\n\\n(Chorus)\\nI'm a self-made man, ain't no one gonna bring me down\\nI'm unbreakable, my spirit's unbound\\nI won't be swayed by the haters, I'll keep on climbing high\\nMy loyalty is to myself, I won't be denied\\n\\n(Verse 2)\\nCritics try to bring me down, but I won't fall from grace\\nMy success is my own, I won't let anyone take my place\\nI'm a warrior, a fighter, I won't be held back by the past\\nMy future's bright, my heart is aglow, I won't be last\\n\\n(Chorus)\\nI'm a self-made man, ain't no one gonna bring me down\\nI'm unbreakable, my spirit's unbound\\nI won't be swayed by the haters, I'll keep on climbing high\\nMy loyalty is to myself, I won't be denied\\n\\n(Bridge)\\nI'm a lion in the wild, I won't be caged or tamed\\nMy spirit's untamed, my heart's on fire, I won't be named\\nI'll keep on fighting, I won't be held down\\nMy success is my own, I won't let anyone wear the crown\\n\\n(Verse 3)\\nI'm a force to be reckoned with, I won't be ignored\\nMy voice will be heard, my message will be blurred\\nI'll keep on rising, I won't be brought down\\nMy confidence is unshakable, I'm wearing my crown\\n\\n(Chorus)\\nI'm a self-made man, ain't no one gonna bring me down\\nI'm unbreakable, my spirit's unbound\\nI won't be swayed by the haters, I'll keep on climbing high\\nMy loyalty is to myself, I won't be denied\\n\\n(Outro)\\nI'm the master of my fate, I won't be controlled\\nMy destiny is mine, I won't be told\\nI'll keep on pushing, I won't be held back\\nMy success is my own, I won't be attacked.\\n\",\n", - " 'lyre_response': '[Intro Meek Mill]\\nI\\'m with my nigga, Travis Scott\\nI\\'m with my nigga, T-Minus\\nYou know, the kid that’s producing the beat\\nWe just vibe, I\\'m on the beat\\nHit the top, yeah, this shit sound good, don\\'t it?\\nLet\\'s hit the top, yeah, this shit sound good, don\\'t it?\\n[Verse 1 Travis Scott]\\nHey, if I got rich off of lean, what more could you ask for?\\nYou bitches on a shit list, you see who the real ones is\\nIf the feds hit the mansion, nigga, know I\\'m gonna be strapped\\nYou can\\'t count me out, no, not even if I\\'m smoking out the back\\nI don\\'t need you hoes, I need the cookie, you is just a pack\\nI be in my bag, I don\\'t need these bitches, all they do is attack\\nWhen it\\'s all said and done, nigga, know that I\\'m still gonna be strapped\\n[Refrain Travis Scott]\\nWhy would I give you loyalty when you ain\\'t give me any?\\nWhy would I trust you? You ain\\'t never trusted me\\nWhy would I give you loyalty when you ain\\'t give me any?\\nWhy would I trust you? You ain\\'t never trusted me\\n[Chorus Travis Scott]\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled [Verse 2 Travis Scott]\\nI\\'m a man of the people, can\\'t let my niggas go hungry\\nWe put the \"w\" in the words like swag and bossy\\nMe and my niggas get to the money, we don\\'t take a nappy\\nWe make the \"w\" in the words when we say savage and hungry\\nI don\\'t need you hoes, I need the cookie, you is just a pack\\nI be in my bag, I don\\'t need these bitches, all they do is attack\\nWhen it\\'s all said and done, nigga, know that I\\'m still gonna be strapped\\n[Refrain Travis Scott]\\nWhy would I give you loyalty when you ain\\'t give me any?\\nWhy would I trust you? You ain\\'t never trusted me\\nWhy would I give you loyalty when you ain\\'t give me any?\\nWhy would I trust you? You ain\\'t never trusted me\\n[Chorus Travis Scott]\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled, I can\\'t be controlled\\nI can\\'t be controlled [Outro Meek Mill & \\nTravis Scott]\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nThat you can\\'t be controlled, that you can\\'t be controlled\\nYou can\\'t be controlled, you can\\'t be controlled\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nThat you can\\'t be controlled, that you can\\'t be controlled\\nYou can\\'t be controlled, you can\\'t be controlled\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nIt\\'s a new rule, it\\'s a new rule\\nThat you can\\'t be controlled, that you can\\'t be controlled\\nYou can\\'t be controlled, you can\\'t be controlled',\n", - " 'id': 2016798},\n", - " {'name': 'Am I Dreaming',\n", - " 'artist': 'Pitbull',\n", - " 'llama_response': \"(Verse 1)\\nI've been through the fire, felt the flames so high\\nBut I won't let it break me, no, I won't say die\\nI've been knocked down, but I'm still on my feet\\nGot my eyes on the prize, can't be beat\\n\\nI've seen the darkest nights, but I won't give in\\nGonna rise above, gonna make my dreams spin\\nI'm a survivor, ain't no one gonna bring me down\\nI'm a warrior, I'm wearing my crown\\n\\n(Chorus)\\nAre you feeling me? Are you feeling the pain?\\nAre you ready to rise? Are you ready to sustain?\\nWe ain't gonna stop, we ain't gonna give in\\nWe're gonna keep pushing, we're gonna win\\n\\n(Verse 2)\\nI grew up in the streets, but I learned to fight\\nI ain't never been broken, I ain't never been beat\\nI got my roots in the ground, my community by my side\\nWe're gonna make it through, we're gonna reach the other side\\n\\nI've seen the best of times, I've seen the worst\\nBut I'm still standing, I'm still on the quest\\nI won't give up, I won't give in\\nI'm gonna keep pushing, I'm gonna win\\n\\n(Bridge)\\nSo if you're feeling lost, if you're feeling alone\\nJust know you're not the only one who's feeling that way\\nWe're all in this together, we're all in the same boat\\nBut we ain't gonna sink, we ain't gonna float\\n\\n(Chorus)\\nAre you feeling me? Are you feeling the pain?\\nAre you ready to rise? Are you ready to sustain?\\nWe ain't gonna stop, we ain't gonna give in\\nWe're gonna keep pushing, we're gonna win\\n\\n(Outro)\\nSo when you're feeling down, when you're feeling blue\\nJust remember these words, just remember what I've been through\\nKeep pushing forward, keep pushing through\\nWe're gonna make it, we're gonna make it through.\\n\",\n", - " 'lyre_response': \"[Intro]\\nMr. Worldwide – I'm back again\\nMr. Worldwide – I'm back again\\nI'm back again, yeah, yeah\\n[Verse 1]\\nMr. Worldwide – I'm back again\\nMr. Worldwide – I'm back again\\nI'm back again, yeah\\nIt's been a while since I did it my way\\nBut now I'm back in the game, yeah\\nI'm feelin' like Michael, Jordan in '97\\nThat's why I'm back again, yeah, yeah\\n[Chorus]\\nIs anybody out there?\\nIs anybody out there?\\nI'm feelin' so overwhelmed, feelin' so beat\\nIs anybody out there?\\n(Is anybody out there?)\\n[Bridge]\\nOh-oh-oh-oh\\nOh-oh-oh-oh\\nIs anybody out there?\\n[Verse 2]\\nMr. Worldwide – I'm back again\\nMr. Worldwide – I'm back again\\nI'm back again, yeah\\nI was just a young boy from the ghetto\\nI had some haters, but I stayed true to myself\\nLook, I'm back again, yeah, yeah\\n[Chorus]\\nIs anybody out there?\\nIs anybody out there?\\nI'm feelin' so overwhelmed, feelin' so beat\\nIs anybody out there?\\n(Is anybody out there?)\\n[Bridge]\\nOh-oh-oh-oh\\nOh-oh-oh-oh\\nIs anybody out there?\\n[Verse 3]\\nMr. Worldwide – I'm back again\\nMr. Worldwide – I'm back again\\nI'm back again, yeah\\nI'm talkin' to you, my Cuban culture\\nI'm talkin' to you, my Puerto Rican brothers\\nI'm talkin' to you, my Mexican brothers and sisters\\nI'm talkin' to you, my Honduran, my Guatemalan, my Mexican, my Dominican\\nI'm back again, yeah\\n[Chorus]\\nIs anybody out there?\\nIs anybody out there?\\nI'm feelin' so overwhelmed, feelin' so beat\\nIs anybody out there?\\n(Is anybody out there?)\\n[Outro]\\nOh-oh-oh-oh\\nOh-oh-oh-oh\\nIs anybody out there?\\nIs anybody out there?\\nOh-oh-oh-oh\\nOh-oh-oh-oh\\nIs anybody out there?\\n(Is anybody out there?)\",\n", - " 'id': 9151365},\n", - " {'name': 'Chemical',\n", - " 'artist': 'Post Malone',\n", - " 'llama_response': \"(Verse 1)\\nI'm smokin' in the car, feelin' like a star\\nYou by my side, we're chasin' that high\\nBut it's a vicious cycle, we're stuck in this war\\nFightin' at the bar, but we can't stop the score\\n\\nChemicals in my veins, they keep me on the line\\nCan't escape the pull, it's like a crime\\nEvery time we kiss, it's like a loaded gun\\nI know I'll be back, but I can't stop runnin'\\n\\n(Chorus)\\nWe're caught in a love that's addictive and cold\\nA high that's killin' us, but we can't let go\\nWe're drownin' in a sea of emotions so bold\\nBut we're stuck in this cycle, can't seem to break the hold\\n\\n(Verse 2)\\nI see the signs, but I can't stop the pain\\nYou're my drug of choice, my heart's in flames\\nI know I'll lose myself, but I can't help but play\\nThe game of love, where we're both the winners and the fray\\n\\nFumes fill the air, we're both on fire\\nBut we can't stop the desire, it's like a burning desire\\nWe're trapped in this hell, but we can't retire\\nFrom this love that's killin' us, but we can't ignore\\n\\n(Chorus)\\nWe're caught in a love that's addictive and cold\\nA high that's killin' us, but we can't let go\\nWe're drownin' in a sea of emotions so bold\\nBut we're stuck in this cycle, can't seem to break the hold\\n\\n(Bridge)\\nI know I'll lose myself, but I can't help but stay\\nIn this love that's killin' us, but it's the only way\\nWe're caught in a web of desire and pain\\nBut we can't stop the love, it's like a burning flame\\n\\n(Verse 3)\\nWe're fightin' at the bar, but we can't stop the fight\\nWe're caught in a love that's addictive and dark of night\\nWe're drownin' in a sea of emotions so bright\\nBut we're stuck in this cycle, can't seem to break the light\\n\\nChemicals in our veins, they keep us on the run\\nCan't escape the love, it's like a loaded gun\\nEvery time we kiss, it's like a loaded gun\\nI know I'll be back, but I can't stop runnin'\\n\\n(Chorus)\\nWe're caught in a love that's addictive and cold\\nA high that's killin' us, but we can't let go\\nWe're drownin' in a sea of emotions so bold\\nBut we're stuck in this cycle, can't seem to break the hold\\n\\n(Outro)\\nWe're stuck in this love, but we can't stop the pain\\nA high that's killin' us, but we can't help but play\\nThe game of love, where we're both the winners and the fray\\nBut we're stuck in this cycle, can't seem to break the hold.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOoh, ooh, ooh, ooh\\nOoh, ooh, ooh, ooh\\n[Verse 1]\\nYou're at the bar with me, fuckin' somethin' to feel good, right?\\nHavin' a party 'cause you're my girl, I know that I can be a dick, right?\\nWe startin' to fight, at the bar, right next to the viking\\nSmokin' in the car, \\nI'm fuckin' your brain right\\n, right?\\n[Pre-Chorus]\\nI'm sorry I'm hangin' out with my ex\\nLate night textin', don't know why I'm stressin' out\\nYou're the one that I love, I put you through so much\\nI know you don't like it, but I'm not enough\\n[Chorus]\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\\n[Verse 2]\\nYou're so crazy, baby, when you're faded, you're amazing\\nWhen we're together, I feel like I'm the only one, you're lovin'\\nYou get jealous, baby, when somebody's around, you're hatin'\\nYou get drunk, I get drunk, and we fuckin' love makin' up\\n[Pre-Chorus]\\nI'm sorry I'm hangin' out with my ex\\nLate night textin', don't know why I'm stressin' out\\nYou're the one that I love, I put you through so much\\nI know you don't like it, but I'm not enough\\n[Chorus]\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\\n[Bridge]\\nI'm a slave to the chemicals You're the one that I love\\nI'm a slave to the chemicals You're the one that I love\\n[Chorus]\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\\nChemicals, yeah, they control me\\nI'm a slave to the chemicals\",\n", - " 'id': 9006590},\n", - " {'name': 'Need',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI remember the first time I saw your face,\\nA thousand prickles on my neck, a racing heart in place.\\nI knew in that moment, I'd never be the same,\\nYou ignited a fire that couldn't be tamed.\\n\\nChorus\\nOh, the way you make me feel, it's like a drug,\\nI can't resist the pull, it's a dangerous love.\\nI want to be with you, more than anything,\\nBut the fear of losing you, it keeps me up at night.\\n\\nVerse 2\\nYour touch, it sets my soul on fire,\\nI'm consumed by the flames, I can't retire.\\nEvery moment with you, it feels like a crime,\\nI'm addicted to the high, I can't decline.\\n\\nChorus\\nOh, the way you make me feel, it's like a drug,\\nI can't resist the pull, it's a dangerous love.\\nI want to be with you, more than anything,\\nBut the fear of losing you, it keeps me up at night.\\n\\nBridge\\nI know we're walking a fine line,\\nBut I can't help myself, I'm blinded by your shine.\\nI need you more than I need to breathe,\\nAnd I know I'll never be complete, without your love.\\n\\nChorus\\nOh, the way you make me feel, it's like a drug,\\nI can't resist the pull, it's a dangerous love.\\nI want to be with you, more than anything,\\nBut the fear of losing you, it keeps me up at night.\\n\\nOutro\\nI'm caught in a web of desire,\\nAfraid to let go, but I can't survive.\\nThe way you make me feel, it's like a dream,\\nA dangerous love that I can't seem to break.\\n\\nMusical Arrangement\\n\\n* Soft, intimate verses with acoustic guitar and piano, gradually building to a powerful, emotional chorus with a fuller sound, including electric guitar, drums, and strings.\\n* A mix of minor and major chords to convey the complexity of emotions, with a focus on the chorus's soaring, anthemic quality.\\n* A driving rhythm to match the confessional tone and sense of urgency.\\n* Vocal harmonies and ad-libs to add depth and texture to the song.\\n\\nLyrical Themes\\n\\n* Emotional attachment and the distinction between want, desire, passion, and need.\\n* The intensity of a romantic relationship, using vivid imagery and physical sensations to convey the experience.\\n* Fear and danger as obstacles that heighten the sense of need for the other person.\\n* The addictive nature of the relationship and the difficulty of letting go.\",\n", - " 'lyre_response': \"[Intro]\\nCigarette smoke on your breath\\nThe smell of whiskey on your wrist\\nYou trace it back to where it all went wrong\\nBut I didn't know, I was just a kid\\n[Verse 1]\\nI was walking home alone\\nYou caught up to me in the dark\\nI felt your hands on my body\\nAnd I couldn't fight it, it was too late\\nYou're holdin' me close, I can feel your heart beatin'\\nI'm lost in your eyes, like an island in the sea\\n[Pre-Chorus]\\nI don't want to need you like I breathe\\nI don't want to feel this way\\nBut I don't know how to love if I can't love you\\nAnd I'd rather burn than let you go\\n[Chorus]\\nI'm hopeless,\\n \\nI'm speechless\\nI'm selfless\\nI'm endless\\nI'm breathless\\nAnd irreversible like a car\\nEaveling off a cliff\\nI'm wild and uncontrollable\\nLike a tidal wave\\nI'm your largest, I'm your smallest\\nDesire\\n [Verse 2]\\nYou put your hands on me\\nLike you've got a right\\nTo touch me, like you're entitled\\nSay it with your hands, what your mouth can't say\\nI love the way you know just what to do\\nTo make me feel like I'm the only one\\nWho exists in this entire world\\n[Pre-Chorus]\\nI don't want to need you like I breathe\\nI don't want to feel this way\\nBut I don't know how to love if I can't love you\\nAnd I'd rather burn than let you go\\n[Chorus]\\nI'm hopeless,\\n \\nI'm speechless\\nI'm selfless\\nI'm endless\\nI'm breathless\\nAnd irreversible like a car\\nEaveling off a cliff\\nI'm wild and uncontrollable\\nLike a tidal wave\\nI'm your largest, I'm your smallest\\nDesire [Bridge]\\nAll I want is the touch\\nOf your skin on my skin\\nAll I need is your love\\nTo feel it within\\nIf this is a dream, I don't wanna wake up\\nIf you don't really love me, I'm gonna go crazy\\n[Chorus]\\nI'm hopeless,\\n \\nI'm speechless\\nI'm selfless\\nI'm endless\\nI'm breathless\\nAnd irreversible like a car\\nEaveling off a cliff\\nI'm wild and uncontrollable\\nLike a tidal wave\\nI'm your largest, I'm your smallest\\nDesire\",\n", - " 'id': 5651836},\n", - " {'name': 'Don’t Front',\n", - " 'artist': 'Eminem',\n", - " 'llama_response': \"(Verse 1)\\nYo, listen up, I got a story to tell\\n'Bout a kid from Detroit, who was struggling to sell\\nHis rhymes and his passion, but the industry was cold\\nTried to break in, but they didn't want him to hold\\n\\nBut he didn't give up, no way, he kept on grinding\\nLearned from the greats, like Marley and Rakim finding\\nHis style and his voice, a unique sound in the fray\\nNow he's a respected name, in the rap game today\\n\\n(Chorus)\\nI'm the real deal, ain't no denying\\nMy flow's so sick, it'll make you wanna buy\\nMy rhymes are fire, they'll leave you in awe\\nI'm the king of the game, and I'm here to show\\n\\n(Verse 2)\\nI paid my dues, I fought through the struggles\\nHaters and doubters, but I never doubted my juggles\\nKept my head up, kept on pushing\\nNow I'm on top, and my legacy is gushing\\n\\nFrom the underground to the mainstream\\nI've made my mark, and my name is gleaming\\nI've collaborated with the best of the best\\nAnd I've paved the way, for the next to pass the test\\n\\n(Chorus)\\nI'm the real deal, ain't no denying\\nMy flow's so sick, it'll make you wanna buy\\nMy rhymes are fire, they'll leave you in awe\\nI'm the king of the game, and I'm here to show\\n\\n(Verse 3)\\nI'm a fighter, I never back down\\nI'll keep on rapping, until my legacy is crowned\\nI've been through the fire, and I've come out the other side\\nNow I'm here to inspire, and make the world feel alive\\n\\nI'm a product of my past, but I'm not defined\\nBy the struggles I've faced, I'm a survivor, not a victim\\nI'm a master of words, a magician with rhymes\\nI'm the voice of the streets, and I'm here to shine\\n\\n(Chorus)\\nI'm the real deal, ain't no denying\\nMy flow's so sick, it'll make you wanna buy\\nMy rhymes are fire, they'll leave you in awe\\nI'm the king of the game, and I'm here to show\\n\\n(Bridge)\\nI'm not just a rapper, I'm a movement too\\nMy rhymes are a call to action, for the youth to do\\nWhat they want to do, and be who they want to be\\nI'm a symbol of hope, for the oppressed to be free\\n\\n(Chorus)\\nI'm the real deal, ain't no denying\\nMy flow's so sick, it'll make you wanna buy\\nMy rhymes are fire, they'll leave you in awe\\nI'm the king of the game, and I'm here to show\\n\\n(Outro)\\nSo listen up, y'all, I hope you understand\\nThis is my story, this is my hand\\nI'm the real deal, and I'm here to stay\",\n", - " 'lyre_response': \"[Intro]\\nYeah, it's that time again, man\\nI think I'm bout to lose my mind, man\\nI've been going through a lot of stuff\\nAnd I don't know, man (Haha)\\nBut I'ma get up today\\nI'ma get up today\\nI'ma get up today\\nI'ma get up today\\nI'ma get up today\\nI'ma get up today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up today (Who?)\\nI'ma get up today\\nI'ma get up today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up today\\n[Verse 1]\\nI'ma get up today\\nI'ma get up like Jake today\\nI'ma get up like Jake today\\nI'ma get up today\\nI'ma get up like Jake today\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up today (Who?)\\nI'ma get up like Jake today\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up today\\nI'ma get up like Jake today\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up today (I'ma get up today)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today\\nI'ma get up today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I'ma get up today)\\nI'ma get up like Jake today (Who?)\\nI'ma get up like Jake today (I\",\n", - " 'id': 252542},\n", - " {'name': 'Snow On The Beach',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1 (Taylor)\\nIn a world that's full of strange and wondrous sights,\\nI never expected to find my heart's delight.\\nBut here you are, shining like a fleeting light,\\nAnd I can't help but feel the magic of your sight.\\n\\nChorus (Taylor and Lana)\\nLove on the beach, snow in the air,\\nA surreal dream that we can't help but share.\\nAn unlikely pair, but our hearts collide,\\nIn this beautiful, strange, and wild ride.\\n\\nVerse 2 (Lana)\\nI've seen the world in all its beauty and despair,\\nBut never have I felt the kind of love that's fair.\\nYou're like a work of art, a masterpiece in flight,\\nAnd I'm just a humble soul, trying to make it right.\\n\\nChorus (Taylor and Lana)\\nLove on the beach, snow in the air,\\nA surreal dream that we can't help but share.\\nAn unlikely pair, but our hearts collide,\\nIn this beautiful, strange, and wild ride.\\n\\nBridge (Taylor)\\nWe're like two worlds that never meant to meet,\\nBut here we are, in this beautiful defeat.\\nWe're chasing hope, we're chasing love,\\nIn this crazy, beautiful, endless drive.\\n\\nChorus (Taylor and Lana)\\nLove on the beach, snow in the air,\\nA surreal dream that we can't help but share.\\nAn unlikely pair, but our hearts collide,\\nIn this beautiful, strange, and wild ride.\\n\\nPost-Chorus (Lana)\\nSnow on the beach, it's a strange delight,\\nA beauty that's hard to define, but feels just right.\\nIt's like the stars in the sky, shining bright and free,\\nA love that's unexpected, but meant to be.\\n\\nOutro (Taylor and Lana)\\nIn this strange and beautiful world we live in,\\nLove knows no bounds, it's a magic within.\\nSo let's embrace the strange and the wild,\\nAnd let our hearts collide, in this beautiful, surreal ride.\\n\",\n", - " 'lyre_response': \"[Intro Taylor Swift]\\nI saw you and I\\nKnew that it was futile\\nTrying to fly, so I gave it up\\nTook off from the ground\\nAnd I felt weightless\\nAs I followed you down\\n[Verse 1 Taylor Swift]\\nYou know I've been so lost, and you know it\\nYou know I've been so lost, and you know it\\nYou know I've been so lost, and you know it\\nBut when you look at me\\nLike you know what you're looking for\\nAnd you know I can give it to you\\nIn this fleeting life\\n[Pre-Chorus Taylor Swift]\\nFleeting lights, and you said\\nSnow at the beach, and you said\\nAurora borealis\\nI've never seen anything like it, oh\\n[Chorus Taylor Swift]\\nYou're like white snow and I'm the beach\\nWe're both opposite foes, yet somehow you and I can meet\\nAnd it's unnatural, you're so bitter and I'm so sweet\\nAnd it's unnatural, you're so white and I'm so clean\\nAnd it's unlikely we'll ever meet\\nLet's hope it snows tonight\\n[Post-Chorus Both, (Taylor Swift)]\\nSnow on the beach\\nSnow on the beach\\n Oh\\nSnow on the beach\\nSnow on the beach\\n Today [Verse 2 Lana Del Rey]\\nCandy in color, taking me under\\nYour love is like a drug, taking me over\\nSomeday, when I'm wiser, I'll understand it\\nBut for now, just hold me like you own me\\nForget all your lovers, I could be your forever\\nYou know that I'm a overachiever, so I'll say it\\nEven if it's wrong, I'll do it my way\\n[Pre-Chorus Lana Del Rey]\\nFleeting lights, and I said\\nSnow at the beach, and I said\\nAurora borealis\\nNever seen anything like it, oh\\n[Chorus Lana Del Rey & (Taylor Swift)]\\nYou're like white snow and I'm the beach\\nWe're both opposite foes, yet somehow you and I can meet\\nAnd it's unnatural, you're so bitter and I'm so sweet\\nAnd it's unnatural, you're so white and I'm so clean\\nAnd it's unlikely we'll ever meet\\nLet's hope it snows tonight\\n[Post-Chorus Both, (Lana Del Rey)]\\nSnow on the beach\\nSnow on the beach\\n Oh\\nSnow on the beach\\nSnow on the beach\\n Today\\n[Bridge Lana Del Rey & (Taylor Swift)]\\nCandy in color, taking me under\\nYour love is like a drug, taking me over\\nForget all your lovers, I could be your forever\\nYou know that I'm a overachiever, so I'll say it\\nEven if it's wrong, I'll do it my way\\nCareful with me, I could be the death of you\\nSo let's make the day last, oh\\n[Chorus Taylor Swift & Lana Del Rey, (Taylor Swift)]\\nYou're like white snow and I'm the beach\\nWe're both opposite foes, yet somehow you and I can meet\\nAnd it's unnatural, you're so bitter and I'm so sweet\\nAnd it's unnatural, you're so white and I'm so clean\\nAnd it's unlikely we'll ever meet\\nLet's hope it snows tonight\\n[Outro Lana Del Rey, (Taylor Swift)]\\nSnow on the beach\\nSnow on the beach\\nOh\",\n", - " 'id': 8445376},\n", - " {'name': 'Two Out',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm livin' my best life, ain't no regrets\\nFlyin' high, got my feet on the pedals\\nGot a whole stable of cars, they all lookin' fresh\\nBentleys, Benzes, and them fancy exotic things\\n\\nGot a mansion in the hills, it's straight outta a movie\\nLavish lifestyle, ain't no tellin' lies\\nGot a bad bitch on my arm, she gotta keep up\\nGot my own jet, ain't no waitin' in line\\n\\n(Chorus)\\nI'm livin' my best life, ain't no stoppin' me\\nI'm on top of the world, feelin' invincible\\nGot my champagne on ice, got my money on me\\nI'm the king of the game, ain't no one gonna stop me\\n\\n(Verse 2)\\nI'm drippin' in diamonds, got my hair on fleek\\nGot my own private party, it's always a repeat\\nGot my ad-libs on point, got my sound effects right\\nGot my own label, it's takin' off tonight\\n\\nGot a private jet, it's takin' me far away\\nGot my own private island, it's where I wanna stay\\nGot my own private chef, he cookin' up the best\\nGot my own private bar, got the drinks on the quest\\n\\n(Chorus)\\nI'm livin' my best life, ain't no stoppin' me\\nI'm on top of the world, feelin' invincible\\nGot my champagne on ice, got my money on me\\nI'm the king of the game, ain't no one gonna stop me\\n\\n(Bridge)\\nI'm on the road to riches, ain't no turnin' back\\nGot my own private army, they always on the attack\\nGot my own private bank, it's where I keep my dough\\nGot my own private life, it's where I wanna be\\n\\n(Verse 3)\\nI'm the king of the trap game, ain't no one takin' my throne\\nGot my own private kingdom, it's where I call my home\\nGot my own private army, they always on the grind\\nGot my own private empire, it's where I wanna shine\\n\\nGot my own private jet, it's takin' me far away\\nGot my own private island, it's where I wanna stay\\nGot my own private chef, he cookin' up the best\\nGot my own private bar, got the drinks on the quest\\n\\n(Chorus)\\nI'm livin' my best life, ain't no stoppin' me\\nI'm on top of the world, feelin' invincible\\nGot my champagne on ice, got my money on me\\nI'm the king of the game, ain't no one gonna stop me\\n\\n(Outro)\\nI'm the one and only, ain't no one touchin' me\\nGot my own private life, it's where I wanna be\\nGot my own private world, it's where I wanna stay\\nGot my own private kingdom, it's where I'm gonna play.\\n\",\n", - " 'lyre_response': \"[Intro Lil Uzi Vert]\\nWho made this beat?\\nPlayboi Carti\\nOh, yeah\\nYeah, yeah\\nP, what you wanna do?\\nDrive a Wraith, no durag\\nHit that oil, yeah, my skin dark\\nAlright\\n[Chorus Lil Uzi Vert & \\nPlayboi Carti]\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\n[Verse 1 Playboi Carto]\\nGo, go, go, go, go, go, go (Yeah)\\nBad bitch, she wanna fuck me (She do)\\nI got a lot of dick in her (I do)\\nGot a lot of ass in her (I do)\\nBrand new whip just for her (It is)\\nShe gettin' money with her (She do)\\nCross me, get revived (You won't)\\nI got heat, no relief (I do)\\nI got drip, it get wet (It do)\\nI got slatt, can't step (I do)\\nI got cash, can't leave (I do)\\nThey know not to mess with me (They don't)\\n[Chorus Lil Uzi Vert & \\nPlayboi Carti]\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\n[Verse 2 Lil Uzi Vert]\\nI got a lot of ass in her (I do)\\nBad bitch, she wanna fuck me (She do)\\nGettin' money, she (She do)\\nCross me, get revived (You won't)\\nI got drip, it get wet (It do)\\nI got a lot of sip in her (I do)\\nI got cash, can't leave (I do)\\nI got heat, no relief (I do)\\nI gotta get out this town (I do)\\nI gotta, gotta get out this town (I do)\\n[Chorus Lil Uzi Vert & \\nPlayboi Carti]\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\n[Verse 3 Playboi Carti]\\nGo, go, go, go, go, go, go (Yeah)\\nBad bitch, she wanna fuck me (She do)\\nI got a lot of dick in her (I do)\\nGot a lot of ass in her (I do)\\nNew whip just for her (It is)\\nShe gettin' money with her (She do)\\nShe gettin' money from me (She do)\\nShe love to spend money (She do)\\nShe love to count money (She do)\\nShe love to count money with me (She do)\\n[Chorus Lil Uzi Vert & \\nPlayboi Carti]\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\nWe like the Carbon, don't play with the carbon Woo\\n[Outro Lil Uzi Vert]\\nYeah, yeah\\nAlright\\nWe like the Carbon, don't play with the carbon (Woo)\\nWe like the Carbon, don't play with the carbon\",\n", - " 'id': 8946762},\n", - " {'name': 'Keep Going Up',\n", - " 'artist': 'Justin Timberlake',\n", - " 'llama_response': \"(Verse 1)\\nI used to be stuck in a rut, feeling like I'm not enough\\nBut then I found my fire, and my heart started to pump\\nI started to grow, and I learned to love myself\\nNow I'm on the rise, and I won't stop until I reach my wealth\\n\\n(Chorus)\\nI'm upgrading my life, one step at a time\\nI'm feeling alive, and I'm feeling fine\\nI'm letting go of the past, and I'm moving on up\\nI'm upgrading my life, and I won't stop until I reach the top\\n\\n(Verse 2)\\nI used to be held back, by the chains of my fears\\nBut now I'm breaking free, and I'm shedding all my tears\\nI'm standing tall, and I'm facing the light\\nI'm upgrading my life, and I'm feeling alive tonight\\n\\n(Chorus)\\nI'm upgrading my life, one step at a time\\nI'm feeling alive, and I'm feeling fine\\nI'm letting go of the past, and I'm moving on up\\nI'm upgrading my life, and I won't stop until I reach the top\\n\\n(Bridge)\\nI'm not the same person, that I used to be\\nI'm stronger and wiser, and I'm feeling free\\nI'm on a journey of growth, and I won't stop until I'm the best\\nI'm upgrading my life, and I'm feeling blessed\\n\\n(Chorus)\\nI'm upgrading my life, one step at a time\\nI'm feeling alive, and I'm feeling fine\\nI'm letting go of the past, and I'm moving on up\\nI'm upgrading my life, and I won't stop until I reach the top\\n\\n(Interlude)\\nI'm feeling alive, and I'm feeling free\\nI'm on a journey of growth, and I won't stop until I'm the best\\nI'm upgrading my life, and I'm feeling blessed\\n\\n(Verse 3)\\nI used to be lost, but now I'm found\\nI used to be down, but now I'm standing proud\\nI used to be afraid, but now I'm feeling brave\\nI'm upgrading my life, and I won't stop until I reach the top\\n\\n(Chorus)\\nI'm upgrading my life, one step at a time\\nI'm feeling alive, and I'm feeling fine\\nI'm letting go of the past, and I'm moving on up\\nI'm upgrading my life, and I won't stop until I reach the top\\n\\n(Outro)\\nI'm feeling alive, and I'm feeling free\\nI'm on a journey of growth, and I won't stop until I'm the best\\nI'm upgrading my life, and I'm feeling blessed\\nI'm reaching for the stars, and I won't stop until I reach the top.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't slack, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\nDon't slack, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\n[Verse 1]\\nNow I'm on the move, got my groove\\nFeel my heart beating, got my fix of you\\nGetting stronger, getting faster\\nSee my future, getting brighter\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\n[Chorus]\\nI'm upgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nUpgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\n[Post-Chorus]\\n(Don't slack, get back, get back, get back, get back, get back)\\nGet back, get back, get back, get back, get back, get back\\n(Don't slack, get back, get back, get back, get back, get back)\\nGet back, get back, get back, get back, get back, get back\\n(Get back, get back, get back, get back, get back, get back)\\nDon't slack, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\n[Interlude]\\nYou didn't think your boy Timbaland would let you put out a album without no interlude, did you?\\nI mean come on, this is my shit\\n[Verse 2]\\nGet back, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\nDon't slack, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\n[Chorus]\\nI'm upgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nUpgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\n[Post-Chorus]\\n(Don't slack, get back, get back, get back, get back, get back)\\nGet back, get back, get back, get back, get back, get back\\n(Don't slack, get back, get back, get back, get back, get back)\\nGet back, get back, get back, get back, get back, get back\\n(Get back, get back, get back, get back, get back, get back)\\nDon't slack, get back, get back, get back, get back, get back\\nGet back, get back, get back, get back, get back, get back\\n[Interlude]\\nYou didn't think your boy Timbaland would let you put out a album without no interlude, did you?\\nI mean come on, this is my shit\\n[Chorus]\\nI'm upgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nUpgrading, upgrading\\nThis is my life, I'm upgrading\\nThis is my life, I'm upgrading\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\\nI can see it coming, getting closer\",\n", - " 'id': 9452460},\n", - " {'name': 'AMERICA HAS A PROBLEM (Remix)',\n", - " 'artist': 'Beyonce',\n", - " 'llama_response': \"Verse 1 (Beyonce)\\nI'm the queen of the game, I'm on top of the throne\\nMaking moves that'll make you wanna know my name\\nFrom the penthouse to the mansion, I'm living large\\nWith my cake and my champagne, I'm in charge\\n\\nChorus\\nI'm a self-made success, I'm on the rise\\nI'm the one they all fear, I'm the one they all prize\\nI've got the power, I've got the wealth\\nI'm the boss, I'm the queen, I'm the health\\n\\nVerse 2 (Kendrick Lamar)\\nI'm the king of the streets, I'm the one they all know\\nMaking moves that'll make you wanna go slow\\nFrom the hood to the penthouse, I'm on the rise\\nWith my rhymes and my flow, I'm in disguise\\n\\nChorus\\nI'm a self-made success, I'm on the rise\\nI'm the one they all fear, I'm the one they all prize\\nI've got the power, I've got the wealth\\nI'm the boss, I'm the queen, I'm the health\\n\\nBridge\\nI'm the voice of the streets, I'm the voice of the game\\nI'm the one they all listen to, I'm the one they all claim\\nI'm the master of my fate, I'm the captain of my soul\\nI'm the one they all want to be, I'm the one they all want to know\\n\\nChorus\\nI'm a self-made success, I'm on the rise\\nI'm the one they all fear, I'm the one they all prize\\nI've got the power, I've got the wealth\\nI'm the boss, I'm the queen, I'm the health\\n\\nOutro (Beyonce)\\nI'm the queen of the game, I'm on top of the throne\\nMaking moves that'll make you wanna know my name\\nFrom the penthouse to the mansion, I'm living large\\nWith my cake and my champagne, I'm in charge.\\n\\nMusical Arrangement\\nThe song should have a modern, hip-hop feel, incorporating trap influence to back the commanding vocals. The instrumental should include a blend of synths, 808s, and live instruments to create a dynamic and catchy sound. The beat should be energetic and uplifting, with a strong, driving rhythm that complements the confident and assertive vibe of the lyrics. The song should build in intensity throughout the verses and choruses, with a particularly powerful and anthemic chorus that showcases the full range of Beyonce's vocal abilities.\\n\\nThe featured verse from Kendrick Lamar should add depth and complexity to the song, with clever wordplay and double entendres that complement the themes of wealth, desire, and influence. Kendrick's verse should have a gritty, streetwise feel, with a focus on the hustle and grind that lies at the heart of the song's message.\\n\",\n", - " 'lyre_response': \"[Intro Beyonce]\\nI want you to feel inspired by my success\\nI worked so hard for everythin' I want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\n[Verse 1 Beyonce]\\nI want you to bow down to my success\\nI worked so hard for everythin' I want you to bow down to my success\\nI worked so hard for everything\\nI want you to bow down to my success\\nI worked so hard for everything\\n[Pre-Chorus Beyonce]\\nI'm gonna put gold in my fillings\\nI'm gonna fly in my daddy's private jet\\nI'm gonna let you spend the night\\nIf you can prove that you're worth it, baby\\n[Chorus Beyonce]\\nI want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\n[Post-Chorus Beyonce]\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen\\n[Verse 2 Beyonce]\\nI want you to feel inspired by my success\\nI worked so hard for everythin' I want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\n[Pre-Chorus Beyonce]\\nI'm gonna put gold in my fillings\\nI'm gonna fly in my daddy's private jet\\nI'm gonna let you spend the night\\nIf you can prove that you're worth it, baby\\n[Chorus Beyonce]\\nI want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\nI want you to feel inspired by my success\\nI worked so hard for everything\\n[Post-Chorus Beyonce]\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen\\n[Verse 3 Kendrick Lamar]\\nUh, I got my eye on the ball, cup\\nI'm on the top of the wall, cup\\nUh, I'm in the race of a king, cup\\nI'm in the space of a king, cup\\nUh, I got my eye on the ball, cup\\nI'm on the top of the wall, cup\\nUh, I'm in the race of a king, cup\\nI'm in the space of a king, cup\\nUh, I got my eye on the ball, cup\\nI'm on the top of the wall, cup\\nUh, I'm in the race of a king, cup\\nI'm in the space of a king, cup\\n[Outro Beyonce]\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen, baby\\nBow down to the queen\",\n", - " 'id': 9141389},\n", - " {'name': 'Double Fantasy',\n", - " 'artist': 'Future',\n", - " 'llama_response': \"Verse 1\\nI'm trapped in a game of desire, where the stakes are high\\nEvery move I make, it's a moral test, I can't deny\\nThe passion between us, it's hot and wild\\nBut the consequences of our actions, they're hard toild\\n\\nChorus\\nWe're dancing on the edge of morality\\nTemptation's calling, but we can't be free\\nOur hearts are racing, but our souls are lost\\nIn this forbidden love, we're trapped and cost\\n\\nVerse 2\\nWe know we shouldn't, but we can't resist\\nThe pull of pleasure, it's a dangerous mist\\nWe're caught in a web of hedonism and greed\\nBut the guilt we feel, it's all we need\\n\\nChorus\\nWe're dancing on the edge of morality\\nTemptation's calling, but we can't be free\\nOur hearts are racing, but our souls are lost\\nIn this forbidden love, we're trapped and cost\\n\\nBridge\\nWe're caught in a cycle of desire and shame\\nOur actions are ambiguous, but the blame\\nFalls on us, the ones who know what we've done\\nBut we can't stop, the fire's been lit, it's won\\n\\nChorus\\nWe're dancing on the edge of morality\\nTemptation's calling, but we can't be free\\nOur hearts are racing, but our souls are lost\\nIn this forbidden love, we're trapped and cost\\n\\nVerse 3\\nWe're searching for a way out of this mess\\nBut the escape route's hidden, it's a test\\nOf our willpower and our hearts of gold\\nBut the damage we've done, it's hard to hold\\n\\nChorus\\nWe're dancing on the edge of morality\\nTemptation's calling, but we can't be free\\nOur hearts are racing, but our souls are lost\\nIn this forbidden love, we're trapped and cost\\n\\nOutro\\nWe're left with the memories of what we've done\\nThe weight of our choices, they're hard to undone\\nBut in the end, it's all worth the fight\\nFor the passion and the love, it's a sweet delight.\\n\",\n", - " 'lyre_response': \"[Intro]\\nI'm so high, baby\\nYou know, I was thinkin', we could take this to the bedroom\\nI'm so high, baby\\nWe could take this to the bedroom\\nI'm so high, baby\\nYou know, I was thinkin', we could take this to the bedroom\\nI'm so high, baby\\nWe could take this to the bedroom\\n[Verse 1]\\nGoddamn, your body so divine\\nI'm so lost in your touch, your body so fine\\nBaby, you know I'm a man, I got needs\\nWhy you think I'm comin' over, just for the seed?\\n[Pre-Chorus]\\nI know that it's wrong, but I really want you\\nI know that it's wrong, but I really need you\\nDon't do this, don't do that\\nI'm watchin' you, but you don't know that\\n[Chorus]\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby [Verse 2]\\nI'm so lost in your touch, your body so fine\\nBaby, you know I'm a man, I got needs\\nWhy you think I'm comin' over, just for the seed?\\nAnd you know I'm a rider, I got a bad habit\\nI'm always thinkin' about sex, I'm always thinkin' about it\\nAnd you know I'm a liar, but I always tell it\\nTo your face and behind it, I'm always thinkin' about it [Pre-Chorus]\\nI know that it's wrong, but I really want you\\nI know that it's wrong, but I really need you\\nDon't do this, don't do that\\nI'm watchin' you, but you don't know that\\n[Chorus]\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby [Bridge]\\nPut this ring on your finger\\nMake this the last thing you do\\n'Fore I lose my mind, lose my virginity\\nBaby, say you will, never do\\nSay you will, never do\\nI'm so high, baby\\n[Pre-Chorus]\\nI know that it's wrong, but I really want you\\nI know that it's wrong, but I really need you\\nDon't do this, don't do that\\nI'm watchin' you, but you don't know that\\n[Chorus]\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nSay you will, never do\\nI'm so high, baby\",\n", - " 'id': 9006073},\n", - " {'name': 'Ménage*',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm livin' my best life, ain't no tellin' lies\\nFlauntin' my dough, got my own private sky\\nGot my own jet, ain't no flyin' high\\nGot my own crew, they always by my side\\n\\nPoppin' them pills, feelin' like a boss\\nGot my own dough, ain't no countin' losses\\nGot my own spot, got my own vibe\\nGot my own crew, they always by my side\\n\\n(Chorus)\\nI'm livin' lavish, I'm feelin' alive\\nGot my own flow, ain't no tellin' lies\\nGot my own money, ain't no countin' debt\\nGot my own life, ain't no tellin' regret\\n\\n(Verse 2)\\nI'm chasin' the high, I'm chasin' the thrill\\nGot my own fix, ain't no tellin' the will\\nGot my own love, got my own heart\\nGot my own life, ain't no tellin' apart\\n\\nGot my own style, got my own flair\\nGot my own game, ain't no tellin' care\\nGot my own vibe, got my own flow\\nGot my own life, ain't no tellin' slow\\n\\n(Chorus)\\nI'm livin' lavish, I'm feelin' alive\\nGot my own flow, ain't no tellin' lies\\nGot my own money, ain't no countin' debt\\nGot my own life, ain't no tellin' regret\\n\\n(Bridge)\\nI'm on the scene, I'm feelin' the heat\\nGot my own groove, ain't no tellin' defeat\\nGot my own crew, they always by my side\\nGot my own life, ain't no tellin' tide\\n\\n(Chorus)\\nI'm livin' lavish, I'm feelin' alive\\nGot my own flow, ain't no tellin' lies\\nGot my own money, ain't no countin' debt\\nGot my own life, ain't no tellin' regret\\n\\n(Outro)\\nI'm on the rise, I'm feelin' alive\\nGot my own vibe, ain't no tellin' strife\\nGot my own flow, ain't no tellin' lies\\nGot my own life, ain't no tellin' disguise.\\n\",\n", - " 'lyre_response': \"[Intro]\\nWheezy outta here\\n[Verse 1]\\nJust took a break from bustin' that chocha\\nNow I'm back to bustin' that chocha\\nYeah, my girl is so bad, she's so hot, she's so crazy\\nYeah, I got that sack, and she on that redbone\\nI'ma light that blunt, she love that redbone\\nI'ma pour that liquor, she love that redbone, yeah\\nShe ride it like a pro, yeah\\nShe told me she love me, yeah\\nI know she lie to me, yeah\\nBut I can't seem to care, yeah\\nI'm so far gone, I'm a sucker for love, yeah\\nAnd she make it harder by showin' me love, yeah\\nAnd I keep goin' back for more, yeah\\nShe make it hard to leave her, so I need a bigger door [Chorus]\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot (Yeah)\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\\n[Verse 2]\\nMan, I'm at the bank machine, withdrawin' 25 large\\nMan, these girls at the club, they all about that dough, yeah\\nAnd you can get that cake, just give me that dough, yeah\\nI don't care if you got a boyfriend, I'm gon' take that chance, yeah\\nI'm with this girl, she ride me like a Harley\\nShe said that I'm famous, her friends wanna take a photo\\nMan, I'm with this girl, she so annoying\\nBut when we ride, girl, I'm gettin' annoyed, haha\\nI pull up in that coupe, that's a drop-top, baby\\nWhen I'm with my woes, I can make that potato baby\\nYeah, I know I'm fresh, yeah, I know I'm hot, yeah\\nGot a nigga on that Verzuz, man, I'ma whoppin' that nigga, haha [Chorus]\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot (Yeah)\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\\nI just wanna have fun, I just wanna drop the top\\nI just wanna have fun, I just wanna smoke some pot\",\n", - " 'id': 9285785},\n", - " {'name': 'Likka Sto 2',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"Verse 1 (Travis Scott)\\nI'm in the liquor store, sippin' on a 40\\nGot my homies by my side, we're gettin' it poppin'\\nGot my wallet open wide, buyin' up the shelves\\nLivin' life to the fullest, we ain't worried 'bout no wealth\\n\\nChorus\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\\nAlcohol's got us feelin' like we're on top of the world\\n\\nVerse 2 (Quavo)\\nI'm the king of the liquor store, got my own brand\\nGot my own flow, ain't nobody touchin' my hand\\nGot my own style, ain't nobody touchin' my shirt\\nGot my own swag, ain't nobody touchin' my dirt\\n\\nChorus\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\\nAlcohol's got us feelin' like we're on top of the world\\n\\nVerse 3 (Takeoff)\\nI'm the one they call when they need a drink\\nGot my own brew, ain't nobody gonna blink\\nGot my own flow, ain't nobody gonna know\\nGot my own style, ain't nobody gonna show\\n\\nChorus\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\\nAlcohol's got us feelin' like we're on top of the world\\n\\nVerse 4 (J. Cole)\\nI'm the one with the street credibility\\nGot my own rhymes, they're straight outta reality\\nGot my own style, ain't nobody touchin' my game\\nGot my own flow, ain't nobody touchin' my fame\\n\\nChorus\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\\nAlcohol's got us feelin' like we're on top of the world\\n\\nBridge (Travis Scott)\\nWe're feelin' the highs and the lows\\nGot our hands up, got our drinks in tow\\nWe're livin' life to the fullest, ain't nobody gonna stop\\nGot our feet on the floor, got our heads in the top\\n\\nChorus\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\\nAlcohol's got us feelin' like we're on top of the world\\n\\nOutro (Travis Scott)\\nWe're on a hedonistic bender, gotta keep it movin'\\nLiquor store runs, we're feelin' like we're livin'\\nPartyin' all night long, gotta keep it groovin'\",\n", - " 'lyre_response': \"[Intro]\\nPlaymakers\\n[Pre-Chorus]\\nGo, go, go I'm going, I'm going\\nPull up on the spot What spots? What spots?\\nWith the liquor in-store What store? What store?\\nIt's a fucked up storm inside the boat What boat? What boat?\\nWe should not go home We should not go home\\n[Chorus]\\nGo, go, go (I'm going, I'm going)\\nPull up on the spot with the liquor in-store\\nIt's a fucked up storm inside the boat, we should not go home\\n'Cause we've only just began, begun, begun\\n[Post-Chorus]\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\n[Verse 1 Travis Scott]\\nPretty young thing, come play with my liquor\\nBend down, girl, let me show you something\\nSip it, sip it, sip it 'til you're dizzy\\nFuck all the sober shit, we only do it once\\nWolverine, Adidas, and a bezel\\nSoon as we walk in, we already killed it\\nPour a whole bottle, fill up the bucket\\nWho's the bucket? The bucket is you, it's for fuck\\nGot a fat girl, she wanna fuck the whole crew\\nShe want a fuckin' Travis Scott, she want a fuckin' Travis Scott\\nIt's a lot of fash' in the vault, it's a lot of cash' in the vault\\nAnd I'm not talkin' 'bout ASAP, I'm talkin' about cash, cash, cash [Chorus Travis Scott & \\nNAV]\\nGo, go, go (I'm going, I'm going)\\nPull up on the spot with the liquor in-store\\nIt's a fucked up storm inside the boat, we should not go home\\n'Cause we've only just began, begun, begun\\n[Post-Chorus NAV]\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\n[Verse 2 NAV]\\nPretty young thing, I'm tryna fuck you, baby\\nWhat's your sign? If you a freak, let me know\\nI'm tryna fuck you, baby, let me know\\nI'm tryna fuck you, baby, let me know\\nI'm tryna fuck you, baby, let me know\\nI'm tryna fuck you, baby, let me show\\nWho is that boy with the dragon breath?\\nThat's a dumb blonde, she think I'm David Beckham\\nI'm tryna fuck you, baby, let me know\\nI'm tryna fuck you, baby, let me show\\nWho is that boy with the dragon breath?\\nThat's a dumb blonde, she think I'm David Beckham [Chorus Travis Scott & \\nNAV]\\nGo, go, go (I'm going, I'm going)\\nPull up on the spot with the liquor in-store\\nIt's a fucked up storm inside the boat, we should not go home\\n'Cause we've only just began, begun, begun\\n[Post-Chorus \\nTravis Scott\\n & NAV]\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\nWoo, ooh\\nWoo, ooh\\nPretty young thing, what you want, what you want\\nPretty young thing, what you want, what you want\\n[Outro]\\nPlaymakers\",\n", - " 'id': 9095848},\n", - " {'name': 'Kissing You',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI wake up every morning, feeling so alone\\nThe bed beside me empty, where you used to lay your head\\nI reach out for your touch, but it's just a cold, dark room\\nAnd I'm left with these memories, of the love we used to hold\\n\\nChorus\\nOh, how I yearn for your embrace, for your gentle touch\\nThe way you made me feel alive, the way you made me feel so much\\nBut now you're gone, and I'm left here to face\\nThe ache of love lost, the space that you leave in this place\\n\\nVerse 2\\nI remember the way you smiled, the way you laughed with me\\nThe way you held my hand, and made me feel like I was free\\nWe shared so many moments, so many nights of love and light\\nBut now they're just memories, and they don't feel quite right\\n\\nChorus\\nOh, how I yearn for your embrace, for your gentle touch\\nThe way you made me feel alive, the way you made me feel so much\\nBut now you're gone, and I'm left here to face\\nThe ache of love lost, the space that you leave in this place\\n\\nBridge\\nI know I'll find my way, I'll find my strength again\\nBut for now, I'll hold on to these memories, and the love we shared\\nAnd though you're gone, your heart will always be near\\nIn my dreams, in my heart, and in every tear\\n\\nChorus\\nOh, how I yearn for your embrace, for your gentle touch\\nThe way you made me feel alive, the way you made me feel so much\\nBut now you're gone, and I'm left here to face\\nThe ache of love lost, the space that you leave in this place\\n\\nOutro\\nAnd though you're gone, I know you'll always be with me\\nIn every smile, in every laugh, and every tear I cry\\nAnd though the pain of love lost will never truly fade\\nI'll hold on to the love we shared, and the memories we made.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOh, ah\\nOh, ah\\n[Verse 1]\\nI know you're out there, I can feel it\\nBut how do I know it's really you?\\nIf I'm still standing here, so lonely\\nThen why did you ever leave me?\\nWhy did you ever leave me?\\n[Pre-Chorus]\\nCome back, you know that I miss you\\nAnd no one in the world can make me feel like you do\\nOoh, so come back\\n[Chorus]\\nIf I can't have you, I think I might die\\nI've never felt love like I feel when I'm by your side\\nIf I can't have you, I think I might die\\nYou're the only one who keeps me alive\\n[Post-Chorus]\\nOh, ah\\nOh, ah\\n[Verse 2]\\nI lay down with you, remember?\\nSo we can see the stars, my love\\nWe used to do, don't do so much\\nWe never used to do so much [Pre-Chorus]\\nCome back, you know that I miss you\\nAnd no one in the world can make me feel like you do\\nOoh, so come back\\n[Chorus]\\nIf I can't have you, I think I might die\\nI've never felt love like I feel when I'm by your side\\nIf I can't have you, I think I might die\\nYou're the only one who keeps me alive\\n[Post-Chorus]\\nOh, ah\\nOh, ah\\n[Bridge]\\nIn my weak moments, I think about you\\nI wake up in the night to see if you're there\\nI memorize your kiss, your touch, your skin\\nEvery freckle on your face, so beautiful\\nSo come back, come back to me\\nCome back, come back to me\\n[Chorus]\\nIf I can't have you, I think I might die\\nI've never felt love like I feel when I'm by your side\\nIf I can't have you, I think I might die\\nYou're the only one who keeps me alive\\n[Outro]\\nOh, ah\\nOh, ah\",\n", - " 'id': 8721953},\n", - " {'name': 'SIRENS',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI'm chasing the dream, but it's always out of reach\\nFame and fortune, they're just a fleeting breeze\\nI'm tryna make a name, but it's hard to find\\nMy place in the game, where the competition's blind\\n\\nChorus\\nI'm searching for perfection, but it's hard to find\\nThe ideal that I'm chasing, it's slipping through my mind\\nI'm striving for greatness, but it's hard to define\\nThe line between success and failure, it's hard to find\\n\\nVerse 2\\nI'm living in the moment, but my eyes are on the prize\\nI'm chasing the highs, but the lows they always surprise\\nI'm trying to shine bright, but the spotlight's blind\\nI'm tryna make a name, but my legacy's hard to find\\n\\nChorus\\nI'm searching for perfection, but it's hard to find\\nThe ideal that I'm chasing, it's slipping through my mind\\nI'm striving for greatness, but it's hard to define\\nThe line between success and failure, it's hard to find\\n\\nBridge\\nI'm lost in the haze, tryna find my way\\nI'm chasing the dream, but it's slipping away\\nI'm trying to hold on, but it's slipping through my hands\\nI'm searching for the truth, but it's hard to understand\\n\\nChorus\\nI'm searching for perfection, but it's hard to find\\nThe ideal that I'm chasing, it's slipping through my mind\\nI'm striving for greatness, but it's hard to define\\nThe line between success and failure, it's hard to find\\n\\nVerse 3\\nI'm questioning the dream, tryna find my place\\nI'm chasing the fame, but it's hard to embrace\\nThe illusion of perfection, it's hard to maintain\\nThe line between reality and fantasy, it's hard to explain\\n\\nChorus\\nI'm searching for perfection, but it's hard to find\\nThe ideal that I'm chasing, it's slipping through my mind\\nI'm striving for greatness, but it's hard to define\\nThe line between success and failure, it's hard to find\\n\\nOutro\\nIs utopia real? Or is it just a myth?\\nAre we chasing the dream, or just a fleeting thought?\\nI'm tryna find the truth, but it's hard to believe\\nSometimes what we seek is already within our grasp, you see.\\n\",\n", - " 'lyre_response': \"Utopia\\n[Intro Lil Wayne & \\nBoth]\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can't get it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\n[Verse 1 Lil Wayne & \\nDrake]\\nI'm on the highway, going 90\\nWith my windows up, so I don't see shit\\nBut I know that she's perfect\\nSo I push it to the limit, I'm reckless\\nI'm trying to get to utopia\\nI'm listening to Coldplay\\nSo I must be close, yeah\\nI can see it, I can see it\\n[Chorus Lil Wayne & \\nDrake]\\nUtopia, I can see it\\nUtopia, I can see it\\nUtopia, I can see it\\nBut it's not here, so I'm looking for it\\nUtopia\\n[Verse 2 Drake & \\nLil Wayne]\\nAyo, I'm up in my Maison II\\nLooking out the window, just looking at the trees Woo\\nI'm so far from where I used to be, you would think that I could see it\\nBut utopia is an illusion, it doesn't exist What?\\nYeah, I have a beautiful view\\nBut nothing can beat the view I had of you\\nI'm still up in my Maison II\\nLooking out the window, still looking at the trees Woo\\nBut I'm a little older than I was then\\nA little wiser, but not even close to done\\nYou would think that I could see it\\nBut my utopia is an illusion, it doesn't exist What?\\nYeah, I have a beautiful view\\nBut nothing can beat the view I had of you\\nAnd I still look up in the sky\\nAnd I still pray that I can fly\\nSo close, yet so far\\nI can see it, but I can't get it\\nI can see it, I can see it\\n[Chorus Lil Wayne & \\nDrake]\\nUtopia, I can see it\\nUtopia, I can see it\\nUtopia, I can see it\\nBut it's not here, so I'm looking for it\\nUtopia\\n[Bridge Lil Wayne]\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it\\n[Interlude Lil Wayne]\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can't get it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\nI can see it, I can see it, I can see it, I can see it\\nI can see it, I can see it\\n[Outro Lil Wayne & \\nDrake]\\nI can see it, I can see it\\nBut is it really what you're looking for?\\nUtopia\\nI can see it, I can see it\\nBut is it really what you're looking for?\\nUtopia\\nI can see it, I can see it\\nBut is it really what you're looking for?\\nUtopia\\nI can see it, I can see it\\nBut is it really what you're looking for?\\nUtopia\",\n", - " 'id': 9354510},\n", - " {'name': 'Add It Up*',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm on the grind, ain't nobody touchin' me\\nMakin' hits and stackin' cheddar, it's just part of the spree\\nFresh off the plane, straight to the mansion\\nGot my own private jet, ain't no one messin' with the king\\nGot my own label, got my own team\\nMakin' moves, ain't no one can stop the dream\\n\\n(Chorus)\\nAdd it up, add it up, every single dime\\nI'm livin' large, ain't no time to chime\\nAdd it up, add it up, it's all mine\\nGot my own empire, ain't no one gonna decline\\n\\n(Verse 2)\\nGot my own line of sneakers, it's sellin' like hotcakes\\nGot my own clothing line, got my own fashion stacks\\nGot my own champagne, it's poppin' like a fountain\\nGot my own private beach, ain't no one gonna bring me down\\nGot my own entourage, they're all about the dough\\nGot my own yacht, it's sailin' like a go\\n\\n(Chorus)\\nAdd it up, add it up, every single dime\\nI'm livin' large, ain't no time to chime\\nAdd it up, add it up, it's all mine\\nGot my own empire, ain't no one gonna decline\\n\\n(Verse 3)\\nMakin' moves in the club, got the whole place jumpin'\\nGot my own private show, ain't no one gonna stop the fun\\nGot my own rhythm, got my own flow\\nGot my own fans, they're all about the go\\nGot my own spot on the charts, ain't no one gonna stop me\\nGot my own tour, it's all about the energy\\n\\n(Chorus)\\nAdd it up, add it up, every single dime\\nI'm livin' large, ain't no time to chime\\nAdd it up, add it up, it's all mine\\nGot my own empire, ain't no one gonna decline\\n\\n(Bridge)\\nI'm on the top of the world, ain't no one gonna bring me down\\nGot my own style, got my own sound\\nGot my own team, they're all about the crown\\nGot my own legacy, it's all about the dough\\n\\n(Chorus)\\nAdd it up, add it up, every single dime\\nI'm livin' large, ain't no time to chime\\nAdd it up, add it up, it's all mine\\nGot my own empire, ain't no one gonna decline\\n\\n(Outro)\\nSo if you're feelin' me, let's keep it movin'\\nGot my own vision, ain't no one gonna stop the groovin'\\nGot my own flow, got my own style\",\n", - " 'lyre_response': '[Intro]\\nWheezy outta here\\n[Chorus Lil Uzi Vert]\\nOne,\\u2005two,\\u2005three, four, five, six, seven, eight\\nAdd it\\u2005up, add it up, add it up, add it up\\nOne, two, three, four, five, six, seven, eight\\nAdd it up, add it up, add it up, add it up\\nWheezy outta here\\n[Verse 1 Lil Uzi Vert]\\nI just counted up, I\\'m way, way, way, way, way rich\\nI\\'m not playin\\' when I say I\\'m the plug, I\\'m in charge\\nI\\'ve been savin\\' up, yeah, since I was a kid, I\\'m a daddy\\nI know all the hoes that heffey play with, I\\'m a baby\\nUzi Vert, I\\'m all about that cash, man\\nYou know I don\\'t mess with no basic chick, she need cash\\nI\\'ve been pullin\\' up in them foreigns, yeah, since I was a baby\\nI\\'m in this gang called \"The Uzi Squad\" and we all got cash\\nAnd all my niggas got cash, yeah, we don\\'t need to ask\\nI\\'m in this mansion all by myself, yeah, I need aask\\nYeah, I remember times was dark, yeah, I need a candle\\nI\\'m so happy, yeah, I\\'m proud of myself, yeah, I need a candle\\n[Chorus Lil Uzi Vert]\\nOne, two, three, four, five, six, seven, eight\\nAdd it up, add it up, add it up, add it up\\nOne, two, three, four, five, six, seven, eight\\nAdd it up, add it up, add it up, add it up\\n[Bridge]\\nYeah, uh\\nI just want them diamonds, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that Wheezy outta here\\n[Verse 2 Lil Uzi Vert]\\nI just counted up, I\\'m way, way, way, way, way rich\\nI\\'m not playin\\' when I say I\\'m the plug, I\\'m in charge\\nI\\'ve been savin\\' up, yeah, since I was a kid, I\\'m a daddy\\nI know all the hoes that heffey play with, I\\'m a baby\\nUzi Vert, I\\'m all about that cash, man\\nYou know I don\\'t mess with no basic chick, she need cash\\nI\\'ve been pullin\\' up in them foreigns, yeah, since I was a baby\\nI\\'m in this gang called \"The Uzi Squad\" and we all got cash\\nAnd all my niggas got cash, yeah, we don\\'t need to ask\\nI\\'m in this mansion all by myself, yeah, I need aask\\nYeah, I remember times was dark, yeah, I need a candle\\nI\\'m so happy, yeah, I\\'m proud of myself, yeah, I need a candle\\n[Chorus Lil Uzi Vert]\\nOne, two, three, four, five, six, seven, eight\\nAdd it up, add it up, add it up, add it up\\nOne, two, three, four, five, six, seven, eight\\nAdd it up, add it up, add it up, add it up\\n[Bridge]\\nYeah, uh\\nI just want them diamonds, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that\\nI don\\'t want no chick that\\'s basic, yeah, I want that\\nWanna pull up in that foreign, yeah, I need that\\nI just want them things and that\\'s all, yeah, I need that\\n[Outro]\\nWheezy outta here',\n", - " 'id': 5499742},\n", - " {'name': 'Still Pushin',\n", - " 'artist': 'Logic',\n", - " 'llama_response': \"Verse 1\\nI was once a rookie, tryna find my place in the game\\nBut now I'm a vet, with a legacy to maintain\\nBeen through the fire, and I'm still standing tall\\nThrough the ups and downs, I've learned to take it all in stride\\n\\nI've seen the superficiality of the industry firsthand\\nWhere the flashy cars and flashy clothes, they just don't mean a thing\\nBut the real ones know, the ones who grind every day\\nWe ain't never worried 'bout the fame, just the art we create\\n\\nChorus\\nI'm on a mission, to prove my worth\\nAin't no one gonna stop me, ain't no one gonna hurt\\nI'm on a journey, to the top of the game\\nGonna leave my mark, gonna make my claim\\n\\nVerse 2\\nI used to be the kid, tryna find my voice\\nBut now I'm the man, with a message to choose\\nI've grown and learned, and I'm still on the rise\\nI ain't never gonna stop, until I reach the skies\\n\\nI'm a student of the game, always tryna learn\\nFrom the legends of old, to the new and the burn\\nI'm a sponge, soaking up knowledge like a rain shower\\nGot my own style, my own flow, my own way of roar\\n\\nChorus\\nI'm on a mission, to prove my worth\\nAin't no one gonna stop me, ain't no one gonna hurt\\nI'm on a journey, to the top of the game\\nGonna leave my mark, gonna make my claim\\n\\nVerse 3\\nI see the industry, it's a game of pretend\\nWhere the shallow ones fade, and the real ones ascend\\nI ain't never gonna fit, in the mold they create\\nI'm on a quest, to create my own fate\\n\\nI'm a rebel, a renegade, a nonconformist too\\nI'm a voice for the voiceless, a beacon of truth\\nI'm a warrior, a fighter, a king in the making\\nGonna leave my legacy, gonna make my own breaking\\n\\nChorus\\nI'm on a mission, to prove my worth\\nAin't no one gonna stop me, ain't no one gonna hurt\\nI'm on a journey, to the top of the game\\nGonna leave my mark, gonna make my claim\\n\\nOutro\\nI'm Logic, the king of the underground\\nGonna take my rightful place, in the spotlight profound\\nI ain't never gonna back down, I ain't never gonna give in\\nI'm on a mission, to make my mark, and win.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, uh\\nUh, yeah, uh\\nUh, yeah\\nUh, yeah\\nUh, yeah, uh\\nUh, yeah, uh\\nUh, yeah\\nUh, yeah\\nUh, yeah\\nYeah, yeah, yeah\\nYeah, uh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\\n[Verse 1]\\nRappers will come-and-go\\nBut I'ma bet-and-stay\\nWatched all my niggas come up\\nAnd some of them-way\\nI remember when-\\nNAV was just-\\nHe was just a little baby rapper\\nAnd now he-\\nHe's a superstar\\nAnd I'm so happy for him\\nHe was just a little baby rapper\\nAnd now he-\\nHe's a superstar\\nAnd I'm so happy for him\\n[Verse 2]\\nAll that glitters-\\nIs not gold\\nLook at what the-\\nFame has done\\nTo some of them\\nIt turned they backs-\\nTo cold-\\nIt's funny how this-\\nIndustry works\\nThey praise you one day\\nThen they murder you the next\\nIt's funny how this-\\nIndustry works\\nThey praise you one day\\nThen they murder you the next\\nIt's funny how this-\\nIndustry works\\nThey praise you one day\\nThen they murder you the next\\nIt's funny how this-\\nIndustry works\\nThey praise you one day\\nThen they murder you the next [Verse 3]\\nIt's a shame how-\\nThey exploit us\\nFor their own profit\\nBut I-\\nI wouldn't be me\\nIf I didn't say\\nI'm a little bit-\\nDifferent than the rest\\nAnd I-\\nI wouldn't be me\\nIf I didn't say\\nI'm a little bit-\\nDifferent than the rest\\nYeah, yeah, yeah\\nI'm a little bit-\\nDifferent than the rest\\nYeah, yeah, yeah\\nI'm a little bit-\\nDifferent than the rest\\nYeah, yeah, yeah\\nI'm a little bit-\\nDifferent than the rest\\nYeah, yeah, yeah\\nI'm a little bit-\\nDifferent than the rest [Verse 4]\\nTreat my black brothers and sisters equally\\nNot with equal chance\\nJust because we're black doesn't mean you have to listen\\nAll that bullshit, it doesn't make sense to me\\nI never claimed to be a civil rights activist\\nBut I know that we're living in a racist society\\nI never claimed to be a civil rights activist\\nBut I know that we're living in a racist society\\nI never claimed to be a civil rights activist\\nBut I know that we're living in a racist society\\nI never claimed to be a civil rights activist\\nBut I know that we're living in a racist society [Outro]\\nYeah, uh\\nUh, yeah, uh\\nUh, yeah\\nUh, yeah, uh\\nUh, yeah, uh\\nUh, yeah\\nUh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\\nUh, yeah, uh\\nYeah, uh-huh, yeah, uh\",\n", - " 'id': 9431005},\n", - " {'name': 'Realest',\n", - " 'artist': 'Eminem',\n", - " 'llama_response': \"Verse 1\\nListen up y'all, I got a story to tell\\nAbout a rapper who rose from the depths of hell\\nBorn and raised in the D, where the streets are cold and grim\\nBut I ain't never let my environment define my rhyme\\n\\nI've seen it all, from the envy and the hate\\nTo the fake rappers who think they're too late\\nBut I ain't never let 'em get in my way\\nI'm the real deal, and I'm here to stay\\n\\nChorus\\nI'm the king of the game, ain't nobody touchin' me\\nI'm the one they all fear, the one they can't beat\\nI rose to fame on my own terms, ain't nobody gonna stop me\\nI'm the authentic voice, the one that they can't ignore\\n\\nVerse 2\\nI came up from the bottom, where the struggle's real\\nBut I never let the haters bring me down to my knees\\nI kept grinding, kept hustling, kept pushing through\\nAnd now I'm here, with my foot on your throat, boo\\n\\nThe industry's harsh, it'll break you in two\\nBut I ain't never been one to back down, that's just not true\\nI've seen the best of 'em, and I've seen the worst\\nBut I'm still standing, and I'm still blasting, and I'm still cursing\\n\\nChorus\\nI'm the king of the game, ain't nobody touchin' me\\nI'm the one they all fear, the one they can't beat\\nI rose to fame on my own terms, ain't nobody gonna stop me\\nI'm the authentic voice, the one that they can't ignore\\n\\nVerse 3\\nI'm the voice of the streets, the voice of the youth\\nI'm the one they all know, the one they all truth\\nI ain't never been afraid to speak my mind\\nAnd I ain't never gonna stop, until I reach the top of the line\\n\\nI'm the king of the throne, and I'm here to stay\\nSo listen up y'all, 'cause I've got something to say\\nI ain't never gonna back down, I ain't never gonna fade\\nI'm the real deal, and I'm here to stay, ain't nobody gonna make me go away\\n\\nChorus\\nI'm the king of the game, ain't nobody touchin' me\\nI'm the one they all fear, the one they can't beat\\nI rose to fame on my own terms, ain't nobody gonna stop me\\nI'm the authentic voice, the one that they can't ignore\\n\\nOutro\\nSo there you have it, my story's been told\\nAnd I hope you heard it, and I hope you're bold\\nI'm the king of the game, and I'm here to stay\",\n", - " 'lyre_response': \"[Intro]\\nYeah, you! The one sayin' I doped himself\\nShit, man, you don't know what I been through\\nJust to get this dope rhyme the fuckin' pump\\nI'd fuck a puppy, fuck a baby, fuck a bitch\\nFuck a hubby, fuck a spouse\\nFuck the whole damn household\\nFuck a plant, fuck a rock\\nFuck a tree, fuck a motherfuckin' bowl\\nFuck every one of you! (Get the fuck up on out of here!)\\n[Verse 1]\\nYou're still just a kick in the door\\nStill just a glimmer in my eye\\nYou're gonna look back in two years\\nAnd realize that you were just a fad\\nA fleeting moment in my life\\nBut man, I've been some places\\nWith cheap tricks and a quick change, I'll make you disappear\\nI've been to hell and back, man\\nI've been to hell and back again\\nDon't give me that look, like you don't know what I mean\\nI was there when Tupac was shot\\nI was there when Biggie went to Hell\\nI was there when Jimmy Page was on drugs\\nI was there when Elton John fell in love\\nI was there when John Lennon died\\nI was there for every big event in the lives of my idols\\nAnd I'm still here, while they're all gone, I survived\\nI'm like the ghost of Christmas past\\nAppearing to you in a cloud of smoke\\nWith a six-shooter in my hand\\nAnd a switchblade in my sock\\nI'm like the Ranger, protecting the park\\nWhile you're visiting from the city\\nWith a spear in my hand and a sniper rifle, perched on a hill\\nI'm just a 10-year-old kid from Lincoln Park\\nBut I'll take on all of you motherfuckers at once\\nWith half of my talent, I could take on Slim Shady\\nAnd the two of us would bodyslam the Liger [Chorus]\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI'm back with a brand new recipe\\nAnd this one's for the dead bitches in me\\nI\",\n", - " 'id': 9363637},\n", - " {'name': 'Miracle',\n", - " 'artist': 'Calvin Harris',\n", - " 'llama_response': \"Verse 1\\nI've been lost in the dark, for so long\\nTrying to find my way, but I can't seem to move on\\nFrom the mistakes of the past, the wounds that won't heal\\nI'm reaching out for hope, but it's hard to conceal\\n\\nChorus\\nOh, I need a miracle, to wash away my shame\\nTo believe in something more, than the pain I've gained\\nI'm searching for a love, that will set me free\\nA transformative fire, that will burn bright and clear\\n\\nVerse 2\\nI know I've hurt those close, with my own two hands\\nI've let my fears and doubts, tear me apart and stand\\nBut I'm ready to change, to start anew\\nTo find the strength to heal, and make amends, I'll do\\n\\nChorus\\nOh, I need a miracle, to wash away my shame\\nTo believe in something more, than the pain I've gained\\nI'm searching for a love, that will set me free\\nA transformative fire, that will burn bright and clear\\n\\nBreakdown\\n(Building synths and beats)\\nI'm holding on to hope, like a fragile thread\\nI'm reaching for a love, that will set me free\\nFrom the chains that bind me, from the fears that plague me\\nI'm searching for a light, that will guide me to the other side\\n\\nChorus\\nOh, I need a miracle, to wash away my shame\\nTo believe in something more, than the pain I've gained\\nI'm searching for a love, that will set me free\\nA transformative fire, that will burn bright and clear\\n\\nOutro\\n(Energetic drop)\\nI know I'll find my way, out of the dark and into the light\\nI'll rise above the pain, and shine with all my might\\nI'll find the love I've sought, and never let it go\\nA miracle of love, that will make my heart whole.\\n\",\n", - " 'lyre_response': \"[Intro]\\nOh, no, oh, no\\nOh, whoa, oh, no\\nOh, no, oh, no\\nNo, no, no\\n[Verse 1]\\nLay me down, lay me down\\nI'm not like all the other boys\\nYou would be a bad, bad girl\\nIf you took me up on my promises\\nSo take me instead to the hop\\nWhere you can drink and let your hair down\\nAnd if you want, you can kiss me, but don't touch\\n[Pre-Chorus]\\nI'm not the best man I could be\\nFar from a perfect specimen\\nMy heart is broken in three\\nBut I'm hoping that you could see\\n[Chorus]\\nInside of me, a miracle\\nWould make you believe\\nIn a love that's so divine\\nSo would you believe in a miracle?\\nWould you believe in a miracle?\\n[Post-Chorus]\\nOh, no, oh, no\\nOh, whoa, oh, no\\nOh, no, oh, no\\nNo, no, no\\n[Breakdown]\\nLay me down, lay me down\\nOh, no, oh, no\\nOh, whoa, oh, no\\nOh, no, oh, no\\nNo, no, no\\n[Chorus]\\nInside of me, a miracle\\nWould make you believe\\nIn a love that's so divine\\nSo would you believe in a miracle?\\nWould you believe in a miracle?\\n[Post-Chorus]\\nOh, no, oh, no\\nOh, whoa, oh, no\\nOh, no, oh, no\\nNo, no, no\",\n", - " 'id': 8843631},\n", - " {'name': 'Embarrassed',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm cruisin' through the city, feelin' like a king\\nDiamonds shinin' bright, my chain got that ring\\nFashion trends on fleek, I'm the one that's bringin'\\nExclusive experiences, ain't nobody else bringin'\\n\\n(Chorus)\\nLuxury life, it's a game I play\\nFlyin' high, livin' large, every single day\\nDiamonds on my wrist, my whip got that shine\\nLivin' life to the fullest, feelin' so divine\\n\\n(Verse 2)\\nI hit the club, it's a sight to see\\nBottles poppin', models dancin', it's a fantasy\\nAin't no other place I'd rather be, it's my spot\\nGot my crew by my side, we're rockin' to the top\\n\\n(Chorus)\\nLuxury life, it's a game I play\\nFlyin' high, livin' large, every single day\\nDiamonds on my wrist, my whip got that shine\\nLivin' life to the fullest, feelin' so divine\\n\\n(Bridge)\\nBut sometimes I feel like I'm losin' control\\nThe fame, the fortune, it's takin' its toll\\nI'm livin' life in the fast lane, it's a dangerous road\\nBut I won't stop, no, I won't slow\\n\\n(Verse 3)\\nI'm drippin' in designer, got my own style\\nAin't nobody touchin' me, I'm takin' the prize\\nFlyin' private jets, got my own private pool\\nLivin' life like a king, ain't nobody cool\\n\\n(Chorus)\\nLuxury life, it's a game I play\\nFlyin' high, livin' large, every single day\\nDiamonds on my wrist, my whip got that shine\\nLivin' life to the fullest, feelin' so divine\\n\\n(Outro)\\nSo if you see me out, don't be surprised\\nIf I'm drippin' in diamonds, feelin' like a prize\\nI'm livin' life to the fullest, ain't nobody stoppin' me\",\n", - " 'lyre_response': \"[Intro]\\nParis\\n[Chorus]\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\n[Verse 1]\\nPour moi, c'est la mode\\nDior, Gucci, and YSL\\n Ah, yeah \\nthese the brands that I do follow\\n Do follow\\nLouis Vuitton trunk full of Dior\\n Ah, yeah \\nthis the lifestyle that I'm in\\n In this lifestyle, yeah\\nYou see, this that luxury shit\\n Luxury shit, yeah \\nthis that everyday shit\\n Everyday shit\\n[Chorus]\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\n[Verse 2]\\nParis, yeah\\nI got a girlfriend who's a model\\n A model, yeah \\nfrom Paris to Houston, she'll go\\nShe don't like when I talk about my exes\\n My exes \\ncause she know that I just, I just don't want to admit\\n Just don't want to admit it, yeah\\nThat I was ever that guy\\nThat would purchase a diamond just to impress the bitches\\n Just to impress the bitches, yeah\\nDiamonds, oh diamonds Woo\\nEvery day, I'm thinkin' about diamonds\\n Thinkin' 'bout diamonds every day\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day [Chorus]\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\n[Verse 3]\\nI'ma get a diamond, fuck it, why not?\\nI'ma do it 'cause I can, 'cause I'm ballin'\\n Ballin', yeah \\nI got a check, so I'ma buy a karat\\n Woo\\nI'ma buy a karat 'cause I fuckin' love a karat\\n Fuckin' love a karat, yeah\\nNow, every time I fuck, I'ma give her karat\\n Woo\\n'Cause I fuckin' love to give her karat\\n Fuckin' love to give her karat\\nGive her karat every time that we fuck\\n Ah, yeah\\n[Chorus]\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nI'm thinkin' about diamonds every day\\n[Outro]\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\\nDiamonds, oh diamonds\\nEvery day, I'm thinkin' about diamonds\",\n", - " 'id': 8860164},\n", - " {'name': 'Love Me More',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI stare into the mirror, but I don't see me\\nI see the flaws, the imperfections, the insecurities\\nI wish I could erase them, be someone else for a day\\nBut the more I try, the more I'm stuck in this endless chase\\n\\nChorus\\nWhy can't I love myself? Why can't I see my worth?\\nI'm tired of hiding, tired of feeling like I'm not enough\\nI want to be free, to be me, to be whole\\nI deserve to love myself, to be loved, to be whole\\n\\nVerse 2\\nI've been down this road before, the one that leads to shame\\nThe one that makes me doubt, the one that makes me feel so small\\nBut I know I'm not alone, we've all been there\\nAnd I know that I deserve to be loved, to be free from the fear\\n\\nChorus\\nWhy can't I love myself? Why can't I see my worth?\\nI'm tired of hiding, tired of feeling like I'm not enough\\nI want to be free, to be me, to be whole\\nI deserve to love myself, to be loved, to be whole\\n\\nBridge\\nI'll keep on fighting, I'll keep on trying\\nI'll keep on loving myself, until I reach the sky\\nI won't let the voices, I won't let the pain\\nTake away my love, take away my self-worth\\nI am enough, I am worthy, I am me\\nAnd that's all I need, that's all I'll ever be\\n\\nChorus\\nWhy can't I love myself? Why can't I see my worth?\\nI'm tired of hiding, tired of feeling like I'm not enough\\nI want to be free, to be me, to be whole\\nI deserve to love myself, to be loved, to be whole\\n\\nOutro\\nI'll learn to love myself, I'll learn to see\\nThe beauty in me, the light that shines so bright\\nI'll embrace my flaws, I'll embrace my imperfections\\nI'll be me, I'll be whole, I'll be free.\\n\",\n", - " 'lyre_response': \"[Chorus]\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou\\u2005see\\u2005in the mirror\\n[Verse 1]\\nWhen I look in the\\u2005mirror\\nI don't see a winner\\nI see a light in the distance\\nIt's been struggle, it's been pain\\nFor so long, I've been fightin'\\nI don't see myself as attractive\\nI don't see myself as worthy\\n[Pre-Chorus]\\nI don't think I can love, love myself\\nI don't think I can love, love myself\\nI've tried, I've tried\\nI've tried to do it\\n[Chorus]\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\\n[Verse 2]\\nI used to think that I needed\\nTo be somebody else\\nSo I could get your love and affections\\nBut now I know it's an illusion\\nWe all struggle\\nWe all hurt sometimes\\nAnd it's okay to feel alone [Pre-Chorus]\\nI've learned that I can love, love myself\\nI've learned that I can love, love myself\\nI've tried, I've tried\\nI've tried to do it\\n[Chorus]\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\\n[Bridge]\\nI want to love myself more\\nI want to love myself more\\nI want to love myself more\\nI want to love myself more\\nI want to love myself more\\nI want to love myself more\\n[Chorus]\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\\nWould you rather be\\nSomebody else?\\nSomebody better?\\nSomebody else\\nYou see in the mirror\",\n", - " 'id': 7864555},\n", - " {'name': 'Suburban Legends (Taylor’s Version) [From The Vault]',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI'm driving through the streets of my hometown,\\nUnmarked phone calls and mismatched star signs,\\nThinking 'bout the one I left behind,\\nThe love that could have been, the memories that bind.\\n\\nChorus\\nI'm not there to make friends, I'm there to become,\\nA legend in someone's personal history,\\nA love that leaves a lasting impact,\\nBut now I'm left with just a memory.\\n\\nVerse 2\\nI remember the gymnasium, the smell of sweat and pride,\\nThe way we danced under the flickering lights,\\nThe way our hearts beat as one, the way we collapsed inside,\\nThe love that we had, the love that we lost in time.\\n\\nChorus\\nI'm not there to make friends, I'm there to become,\\nA legend in someone's personal history,\\nA love that leaves a lasting impact,\\nBut now I'm left with just a memory.\\n\\nBridge\\nThe clock is ticking, the waves are crashing,\\nI'm lost in thought, my heart is crashing,\\nThe love we had, it's slipping away,\\nAnd I'm left to face the dawn of a new day.\\n\\nChorus\\nI'm not there to make friends, I'm there to become,\\nA legend in someone's personal history,\\nA love that leaves a lasting impact,\\nBut now I'm left with just a memory.\\n\\nOutro\\nThe gym is empty, the stars are shining bright,\\nI'm standing here, lost in the night,\\nThe love we had, it's gone, it's out of sight,\\nBut it'll always be a part of me, a memory to hold tight.\\n\",\n", - " 'lyre_response': '[Intro]\\nMy heart\\'s been beatin\\', it\\'s been beatin\\'\\nOh, since you stepped into my life\\nAnd I just can\\'t control it\\nNo, I can\\'t control it\\n[Verse 1]\\nThere\\'s a gym in the basement of the \\n50s house\\nWhere the walls are sweating and the porch lights are glowing\\nAnd I wait by the phone for you to call me\\nUp at 500 AM to see if it\\'s raining\\nIn the city that you picked for me\\nWith the restaurant that you worked in\\nBustling and busy, just like you\\nAnd your handshake is as strong as your promises\\nIn your eyes, I can see all the places\\nThat you\\'ve been and the things that you\\'ve seen\\nAnd I feel like I know you, but I\\'ve never met you\\n[Chorus]\\nI couldn\\'t be there to make friends, to drink coffee\\nAnd watch TV with you in the evening\\nI just wanted to be there to see you\\nAnd be a legend in your story\\nYou\\'d tell your friends, \"I met this girl\\nAnd she\\'s gonna be somebody\\nShe\\'s gonna do something amazing\\nWith her life\\'\"\\nAnd they\\'d say, \"Who is she?\"\\nAnd you would say, \"Well, I don\\'t know\\nBut I met her in a coffee shop\\nWhen I was 19, in a T-shirt and jeans\\nAnd she\\'s gonna change the world\"\\n[Verse 2]\\nAnd I\\'d say, \"I couldn\\'t be there\\nTo see you at the 700 movie\\nOr at the 930 show\\nBut I just wanted to be there at 1000\\nWhen you sneak in through the back door\\nAnd how your voice sounds when you laugh\\nAnd how it vibrates through my chest\\nAnd how I can feel it in my heart\\nEven though you\\'re 3,000 miles away\"\\n[Chorus]\\nI couldn\\'t be there to make friends, to drink coffee\\nAnd watch TV with you in the evening\\nI just wanted to be there to see you\\nAnd be a legend in your story\\nYou\\'d tell your friends, \"I met this girl\\nAnd she\\'s gonna be somebody\\nShe\\'s gonna do something amazing\\nWith her life\\'\"\\nAnd they\\'d say, \"Who is she?\"\\nAnd you would say, \"Well, I don\\'t know\\nBut I met her in a coffee shop\\nWhen I was 19, in a T-shirt and jeans\\nAnd she\\'s gonna change the world\"\\n[Post-Chorus]\\nBut I couldn\\'t be there\\nSo I\\'ll never know\\nIf she\\'d be my somebody\\nOr just a stranger\\nThat I met in a coffee shop\\nWhen I was 19, in a T-shirt and jeans\\nAnd she\\'s not gonna change the world [Outro]\\nMy heart\\'s been beatin\\', it\\'s been beatin\\'\\nSince you stepped into my life\\nAnd I just can\\'t control it\\nNo, I can\\'t control it\\nTime is a ticking, the clock is a ticking\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\nYour love is a cradle, it rocks me gently\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\nThe waves are crashing, and they\\'re washing over me\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\n[Bridge]\\nI know that it\\'s pointless to call you now\\nBut I can\\'t help myself\\nI just want to hear your voice, to know\\nIf you\\'re alright\\nI\\'ve been flashing back to that 1950s gymnasium\\nWith the mismatched stars that we were living in\\nAnd I keep hoping that you\\'re coming back to me\\nBut I know that\\'s not happening\\n[Outro]\\nMy heart\\'s been beatin\\', it\\'s been beatin\\'\\nSince you stepped into my life\\nAnd I just can\\'t control it\\nNo, I can\\'t control it\\nTime is a ticking, the clock is a ticking\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\nYour love is a cradle, it rocks me gently\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\nThe waves are crashing, and they\\'re washing over me\\nAnd I can\\'t control it\\nNo, I can\\'t control it\\n[Chorus]\\nI couldn\\'t be there to make friends, to drink coffee\\nAnd watch TV with you in the evening\\nI just wanted to be there to see you\\nAnd be a legend in your story\\nYou\\'d tell your friends, \"I met this girl\\nAnd she\\'s gonna be somebody\\nShe\\'s gonna do something amazing\\nWith her life\\'\"\\nAnd they\\'d say, \"Who is she?\"\\nAnd you would say, \"Well, I don\\'t know\\nBut I met her in a coffee shop\\nWhen I was 19, in a T-shirt and jeans\\nAnd she\\'s gonna change the world\"',\n", - " 'id': 9538403},\n", - " {'name': 'Stars',\n", - " 'artist': 'Ozuna',\n", - " 'llama_response': 'Title \"Imagination\\'s Power\"\\n\\nVerse 1 (Ozuna)\\nYo quiero vivir mi vida, sin temor a lo que digan\\nSigo mi corazón, sin pararme en los obstáculos\\nNo me importa lo que dice el mundo, yo sé lo que quiero\\nYa sé que puedo hacerlo, si imagino que puedo\\n\\nChorus (feat. English-speaking artist)\\nImagination\\'s power, it sets us free\\nWe can be anything we want to be\\nNo limits, no fears, just pure imagination\\nMaking our dreams come true, it\\'s our only vision\\n\\nVerse 2 (Ozuna)\\nSometimes I feel like giving up, but then I remember\\nThe power of imagination, it never forgets\\nIt helps me find the strength, to keep moving forward\\nAnd never let anyone else define my destiny\\n\\nChorus (feat. English-speaking artist)\\nImagination\\'s power, it sets us free\\nWe can be anything we want to be\\nNo limits, no fears, just pure imagination\\nMaking our dreams come true, it\\'s our only vision\\n\\nVerse 3 (English-speaking artist)\\nI know it\\'s hard to break free, from the chains that hold us back\\nBut with every breath we take, we can start to attack\\nOur doubts and fears, they fade away\\nAs we embrace the power of our imagination every day\\n\\nChorus (feat. Ozuna)\\nImagination\\'s power, it sets us free\\nWe can be anything we want to be\\nNo limits, no fears, just pure imagination\\nMaking our dreams come true, it\\'s our only vision\\n\\nBridge (Ozuna)\\nYo creo en mi imaginación, es mi fuego interno\\nEl que me hace seguir adelante, sin importar el costo\\nYo sé que puedo hacerlo, porque imagino que puedo\\nY eso es lo que me hace seguir luchando, hasta el final\\n\\nChorus (feat. English-speaking artist)\\nImagination\\'s power, it sets us free\\nWe can be anything we want to be\\nNo limits, no fears, just pure imagination\\nMaking our dreams come true, it\\'s our only vision\\n\\nOutro (Ozuna)\\nAsí que no dejes que nadie te detenga\\nSigue tu camino, y no te rindas\\nCon la fuerza de la imaginación, puedes hacer lo que quieras\\nY vivirás tu vida al máximo, sin temor a lo que digan.\\n',\n", - " 'lyre_response': '[Intro Ozuna]\\nWoh-oh, woh-oh\\n[Letra de \"La Felicidad\"]\\n[Coro Ozuna & \\nKelsea Ballerini]\\nSé que algunos pueden no entender\\nCuando digo que la felicidad\\nNoelia, Noé, Félix, eso es lo que dijeron\\nPero yo quiero que me creas\\nY te voy a mostrar\\nQue es posible alcanzar\\n[Verso 1 Ozuna]\\nCuando llego a una fiesta\\nMe ponen a bailar\\nCuando me enamoro\\nPasajero\\nCuando quiero sentirme\\nDifícil\\nCuando digo que la felicidad\\n[Coro Ozuna & \\nKelsea Ballerini]\\nSé que algunos pueden no entender\\nCuando digo que la felicidad\\nNoelia, Noé, Félix, eso es lo que dijeron\\nPero yo quiero que me creas\\nY te voy a mostrar\\nQue es posible alcanzar\\n[Post-Coro Ozuna & \\nKelsea Ballerini]\\nImagina lo que sería\\nSi de verdad creyeras en algo\\nTu suerte lo cambiaría\\nY alcanzarías lo más alto (Lo más alto)\\n(Woh-oh, woh-oh)\\nImagina lo que sería\\nSi de verdad creyeras en algo\\nTu suerte lo cambiaría\\nY alcanzarías lo más alto\\n[Verso 2 Ozuna & \\nKelsea Ballerini]\\nYo vendo cosas en la calle\\nSé que algunos lo dudan\\nPero yo te voy a mostrar\\nQue es posible alcanzar (Woh-oh, woh-oh)\\nCuando llego a una fiesta\\nMe ponen a bailar\\nCuando me enamoro\\nPasajero\\nCuando quiero sentirme\\nDifícil\\nCuando digo que la felicidad [Coro Ozuna & \\nKelsea Ballerini]\\nSé que algunos pueden no entender\\nCuando digo que la felicidad\\nNoelia, Noé, Félix, eso es lo que dijeron\\nPero yo quiero que me creas\\nY te voy a mostrar\\nQue es posible alcanzar\\n[Post-Coro Ozuna & \\nKelsea Ballerini]\\nImagina lo que sería\\nSi de verdad creyeras en algo\\nTu suerte lo cambiaría\\nY alcanzarías lo más alto\\n(Woh-oh, woh-oh)\\nImagina lo que sería\\nSi de verdad creyeras en algo\\nTu suerte lo cambiaría\\nY alcanzarías lo más alto\\n[Verso 3 Kelsea Ballerini]\\nMe gusta soñar\\nYa no piensas mal de mí\\nMe gusta soñar\\nYa no piensas mal de mí\\nMe gusta soñar\\nYa no piensas mal de mí\\nMe gusta soñar\\nYa no piensas mal de mí\\nCuando creas\\nEn algo, puedes alcanzar\\nCuando creas\\nEn algo, puedes alcanzar\\n(Woh-oh, woh-oh)\\n[Coro Ozuna & \\nKelsea Ballerini]\\nSé que algunos pueden no entender\\nCuando digo que la felicidad\\nNoelia, Noé, Félix, eso es lo que dijeron\\nPero yo quiero que me creas\\nY te voy a mostrar\\nQue es posible alcanzar\\n[Outro Ozuna]\\nWoh-oh, woh-oh',\n", - " 'id': 8733841},\n", - " {'name': 'Fighting Myself',\n", - " 'artist': 'Linkin Park',\n", - " 'llama_response': \"Verse 1 (Mike Shinoda)\\nI'm stuck in this hellhole, can't escape the past\\nRegret lingers like a ghost, won't let me move on at last\\nMistakes I've made, they haunt me every day\\nCan't find my way, lost in a sea of dismay\\n\\nChorus (Powerful Rock Chorus)\\nI'm trying to break free, but the weight is too much\\nCan't shake off the shame, it's tearing me apart\\nI'm searching for a way out, but it's hard to find\\nThe demons inside, they're always on my mind\\n\\nVerse 2 (Chester Bennington)\\nI'm drowning in my thoughts, can't find my way out\\nThe guilt and the shame, they're crushing me without a doubt\\nI'm trying to rise above, but it's hard to find the strength\\nThe memories of what I've done, they haunt me with their length\\n\\nChorus (Powerful Rock Chorus)\\nI'm trying to break free, but the weight is too much\\nCan't shake off the shame, it's tearing me apart\\nI'm searching for a way out, but it's hard to find\\nThe demons inside, they're always on my mind\\n\\nBridge (Mike Shinoda)\\nI know I'm not alone, we all make mistakes\\nBut the weight of our own regret, it's hard to escape\\nWe're all fighting the same fight, trying to find our way\\nBut the past can be cruel, it'll keep us in its sway\\n\\nChorus (Powerful Rock Chorus)\\nI'm trying to break free, but the weight is too much\\nCan't shake off the shame, it's tearing me apart\\nI'm searching for a way out, but it's hard to find\\nThe demons inside, they're always on my mind\\n\\nOutro (Chester Bennington)\\nI'll keep on fighting, I won't give up the fight\\nI'll rise above the pain, I'll shine with all my might\\nI'll find my way out, I'll leave the past behind\\nI'll be free from the regret, I'll be free to shine.\\n\",\n", - " 'lyre_response': \"[Intro]\\nI'm just barely holdin' on\\n[Verse 1 Mike Shinoda]\\nSometimes I wake up\\nPraying that it's all a dream\\nTrying to convince myself\\nThat what you're feelin' isn't real\\nAnd you know I feel your pain\\nIt's all in your head, you know that\\nBut sometimes it ain't\\nSometimes the things you can't say\\nMake you wanna scream\\n[Chorus Chester Bennington]\\nAll you can do is all you can do\\nAll you can do is all you can do\\nI'm just barely holdin' on\\n[Verse 2 Mike Shinoda]\\nCrawlin' through the mud\\nHands bloodied, knees scrapped\\nFeelin' like a god\\nBut not the divine one\\nMore like the tarnished, broken kind\\nPrayin' someone will come and save me\\nSave me from this sea of regret\\n[Chorus Chester Bennington]\\nAll you can do is all you can do\\nAll you can do is all you can do\\nI'm just barely holdin' on\\nAll you can do is all you can do\\nAll you can do is all you can do\\nI'm just barely holdin' on\\nAll you can do is all you can do\\nAll you can do is all you can do [Outro Mike Shinoda]\\nI'm just barely holdin' on\\nIt's all in your head, you know that\\nBut sometimes it ain't\\nSometimes the things you can't say\\nMake you wanna scream\",\n", - " 'id': 8760629},\n", - " {'name': 'That’s Not How This Works',\n", - " 'artist': 'Charlie Puth',\n", - " 'llama_response': \"(Verse 1)\\nI thought we had it all figured out, but now I'm feeling doubt\\nEvery time you say you love me, it's like a rollercoaster ride\\nOne minute you're in, the next you're out, it's like you're hiding\\nSignals crossed, mixed messages, I'm losing my mind\\n\\n(Chorus)\\nThat's not how this works, no, no, no\\nCan't you see the love we had is gone?\\nThat's not how this works, no, no, no\\nWe need to face the truth, it's time to move on\\n\\n(Verse 2)\\nI try to hold on to what we had, but it's slipping away\\nEvery time I think you're back, you pull me back again\\nI'm drowning in your inconsistency\\nCan't you see the hurt you're causing me?\\n\\n(Chorus)\\nThat's not how this works, no, no, no\\nCan't you see the love we had is gone?\\nThat's not how this works, no, no, no\\nWe need to face the truth, it's time to move on\\n\\n(Bridge)\\nI thought we had a love that would last\\nBut now it's just a memory, a past\\nI'm trying to hold on to what we had\\nBut it's like trying to hold on to sand\\n\\n(Chorus)\\nThat's not how this works, no, no, no\\nCan't you see the love we had is gone?\\nThat's not how this works, no, no, no\\nWe need to face the truth, it's time to move on\\n\\n(Outro)\\nI'll always remember the way you made me feel\\nBut I can't keep holding on to a love that's no longer real\\nThat's not how this works, no, no, no\\nIt's time to move on, let go of the past.\\n\",\n", - " 'lyre_response': \"[Intro]\\nThat's not how this works\\nThat's not how this works\\nThat's not how this works\\nThat's not how this works\\n[Verse 1]\\nYou're so confused, you're so undecided\\nYou're sending me mixed signals, I'm getting frustrated\\nYou're saying you're tired, you're saying you're bored\\nYou're going away, but you keep on coming back for more\\n[Pre-Chorus]\\nBut if you want me to stay, you're gonna have to do better\\nYou've got to give me something to believe in\\n[Chorus]\\nThat's not how this works\\nYou can't keep me guessin'\\nThat's not how this works\\nYou're so inconsistent\\nThat's not how this works\\nYou're not making it easy\\nThat's not how this works\\nOh, that's not how this works [Verse 2]\\nYou're overprotective, you're underconstructive\\nYou're always so critical, I'm getting destructive\\nYou're saying you're sorry, you're saying you love me\\nYou're going away, but you keep on coming back for me, for me [Pre-Chorus]\\nBut if you want me to stay, you're gonna have to do better\\nYou've got to give me something to believe in\\n[Chorus]\\nThat's not how this works\\nYou can't keep me guessin'\\nThat's not how this works\\nYou're so inconsistent\\nThat's not how this works\\nYou're not making it easy\\nThat's not how this works\\nOh, that's not how this works [Bridge]\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\nI'm crying, I'm crying\\n[Breakdown]\\nThat's not how this works\\nYou can't keep me guessin'\\nThat's not how this works\\nYou're so inconsistent\\nThat's not how this works\\nYou're not making it easy\\nThat's not how this works [Chorus]\\nThat's not how this works\\nYou can't keep me guessin'\\nThat's not how this works\\nYou're so inconsistent\\nThat's not how this works\\nYou're not making it easy\\nThat's not how this works\\nOh, that's not how this works\",\n", - " 'id': 7358067},\n", - " {'name': 'Sweeter Than Fiction',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': \"Verse 1\\nI was lost in the dark, couldn't find my way\\nAdversity knocked me down, day by day\\nBut I won't give up, I won't give in\\nI'll rise up, like a phoenix, and start again\\n\\nChorus\\nI've been through the fire, and I've been through the rain\\nBut I'm not the same, I've been remade\\nI've learned to rise, I've learned to shine\\nI'm standing tall, I'm feeling fine\\n\\nVerse 2\\nI've seen the depths of my soul, and I've seen the light\\nI've fought for every breath, and I've fought for my life\\nBut I won't forget, where I've been\\nI'll carry it with me, like a lesson learned\\n\\nChorus\\nI've been through the fire, and I've been through the rain\\nBut I'm not the same, I've been remade\\nI've learned to rise, I've learned to shine\\nI'm standing tall, I'm feeling fine\\n\\nBridge\\nI'll rise above, I'll rise above the pain\\nI'll rise above, I'll rise above the shame\\nI'll rise above, I'll rise above the fear\\nI'll rise above, I'll rise above the tears\\n\\nChorus\\nI've been through the fire, and I've been through the rain\\nBut I'm not the same, I've been remade\\nI've learned to rise, I've learned to shine\\nI'm standing tall, I'm feeling fine\\n\\nOutro\\nI've overcome, I've risen from the ashes\\nI've found my voice, I've found my cause\\nI'll keep on fighting, I'll keep on shining\\nI'm a survivor, I'm a warrior, I'm a queen.\\n\",\n", - " 'lyre_response': \"[Intro]\\nI remember, I was lost\\nAnd no one would answer\\nI was the missing\\nAnd no one would trust me\\nAnd I spent years, oh\\nYears of my life\\nTrying to make them understand\\n[Verse 1]\\nI was in the dark, now I'm seein' the light\\nI was stuck in the wreckage, but now I'm flyin' high\\nI was under the table, but now I'm on top of the hill\\nI was surrounded by shadows, but now I can see\\n[Pre-Chorus]\\nIt takes time, it takes work\\nIt takes thinkin' you'll never get there\\nBut you'll learn to soar, and you'll never fall\\n[Chorus]\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\n'Cause I fought, and it hurt so good, and it hurt so bad (So good, so bad)\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\nAnd you will win too, and it will feel so good, and it will hurt so bad (So good, so bad)\\n[Verse 2]\\nI remember, I was lost\\nAnd no one would answer\\nI was the missing\\nAnd no one would trust me\\nAnd I spent years, oh\\nYears of my life\\nTrying to make them understand\\n[Pre-Chorus]\\nIt takes time, it takes work\\nIt takes thinkin' you'll never get there\\nBut you'll learn to soar, and you'll never fall\\n[Chorus]\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\n'Cause I fought, and it hurt so good, and it hurt so bad (So good, so bad)\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\nAnd you will win too, and it will feel so good, and it will hurt so bad (So good, so bad)\\n[Bridge]\\nI've got a story to tell\\nI've got a story to sell\\nI've got a story to sell\\nI've got a story to tell Sell\\n[Chorus]\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\n'Cause I fought, and it hurt so good, and it hurt so bad (So good, so bad)\\nAnd I won, and it feel so good, and it feel so bad (So good, so bad)\\nAnd you will win too, and it will feel so good, and it will hurt so bad (So good, so bad) [Outro]\\nIt takes time, it takes work\\nIt takes thinkin' you'll never get there\\nBut you'll learn to soar, and you'll never fall\\nIt takes time, it takes work\\nIt takes thinkin' you'll never get there\\nBut you'll learn to soar, and you'll never fall\",\n", - " 'id': 241562},\n", - " {'name': 'HOPE',\n", - " 'artist': 'NF',\n", - " 'llama_response': \"Verse 1\\nI was lost in my own mind, consumed by my fears\\nDoubt crept in like a thief, stole my self-respect and my tears\\nBut I won't let it define me, no, I won't give in\\nI'll rise above the noise, and let my voice be heard within\\n\\nChorus\\nI'm breaking free from the chains of my past\\nLeaving the doubts and the fears, where they'll forever last\\nI'm learning to love myself, to let go of the pain\\nI'm growing, I'm healing, I'm becoming the person I'll remain\\n\\nVerse 2\\nI used to hide behind a mask, a facade of who I thought I should be\\nBut the more I tried to fit in, the more I lost my identity\\nNow I see the light, the truth, the beauty in my flaws\\nAnd I'm embracing every part of me, no more hiding in the shadows\\n\\nChorus\\nI'm breaking free from the chains of my past\\nLeaving the doubts and the fears, where they'll forever last\\nI'm learning to love myself, to let go of the pain\\nI'm growing, I'm healing, I'm becoming the person I'll remain\\n\\nBridge\\nLife may throw us curves, but we're strong enough to face\\nWe're warriors, we're survivors, we're here to embrace\\nThe struggles we've endured, the scars we've earned\\nWe're proof that we can rise, that we can transform\\n\\nChorus\\nI'm breaking free from the chains of my past\\nLeaving the doubts and the fears, where they'll forever last\\nI'm learning to love myself, to let go of the pain\\nI'm growing, I'm healing, I'm becoming the person I'll remain\\n\\nOutro\\nI'm not the same person I used to be\\nI've grown, I've learned, I've found my identity\\nI'm proud of who I am, I'm proud of who I've become\\nI'm breaking free, I'm rising up, I'm living life to the fullest.\\n\",\n", - " 'lyre_response': \"[Verse]\\nYeah, it's been a while\\nI've been tryna figure out how to do this without breaking down\\nI'm not the same person that you knew\\nI've been workin' on myself, I'm different now\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\n[Chorus]\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\n[Verse]\\nIt's gonna take some time\\nI'm tryna figure out how to do this without breaking down\\nI'm not the same person that you knew\\nI've been workin' on myself, I'm different now\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\nI'm not perfect, but I'm worth it\\n[Chorus]\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it [Outro]\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\\nI'm worth it, I'm worth it\",\n", - " 'id': 8829528},\n", - " {'name': 'STATE OF THE WORLD',\n", - " 'artist': 'Michael Jackson',\n", - " 'llama_response': \"(Verse 1)\\nWe're living in a world where injustice reigns\\nFrom Qatar to the streets, inequality remains\\n3-5-7-9, equality for all every time\\nBut they don't really care about us, it's a crime\\n\\n(Chorus)\\n2-4-6-8, Qatar must legislate\\nWe demand action, it's time to state\\nWe want equality, we want change\\nWe won't be silent, we'll rearrange\\n\\n(Verse 2)\\nFrom discrimination to oppression, we see\\nMarginalized groups suffer, can't be free\\nTheir voices silenced, their rights ignored\\nIt's time for us to rise, and let our voices be heard\\n\\n(Chorus)\\n2-4-6-8, Qatar must legislate\\nWe demand action, it's time to state\\nWe want equality, we want change\\nWe won't be silent, we'll rearrange\\n\\n(Bridge)\\nWe call on FIFA, and all in power\\nTo stand with us, and show they care\\nFor the love of the game, let's unite\\nAnd end this injustice, let's ignite\\n\\n(Spoken Word)\\nWe're not just talking about a game\\nWe're talking about lives, we're talking about shame\\nShame on you, FIFA, for turning a blind eye\\nShame on you, world, for standing by\\n\\n(Chorus)\\n2-4-6-8, Qatar must legislate\\nWe demand action, it's time to state\\nWe want equality, we want change\\nWe won't be silent, we'll rearrange\\n\\n(Outro)\\nSo let's stand up, and let our voices be heard\\nLet's demand change, and let love be the word\\nWe'll spread love over hate, we'll rise above\\nFor equality and justice, we'll never give up.\\n\",\n", - " 'lyre_response': '[Intro]\\nThey don\\'t really care about us\\nThey don\\'t really care about us\\nThey don\\'t really care about us\\nThey don\\'t really care\\n[Verse 1]\\nWe\\'re desperate\\nSo, what do we do?\\nWhen we\\'re feeling that way\\nWe all need a little bit of empathy\\nWe\\'re hopeless\\nSo, what do we do?\\nWhen we\\'re feeling that way\\nWe need to come together and fight for the rights of the people, \\nof the people\\nWe\\'re tired\\nSo, what do we do?\\nWhen we\\'re feeling that way\\nWe all need to come together and fight for the rights of the people, of the people\\n[Refrain]\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time\\n[Verse 2]\\nThey don\\'t really care about us\\nThey go, \"We did it for the game\"\\nBut what do they really care about?\\nThey don\\'t really care about us\\nThey don\\'t really care about us\\nThey go, \"We did it for the game\"\\nBut what do they really care about? [Chorus]\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time\\nThey don\\'t really care about us\\nWhat do they really care about?\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time\\nThey don\\'t really care about us\\nWhat do they really care about? [Spoken Word]\\nI\\'m talking to you, FIFA\\nI\\'m talking to you, the fans\\nLet\\'s all go crazy\\nBut, you know what?\\nWe\\'re not gonna go crazy\\nUntil we get it right\\nWhat do they really care about?\\nWhat do they really care about? [Bridge]\\nLove, love, love, love\\nOver hate, hate, hate, hate\\nLove, love, love, love\\nOver hate, hate, hate, hate\\n[Verse 3]\\nSo, let\\'s all come together\\nAnd fight for the rights of the people, of the people\\nWith our voices, we will be heard\\nWe\\'ll fight for the rights of the people, of the people\\nWe\\'re hopeless\\nSo, what do we do?\\nWhen we\\'re feeling that way\\nWe need to come together and fight for the rights of the people, of the people\\n[Chorus]\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time\\nThey don\\'t really care about us\\nWhat do they really care about?\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time\\nThey don\\'t really care about us\\nWhat do they really care about?\\n[Refrain]\\n2-4-6-8 Qatar must legislate\\n3-5-7-9 Equality for all every time',\n", - " 'id': 8484071},\n", - " {'name': 'Gimme',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Title Gimme What I Want (feat. Chronixx)\\n\\nVerse 1 (Sam Smith)\\nI've been searching for so long\\nTryna find my place in this world\\nBut every time I think I'm getting close\\nIt slips right through my hands like a bird\\n\\nChorus (Sam Smith & Chronixx)\\nGimme what I want, gimme what I need\\nGimme the love that I deserve\\nGimme the chance to be free\\nGimme what I want, gimme what I need\\n\\nVerse 2 (Chronixx)\\nI hear you crying out for more\\nBut you ain't getting it, no more\\nYou gotta stand up for what you desire\\nAnd demand it like a burning fire\\n\\nChorus (Sam Smith & Chronixx)\\nGimme what I want, gimme what I need\\nGimme the love that I deserve\\nGimme the chance to be free\\nGimme what I want, gimme what I need\\n\\nBridge (Sam Smith)\\nI know it's hard to break the mold\\nBut I can't keep living in the past\\nI need to take a stand and make it bold\\nGimme what I want, gimme what I need at last\\n\\nChorus (Sam Smith & Chronixx)\\nGimme what I want, gimme what I need\\nGimme the love that I deserve\\nGimme the chance to be free\\nGimme what I want, gimme what I need\\n\\nOutro (Sam Smith)\\nI'll keep on fighting for my rights\\nGimme what I want, gimme what's right\\nI won't back down, I won't give in\\nGimme what I want, gimme what I need within\\n\",\n", - " 'lyre_response': \"[Intro Poo Bear]\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want (What I want)\\n[Verse 1 Sam Smith]\\nGimme what I want\\n(What I want), gimme what I want\\n(What I want)\\nGimme what I want\\n(What I want), gimme what I want\\n(What I want)\\nGimme what I want\\n(What I want), gimme what I want\\n(What I want)\\nI wanna know, gimme what I want\\n(What I want), gimme what I want\\n(What I want)\\nI wanna see, gimme what I want\\n(What I want), gimme what I want\\n(What I want)\\nI wanna be, gimme what I want\\n(What I want), gimme what I want\\n(What I want)\\n[Chorus Poo Bear & \\nSam Smith]\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want What I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want What I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want (What I want)\\n[Verse 2 Koffee]\\nGonna get what's mine\\n(What I want), gonna get what's mine\\n(What I want)\\nPut in the work and I shine\\nGonna get what's mine\\n(What I want), gonna get what's mine\\n(What I want)\\nPut in the work and I shine\\nGonna get what's mine\\n(What I want), gonna get what's mine\\n(What I want)\\nPut in the work and I shine\\nGonna get what's mine\\n(What I want), gonna get what's mine\\n(What I want)\\nPut in the work and I shine [Chorus Poo Bear & \\nSam Smith]\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want (What I want)\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want (What I want)\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want\\nOh-oh, gimme what I want\\nGimme what I want (What I want)\",\n", - " 'id': 8542976},\n", - " {'name': 'Daylight',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI was in the trap, sippin' on a 40, when I seen it all go down\\nLost my homie to a snitch, had to watch him hit the ground\\nFeels like betrayal, like a knife in my back, every day\\nBut I ain't tryna fall apart, gotta keep my head straight\\n\\nChorus\\nShe said she loved me, but she lied, now I'm left to die\\nBut I won't let it get me down, gon' rise above the sky\\nGot my crew by my side, they know I'm the real deal\\nGot my own lane, ain't nobody touchin' my wheels\\n\\nVerse 2\\nForgive me for my sins, but I ain't never gonna change\\nI'm the king of this game, ain't nobody gonna rearrange\\nLoyalty is key, that's what I preach every day\\nBut when you're in the streets, you gotta do what you gotta say\\n\\nChorus\\nShe said she loved me, but she lied, now I'm left to die\\nBut I won't let it get me down, gon' rise above the sky\\nGot my crew by my side, they know I'm the real deal\\nGot my own lane, ain't nobody touchin' my wheels\\n\\nVerse 3\\nI seen it all, from the trap to the mansion\\nBut the streets will always be my home, that's the only one I got\\nTold you I was hardened, that's what they call me\\nBut deep down, I'm still the same, just a kid from the 6\\n\\nChorus\\nShe said she loved me, but she lied, now I'm left to die\\nBut I won't let it get me down, gon' rise above the sky\\nGot my crew by my side, they know I'm the real deal\\nGot my own lane, ain't nobody touchin' my wheels\\n\\nOutro\\nThought I was invincible, but life had other plans\\nBut I won't let it break me, gon' rise above the hands\\nI got my own connections, got my own crew\\nGot my own voice, ain't nobody gonna silence me, boo\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, it's Drake\\nYou wouldn't believe your eyes\\n[Pre-Chorus]\\nAnd when it came down to loading up the clips\\nHe took the guns, I took the rings\\nShe gon' tell me lies if she goes talkin' to the cops\\nI should probably kill you before the trial, that's when\\n[Chorus]\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\n[Verse 1]\\nNever knew I'd give your ass a fade, ha\\nHad to do it, you a dead man, walkin' Zed, ha\\nI'm connectin' all the dots, doin' numbers with Errol, ha\\nI'll be the net, you'll be the ball, you'll be goin' over, ha\\n[Pre-Chorus]\\nAnd when it came down to loading up the clips\\n (Uh) He took the guns, I took the rings\\n (Uh) She gon' tell me lies if she goes talkin' to the cops\\n (Uh) I should probably kill you before the trial, that's when (Woah)\\n[Chorus]\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\n[Verse 2]\\nYou're a fun one, once they run one, gotta get some, right?\\nYou know I'm a tryna fuck, tell me where the body is, right?\\nI mean, you were just with him, right?\\nTell me where the body is, I'll do the same with him, right?\\nTell me where the body is, right?\\n'Cause if you're with me, you won't ever get hurt, right?\\nIf he gets hurt, you can tell me, right?\\nI won't ever hurt you, you can tell me, right?\\nIf you love me, you won't ever leave me, right?\\nIf he loves you, you'll never leave him, right?\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\n[Chorus]\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin' (Woah, woah, woah, woah, woah, \\ndude, where is it?\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\nI found out it was you that told the police where my stash was hidin'\\n (Woah, woah, woah, woah, woah)\\n[Outro]\\nHey, yeah, man\\nIt's 6ix, man\\nAyy, man\\nWhat's up, man?\\nNever take pictures with niggas, man\\nYou never know who might be snitchin', man\\nNever trust a nigga, man\\nJust like that, man\\nYeah, it's a cold world, man\\nBut the money keep switchin' hands, man\\nAnd the cars keep movin', man\\nBut the game stays the same, man\\nAnd I still got my head in the clouds, man\\nBut my feet on the ground, man\\nYeah, it's Drake\\nMan\",\n", - " 'id': 9592328},\n", - " {'name': 'Kill Bill',\n", - " 'artist': 'The Weekend',\n", - " 'llama_response': \"Verse 1\\nI thought I was strong, but you left me for dead\\nNow I'm lost in my head, consumed by my dread\\nI tried to move on, but I can't shake the past\\nEvery night I see your face, and my heart crashes\\n\\nChorus\\nI'm crawling through the dark, searching for a light\\nTryna find a way to make it right\\nBut every time I see you with someone new\\nI wanna rip their throat, and make them feel the blues\\nI'm lost in this obsession, it's eating me alive\\nI'm teetering on the edge, of a darker side\\n\\nVerse 2\\nI went to therapy, but it didn't help me much\\nJust a temporary fix, for a lifetime of such\\nI thought I'd found the cure, but it was just a drug\\nNow I'm hooked on you, and I can't break free\\n\\nChorus\\nI'm crawling through the dark, searching for a light\\nTryna find a way to make it right\\nBut every time I see you with someone new\\nI wanna rip their throat, and make them feel the blues\\nI'm lost in this obsession, it's eating me alive\\nI'm teetering on the edge, of a darker side\\n\\nBridge\\nI know I'm not myself, but I can't stop myself\\nFrom reaching out, from trying to mend the hurt\\nBut every time I see you happy, it's like a knife\\nCutting deeper, into my soul, and I can't survive\\n\\nChorus\\nI'm crawling through the dark, searching for a light\\nTryna find a way to make it right\\nBut every time I see you with someone new\\nI wanna rip their throat, and make them feel the blues\\nI'm lost in this obsession, it's eating me alive\\nI'm teetering on the edge, of a darker side\\n\\nOutro\\nI'm trapped in this obsession, it's eating me alive\\nI'm teetering on the edge, of a darker side\\nI'm lost in this love, it's consuming me whole\\nI'm crawling through the dark, searching for a light.\\n\",\n", - " 'lyre_response': \"[Intro]\\nMy therapist tells me I'm better\\nSo much better than I was\\nBut I'm still not good enough\\nI look in the mirror and I see a better me\\nBut I'm still not good enough\\n[Verse 1]\\nI've been taking my medicine\\nJust not in the way that you'd think\\nI'm not drinking or using\\nBut that doesn't mean I'm using my brain\\nNo, I'm not using my brain\\nI'm smoking your cigarettes\\nAnd drinking your wine\\nBut that doesn't mean I'm not in pain\\nOh, I'm in so much pain\\n[Pre-Chorus]\\nYou're with somebody new\\nI can see it in your face, in your posture, in your smile\\nAnd it shows that you're happy, so happy, but\\n[Chorus]\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\n[Verse 2]\\nTherapy's great, but it's not magic\\nI'm not cured, I'm just more aware\\nOf my actions and how they affect you\\nBut that doesn't mean I'm in control, no\\nI'm not in control [Pre-Chorus]\\nYou're with somebody new\\nI can see it in your face, in your posture, in your smile\\nAnd it shows that you're happy, so happy, but\\n[Chorus]\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\nI think I might fuck up your shit\\nI think I might fuck up your shit\\nAnd I know it's wrong, but I just can't help myself\\n[Bridge]\\nSo I'll wait in the dark for you\\nJust in case\\nYou realize that you need me too\\nI'll be waiting in the dark for you\\nJust in case\\nYou realize that you need me too\\nSo I'll wait in the dark for you\\nJust in case\\nYou realize that you need me too\\nI'll be waiting in the dark for you\\nJust in case\\nYou realize that you need me too\\nSo I'll wait in the dark for you\\nJust in case\\nYou realize that you need me too\\nI'll be waiting in the dark for you\\nJust in case\\nYou realize that you need me too\\nSo I'll wait in the dark for you\\nJust in case\\nYou realize that you need me too\\nI'll be waiting in the dark for you\\nJust in case\\nYou realize that you need me too\\nSo I'll wait in the dark for you\\nJust in case\\nYou realize that you need me too\\nI'll be waiting in the dark for you\\nJust in case\\nYou realize that you need me too\",\n", - " 'id': 8616820},\n", - " {'name': 'HVN ON EARTH',\n", - " 'artist': 'Kodak Black',\n", - " 'llama_response': \"(Verse 1)\\nI was born in the streets, but I ain't never been weak\\nGot my eyes on the prize, and I won't never seek\\nI'm a H.O.E, H.O.E, Heaven on earth, that's what I'm living for\\nGot my homies by my side, we all grinding for more\\n\\n(Chorus)\\nH.O.E, H.O.E, Heaven on earth, that's where I wanna be\\nH.O.E, H.O.E, Where the money long and the fame is free\\n\\n(Verse 2)\\nI been through the struggle, but I ain't never lose\\nKept my head on a swivel, and I won't never choose\\nMy ambition's my fuel, it's what keeps me alive\\nGot my eyes on the top, and I won't never arrive\\n\\n(Chorus)\\nH.O.E, H.O.E, Heaven on earth, that's where I wanna be\\nH.O.E, H.O.E, Where the money long and the fame is free\\n\\n(Verse 3)\\nLoyalty is key, that's what I been taught\\nCan't nobody touch me, 'cause I got my own cloth\\nI'm a H.O.E, H.O.E, Heaven on earth, that's my crew\\nWe all grinding for the same thing, and that's the truth\\n\\n(Chorus)\\nH.O.E, H.O.E, Heaven on earth, that's where I wanna be\\nH.O.E, H.O.E, Where the money long and the fame is free\\n\\n(Bridge)\\nI ain't never gonna stop, until I reach my goal\\nGot my eyes on the prize, and I won't never soil\\nI'm a H.O.E, H.O.E, Heaven on earth, that's my life\\nGot my homies by my side, we all living right\\n\\n(Chorus)\\nH.O.E, H.O.E, Heaven on earth, that's where I wanna be\\nH.O.E, H.O.E, Where the money long and the fame is free\\n\\n(Outro)\\nI'm a H.O.E, H.O.E, Heaven on earth, that's my name\\nGot my homies by my side, and we all living large\\nI'm a H.O.E, H.O.E, Heaven on earth, that's my goal\\nGot my eyes on the prize, and I won't never fold.\\n\",\n", - " 'lyre_response': '[Intro]\\nH.O.E, H.O.E, Heaven on earth\\nH.O.E, H.O.E, Heaven on earth\\nH.O.E, H.O.E, Heaven on earth\\nH.O.E, H.O.E, Heaven on earth\\n[Hook]\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth\\n[Verse 1]\\nThis is Kodak, Jackie Chan, he fight drunk\\nBust a move, I\\'m dancing with the devil, it\\'s okay, okay\\nI got twenty hoes live, like how I\\'m stayin\\' so clean, okay\\nI like youngins, fresh out of high school, needy, okay\\nMy jaw lockin\\', chew on my money, I can\\'t eat, okay\\nI\\'m on probation, can\\'t leave town, I\\'m stuck, okay\\nBail bondsman, his number, I keep on my phone, okay\\nI can\\'t sleep, I\\'m up still, I\\'m doin\\' one hundred, okay\\nI might fuck up a semi, comin\\' down on a bitch, okay\\nThis aZiano, made it from slavin\\', I don\\'t shower, okay\\nI\\'m at the crib, it\\'s a crackhouse, I don\\'t know, okay\\nI can\\'t do this, I\\'m a ghost, you can\\'t follow, okay\\nThis for all my ghosts, ride with me, you can\\'t slow me, okay\\n[Hook]\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth [Verse 2]\\nFucked a bitch twice, in the same outfit, I\\'m nasty, I\\'m vicious\\nIn another city, another stay-away from my daughter, I\\'m evil\\nThirty bitches, thirty dicks, I\\'m gettin\\' money, I\\'m happy\\nI\\'m sippin\\' syrup, I can\\'t walk straight, I\\'m silly, I\\'m saucy\\nI\\'m poppin\\' Xans, I can\\'t feel my face, I\\'m starin\\' at the ceilin\\'\\nI\\'m doin\\' fifties, I can\\'t reach my knees, I\\'m swearin\\' on my momma\\nI\\'m runnin\\' from the police, I\\'m drivin\\' on the median\\nI\\'m smokin\\' on the marijuana, I\\'m screamin\\', \"Fuck Bill Clinton\"\\nFuck Donald Trump, I\\'m sure he hate me, I\\'m sure he love it\\nThis for all my niggas in the Fed-Ex, this is overnight it\\n[Hook]\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth, this is Heaven on earth\\nThis is Heaven on earth',\n", - " 'id': 9424345},\n", - " {'name': 'Unholy',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI've got a secret, it's something I can't reveal\\nA hidden truth that I've kept locked up for years\\nI've lived a double life, with two faces so bright\\nOne for the world to see, and one for the night\\n\\nChorus\\nBut when the lights are low, and the night is still\\nI let my true self shine, and I give in to the thrill\\nOf the forbidden, the taboo, the secrets we keep\\nIt's a game we play, with hearts that beat\\n\\nVerse 2\\nI've seen the look in your eyes, the one that's so bold\\nThe way you whisper my name, when no one's looking old\\nI know you're just like me, with secrets to hide\\nAnd when we're alone, we'll let our guardides\\n\\nChorus\\nBut when the lights are low, and the night is still\\nI let my true self shine, and I give in to the thrill\\nOf the forbidden, the taboo, the secrets we keep\\nIt's a game we play, with hearts that beat\\n\\nBridge\\nWe dance in the shadows, with steps so refined\\nOur secrets our safe, with the night as our shrine\\nWe're the kings and queens, of this game we play\\nWith hearts that beat, for the thrill of the night\\n\\nChorus\\nBut when the lights are low, and the night is still\\nI let my true self shine, and I give in to the thrill\\nOf the forbidden, the taboo, the secrets we keep\\nIt's a game we play, with hearts that beat\\n\\nOutro\\nAnd when the night is over, and the sun starts to rise\\nWe'll hide our secrets, and put on our disguise\\nBut the thrill of the night, will always be our prize\\nIn the game of secrecy, where hearts collide.\\n\",\n", - " 'lyre_response': \"[Chorus Sam Smith & \\nKim Petras]\\nI know a place I know a place\\nWe can go to get away from all the people All the people\\nThere's a room There's a room\\nWe can go to keep our secrets out of sight\\nIt's got a lock It's got a lock\\nAnd you know the key is \\n(Turn it and see)\\n[Verse 1 Sam Smith & \\nKim Petras]\\nI know a place (I know a place)\\nWe can go to get away from all the people (All the people)\\nThere's a room (There's a room)\\nWe can go to keep our secrets out of sight\\nDo you dare to come with me?\\n[Pre-Chorus Sam Smith & \\nKim Petras]\\nI'm warning you, it's going to be\\nDangerous, so dangerous\\nYou should never come alone\\n[Chorus Sam Smith & \\nKim Petras]\\nI know a place (I know a place)\\nWe can go to get away from all the people (All the people)\\nThere's a room There's a room\\nWe can go to keep our secrets out of sight\\nIt's got a lock It's got a lock\\nAnd you know the key is \\n(Turn it and see)\\n[Verse 2 Kim Petras]\\nI'm the one (I'm the one)\\nYou've been texting, so sneaky, so sneaky\\nI know you wanna kiss me\\n (I know you wanna kiss me)\\nWhen no one's looking (When no one's looking)\\nI'm the one you should be with\\n (I'm the one you should be with)\\nI'm the one\\n (I'm the one)\\nYou've been texting, so sneaky, so sneaky\\nI know you wanna kiss me\\n (I know you wanna kiss me)\\nWhen no one's looking (When no one's looking)\\nI'm the one you should be with\\n (I'm the one you should be with)\\n[Pre-Chorus Kim Petras]\\nI'm warning you, it's going to be\\nDangerous, so dangerous\\nYou should never come alone\\n[Chorus Kim Petras & \\nSam Smith]\\nI know a place (I know a place)\\nWe can go to get away from all the people (All the people)\\nThere's a room There's a room\\nWe can go to keep our secrets out of sight\\nIt's got a lock It's got a lock\\nAnd you know the key is \\n(Turn it and see)\\n[Bridge Sam Smith & \\nKim Petras]\\nI'll be good, be good\\nI'll be good, be good\\nI'll be good, be good\\nI'll be good\\n (I'll be good)\\nI'll be good, be good\\nI'll be good, be good\\nI'll be good, be good\\nI'll be good (I'll be good)\\n[Chorus Sam Smith & \\nKim Petras]\\nI know a place (I know a place)\\nWe can go to get away from all the people (All the people)\\nThere's a room (There's a room)\\nWe can go to keep our secrets out of sight\\nIt's got a lock It's got a lock\\nAnd you know the key is \\n(Turn it and see)\\nI know a place (I know a place)\\nWe can go to get away from all the people (All the people)\\nThere's a room (There's a room)\\nWe can go to keep our secrets out of sight\\nIt's got a lock It's got a lock\\nAnd you know the key is \\n(Turn it and see)\",\n", - " 'id': 8302862},\n", - " {'name': '8am in Charlotte',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI woke up this mornin', feelin' like a boss,\\nMy cred in the streets is solid, no need to boast,\\nI'm livin' life on my own terms, don't need no one's approval,\\nGot my eyes on the prize, and I'm takin' it to the top, yo.\\n\\nChorus\\nI'm the king of the game, ain't no one touchin' me,\\nGot my crown on tight, and it's plain to see,\\nI'm the one they all come to, when they need a hit,\\nI'm the real deal, and I won't forget,\\nWhere I came from, and who I am,\\nI'm the one they all want, to be just like that.\\n\\nVerse 2\\nI remember when I was young, strugglin' to make a name,\\nHustlin' every day, just to stay in the game,\\nBut now I'm on top, and I ain't never gonna fall,\\nGot my loyal fans, and they're standin' tall,\\nThey know the real me, and they know I'm true,\\nI ain't never gonna let 'em down, I'll always come through.\\n\\nChorus\\nI'm the king of the game, ain't no one touchin' me,\\nGot my crown on tight, and it's plain to see,\\nI'm the one they all come to, when they need a hit,\\nI'm the real deal, and I won't forget,\\nWhere I came from, and who I am,\\nI'm the one they all want, to be just like that.\\n\\nVerse 3\\nBut with success comes fame, and the price I pay,\\nGotta keep my cool, and stay on top of the game,\\nCan't let the haters get to me, gotta keep it real,\\nGot my legacy on my mind, and I won't reveal,\\nMy secrets to the world, gotta keep it locked in,\\nGot my eyes on the future, and I won't give in.\\n\\nChorus\\nI'm the king of the game, ain't no one touchin' me,\\nGot my crown on tight, and it's plain to see,\\nI'm the one they all come to, when they need a hit,\\nI'm the real deal, and I won't forget,\\nWhere I came from, and who I am,\\nI'm the one they all want, to be just like that.\\n\\nOutro\\nSo listen up y'all, I hope you understand,\\nThis is my story, and this is my plan,\\nGot my sights on the top, and I won't give in,\\nI'm the king of the game, and I'll always win.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, it's DeMar DeRozan, and I'm back\\nJust to tell you how I really feel\\nI wish I could put this in a Reply-All\\nJust so you know how I really feel\\n[Verse]\\nI wish everyone could tell me what they really feel\\nSometimes I ask and they just don't tell me for real\\nBut on my mom's life, I will not commit a crime\\nOr say a word that could harm my reputation, that's mine\\nMy father's a provider, my father is a winner\\nMy father's a dope dealer, who got pinched in 1996\\nI'm sure he still loves to hug and kiss me on the neck\\nProbably wants to spend more time with me, but I'm too accustomed\\nTo moving every other year, having new teachers and classmates\\nLiving in different time zones and staying in different hotels\\nI just want you to know that I'm a lot farther than you think\\nI just want you to know that I know what I'm doing, I'm on a mission\\nTo prove to myself and everybody else that I am the truth\\nI don't want to be remembered as that kid from the hood with the mansion\\nI want it dedicated to all the real ones that stuck with me through the mission\\nI want it dedicated to all the real ones that stuck with me through the mission\\nI want it dedicated to all the real ones that stuck with me through the mission [Outro]\\nYeah, it's DeMar DeRozan, and I'm back\\nJust to tell you how I really feel\\nI wish I could put this in a Reply-All\\nJust so you know how I really feel\",\n", - " 'id': 9589444},\n", - " {'name': 'Hold Up',\n", - " 'artist': 'Future',\n", - " 'llama_response': \"(Verse 1 - Future)\\nI'm sippin' on a bottle, got a bad bitch on my dick\\nRidin' 'round in my whip, tryna fuck the night\\nI'm livin' life to the fullest, ain't no regrets\\nGot my own jet, ain't no flights to forget\\n\\n(Chorus - Future)\\nFuturistic, tryna live my best life\\nLuxury brands, got my own slice\\nParty every night, ain't no time to sleep\\nFuturistic, tryna live my best life\\n\\n(Verse 2 - Guest Verse - Playboi Carti)\\nI'm in the building, tryna reach the top\\nGot my own flow, ain't no one stoppin' me\\nI'm on the rise, ain't no one gonna stop\\nGot my own style, ain't no one gonna pop\\n\\n(Chorus - Future)\\nFuturistic, tryna live my best life\\nLuxury brands, got my own slice\\nParty every night, ain't no time to sleep\\nFuturistic, tryna live my best life\\n\\n(Bridge - Future)\\nI'm on the gram, tryna get the fame\\nGot my own squad, ain't no one gonna claim\\nI'm on the rise, ain't no one gonna stop\\nGot my own flow, ain't no one gonna pop\\n\\n(Verse 3 - Future)\\nI'm in the club, tryna have a good time\\nGot my own crew, they all tryna shine\\nI'm on the dance floor, ain't no time to rest\\nGot my own style, ain't no one gonna pass\\n\\n(Chorus - Future)\\nFuturistic, tryna live my best life\\nLuxury brands, got my own slice\\nParty every night, ain't no time to sleep\\nFuturistic, tryna live my best life\\n\\n(Outro - Future)\\nI'm livin' life to the fullest, ain't no regrets\\nGot my own flow, ain't no one gonna forget\\nFuturistic, tryna live my best life\\nLuxury brands, got my own slice\\nParty every night, ain't no time to sleep\\nFuturistic, tryna live my best life.\\n\",\n", - " 'lyre_response': \"[Intro Future]\\nYeah, Pluto\\nLet's go\\n[Chorus Future]\\nI live it up every time that I have the cash\\nPull up with the 'rari, that's a Bugatti, if that's the ask\\nBring a bitch inside, if she stay, that's a ask\\nShe gon' get that ass out of my face, that's a fact, if that's the task\\nBall so hard on these hoes, that's a act, if that's the task\\nGet her wet as hell, and then I rip that ass apart, that's a fact\\nI'm tryna fuck the bitch from the start\\n[Verse 1 Future]\\nFuck her right on the jet, that's a fact\\nFuck her right on the brain, that's a drug, if that's the task\\nI'm tryna fuck her from the start\\nI'm tryna fuck her from the start\\nYeah, she tryna fuck from the start\\nI'm tryna fuck her from the start\\nBitch, I'm tryna fuck her from the start\\n[Chorus Future]\\nI live it up every time that I have the cash\\nPull up with the 'rari, that's a Bugatti, if that's the ask\\nBring a bitch inside, if she stay, that's a ask\\nShe gon' get that ass out of my face, that's a fact, if that's the task\\nBall so hard on these hoes, that's a act, if that's the task\\nGet her wet as hell, and then I rip that ass apart, that's a fact\\nI'm tryna fuck the bitch from the start\\n[Verse 2 Playboi Carti]\\nWhat is love? (What is love?)\\nCodeine in my Durag\\nBrown M&M's in my bucket (Bucket)\\nWatermelon Punch in my blunt\\nPull up with the 'rari (What?)\\nWoo, \\nBugatti, yeah\\nPull up with the 'rari (Woo)\\nWoo, \\nthat's a Bugatti\\nPull up with the 'rari (What?)\\nBrown M&M's in my bucket (Yeah)\\nWatermelon Punch in my blunt\\nWatermelon Punch in my blunt (Yeah)\\nPull up with the 'rari (What?)\\nBrown M&M's in my bucket (Yeah)\\nWatermelon Punch in my blunt (Woo)\\nWatermelon Punch in my blunt\\n[Chorus Future]\\nI live it up every time that I have the cash\\nPull up with the 'rari, that's a Bugatti, if that's the ask\\nBring a bitch inside, if she stay, that's a ask\\nShe gon' get that ass out of my face, that's a fact, if that's the task\\nBall so hard on these hoes, that's a act, if that's the task\\nGet her wet as hell, and then I rip that ass apart, that's a fact\\nI'm tryna fuck the bitch from the start\\n[Outro Future & \\nPlayboi Carti]\\nI'm tryna fuck her from the start Playboi\\nBitch, I'm tryna fuck her from the start Pluto\\nI'm tryna fuck her from the start\\nWatermelon Punch in my blunt\\nFuck her right on the jet, that's a fact\\nFuck her right on the brain, that's a drug\",\n", - " 'id': 8215393},\n", - " {'name': 'Suicide Doors',\n", - " 'artist': 'Lil Uzi Vert ',\n", - " 'llama_response': \"(Verse 1)\\nI'm the king of the game, ain't no one touchin' me\\nGot more dough than a bakery, got more flow than a bee\\nI'm rockin' diamonds like they're goin' outta style\\nGot a private jet, flyin' high, never takin' a while\\n\\nI don't give a damn 'bout what the haters say\\nI'm livin' my best life, every single day\\nI got the world on a string, ain't nothin' gonna bring me down\\nI'm the one they all come to see, I'm the rockstar crown\\n\\n(Chorus)\\nI'm unstoppable, untouchable, unforgettable\\nI'm the one they all wanna be, I'm the king of the game\\nI'm on top of the world, ain't no one gonna bring me down\\nI'm the one and only, I'm the rockstar crown\\n\\n(Verse 2)\\nI'm drippin' in designer, got more bling than a ring\\nGot more fame than a TV show, got more fans than a king\\nI'm livin' large, livin' loud, livin' my best life\\nI ain't worried 'bout nothin', ain't no one gonna bring me strife\\n\\nI'm the master of my fate, I'm the captain of my soul\\nI'm the one they all wanna be, I'm the rockstar goal\\nI'm on top of the world, ain't no one gonna bring me down\\nI'm the one and only, I'm the rockstar crown\\n\\n(Bridge)\\nI ain't never scared of criticism, I ain't never scared of shame\\nI'm the king of the game, I'm the one they all claim\\nI'm the one they all wanna be, I'm the rockstar crown\\n\\n(Chorus)\\nI'm unstoppable, untouchable, unforgettable\\nI'm the one they all wanna be, I'm the king of the game\\nI'm on top of the world, ain't no one gonna bring me down\\nI'm the one and only, I'm the rockstar crown\\n\\n(Outro)\\nI'm the one and only, I'm the rockstar crown\\nI'm the king of the game, I'm the one they all know\\nI'm the one they all wanna be, I'm the rockstar crown\",\n", - " 'lyre_response': '[Intro]\\nWoah, okay\\nPhantom, woah, no, not the coupe\\nWoah, yeah, let\\'s go\\n[Refrain]\\nLet\\'s go,\\u2005let\\'s\\u2005go, let\\'s go\\nLet\\'s go, let\\'s\\u2005go, drown me in\\u2005the water\\nLet\\'s go, let\\'s go, let\\'s go\\nLet\\'s go, let\\'s go, let\\'s go\\n[Chorus]\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar)\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar) [Verse 1]\\nI was in the Phantom, not the coupe (Yeah)\\nI was in the drop, and it was black, too (Yeah)\\nAnd I was thinkin\\', \"Man, this the life\" (Man, this the life)\\nI would do this every night (Yeah, yeah)\\nYeah, let\\'s go\\nGot no stress, don\\'t need no Glock (I don\\'t need no Glock)\\nAin\\'t got no exes, I just got them locks (I just got them locks)\\nAin\\'t got no worries, I just got them rocks (I just got them rocks)\\nWoah, yeah, let\\'s go\\n[Chorus]\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar)\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar) [Verse 2]\\nI don\\'t give a fuck if you don\\'t like me (I don\\'t give a shit)\\nI don\\'t give a fuck if they don\\'t like me (I don\\'t give a shit)\\nI just do what I like, yeah, I like me (I just do what I like, yeah)\\nDon\\'t like me? Then don\\'t look at me (Then don\\'t look at me)\\nWon\\'t make a song \\'bout no-one like me (Won\\'t make a song \\'bout no-one like me)\\nBecause there\\'s no one like me (No one like me)\\nI\\'m the greatest, yeah, that\\'s on me (I\\'m the greatest, yeah, that\\'s on me)\\nWoah, yeah, let\\'s go (Woah, yeah, let\\'s go) [Chorus]\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar)\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar) [Bridge]\\nPhantom, woah, no, not the coupe\\nWoah, yeah, let\\'s go\\n[Refrain]\\nLet\\'s go, let\\'s go, let\\'s go\\nLet\\'s go, let\\'s go, drown me in the water\\nLet\\'s go, let\\'s go, let\\'s go\\nLet\\'s go, let\\'s go, let\\'s go\\n[Chorus]\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar)\\nWhat they gon\\' say? What they gon\\' say?\\nWhat they gon\\' do? What they gon\\' do?\\nI don\\'t give a shit (I don\\'t give a shit)\\nI\\'m a superstar (I\\'m a superstar)',\n", - " 'id': 9269871},\n", - " {'name': 'Lost',\n", - " 'artist': 'Linkin Park',\n", - " 'llama_response': \"Verse 1 (Chester)\\nTrapped in my mind, a never-ending fight\\nMemories of the past, they haunt me day and night\\nThe scars they leave, they never heal\\nI'm lost in my own hell, can't find my way out\\n\\nChorus (Both)\\nI'm stuck in my illusions, can't escape the pain\\nTrying to move on, but it's hard to change\\nThe ghosts of my past, they never leave\\nI'm searching for redemption, but it's hard to believe\\n\\nVerse 2 (Mike)\\nI see the world around me, but it's not the same\\nThe shadows of my past, they follow me like a game\\nI try to hide, but they find their way\\nInto my dreams, into my heart, every single day\\n\\nChorus (Both)\\nI'm stuck in my illusions, can't escape the pain\\nTrying to move on, but it's hard to change\\nThe ghosts of my past, they never leave\\nI'm searching for redemption, but it's hard to believe\\n\\nBridge (Chester)\\nI know I'm not alone, in this fight\\nWe all carry our own scars, day and night\\nBut it's hard to keep going, when the pain feels so real\\nI'm just trying to find my way, to heal and to feel\\n\\nChorus (Both)\\nI'm stuck in my illusions, can't escape the pain\\nTrying to move on, but it's hard to change\\nThe ghosts of my past, they never leave\\nI'm searching for redemption, but it's hard to believe\\n\\nOutro (Mike)\\nI'll keep on fighting, until I find my way\\nOut of this darkness, into a brighter day\\nI'll keep on searching, until I find my peace\\nAnd maybe then, I'll finally find release.\\n\",\n", - " 'lyre_response': \"[Chester Bennington]\\nTrapped in my mind, surrounded by thieves\\nCutting myself loose, would it bring back memories?\\nFading to black, fading to black\\nFading to black, fading to black\\nTook my life in my own hands, would it bring back memories?\\nFading to black, fading to black\\nFading to black, fading to black\\n[Chester Bennington & \\nMike Shinoda]\\nI'm lost in my mind, I'm lost in my mind\\nI'm caught up in my thoughts, I'm trapped in my mind\\nI'm lost in my mind, I'm lost in my mind\\nLiving a life of self-pity, I'm wasting my time\\n[Chester Bennington]\\nI'm lost in my mind\\n[Chester Bennington & \\nMike Shinoda]\\nI'm lost in my mind, I'm lost in my mind\\nCaught up in my thoughts, trapped in my mind\\nI'm lost in my mind, I'm lost in my mind\\nLiving a life of self-pity, wasting my time\\n[Chester Bennington & \\nMike Shinoda]\\nI'm lost in my mind\\n(I'm lost) I'm lost in my mind\\n(I'm lost) Caught up in my thoughts, trapped in my mind\\nI'm lost in my mind, I'm lost in my mind\\nLiving a life of self-pity, wasting my time\\n[Chester Bennington]\\nI'm lost in my mind [Chester Bennington & Mike Shinoda]\\nI'm lost in my mind, I'm lost in my mind\\nCaught up in my thoughts, trapped in my mind\\nI'm lost in my mind, I'm lost in my mind\\nLiving a life of self-pity, wasting my time\\n[Chester Bennington]\\nI'm lost in my mind\\n[Outro Chester Bennington & \\nMike Shinoda]\\n(I'm lost) \\nI'm lost in my mind\\n(I'm lost) \\nI'm lost in my mind\\n(I'm lost) \\nLiving a life of self-pity, wasting my time\\n(I'm lost) \\nI'm lost in my mind\",\n", - " 'id': 6713449},\n", - " {'name': 'DELRESTO (ECHOES)',\n", - " 'artist': 'Beyonce',\n", - " 'llama_response': \"Verse 1 (Beyoncé)\\nI've been searching for a summer of contentment\\nA place where I can be free from the shadows of my past\\nEchoes of memories, they linger and they haunt me\\nBut I know I must let them go, to move on at last\\n\\nChorus (Beyoncé, Travis Scott, Justin Vernon)\\nOh, the longing and release, it's a feeling like no other\\nA journey through the fire, to find the other side\\nWe're searching for a light, to guide us through the night\\nAnd find the strength to hold on, through the darkest of fights\\n\\nVerse 2 (Beyoncé)\\nI've been through the storm, and I've seen the rain\\nBut I know that I'm strong, and I'll rise again\\nI've got the resilience, to face the pain\\nAnd I won't let it break me, I'll rise above the strain\\n\\nChorus (Beyoncé, Travis Scott, Justin Vernon)\\nOh, the longing and release, it's a feeling like no other\\nA journey through the fire, to find the other side\\nWe're searching for a light, to guide us through the night\\nAnd find the strength to hold on, through the darkest of fights\\n\\nBridge (Justin Vernon)\\nI've been lost in the darkness, but I've found my way\\nTo a place of peace, where the echoes fade away\\nAnd I've learned to let go, to move on from the past\\nTo find a new horizon, where love will forever last\\n\\nChorus (Beyoncé, Travis Scott, Justin Vernon)\\nOh, the longing and release, it's a feeling like no other\\nA journey through the fire, to find the other side\\nWe're searching for a light, to guide us through the night\\nAnd find the strength to hold on, through the darkest of fights\\n\\nOutro (Beyoncé)\\nI'll rise above the echoes, and shine my light on through\\nI'll find the summer of contentment, and make it mine to do\\nI'll hold on to hope, and never let it go\\nI'll rise above the shadows, and let my spirit glow.\\n\",\n", - " 'lyre_response': \"[Intro Beyoncé]\\nI've drowned\\nI've drowned\\n[Verse 1 Beyoncé]\\nThere's a time that I remember when I didn't know no pain\\nWhen I couldn't wait to grow up and out of the city and its pollution\\nI guess I never thought about the weight of the world\\nAnd how it would test me, making me wonder if I was worthy\\n[Pre-Chorus Beyoncé]\\nIt's been a long time coming, but I'm really, really trying\\nTo get to a place of pure happiness and pure love\\nIt won't be long now, I can feel it, so close I can taste it\\nI'm almost there, I can see it, so clear I can see it\\n[Chorus Beyoncé]\\nAnd you know sometimes we need to feel the pressure\\nJust to keep from slipping into stagnation\\nYeah, let it out, let it out, let it out\\nYou know you gotta let it out, let it out\\n[Drop Beyoncé]\\n[Verse 2 Beyoncé]\\nLife can be so cruel, it can make you feel like you're the fool\\nIt can make you feel like you don't know nothing, you're so cruel\\nI've been through hell, but I'm still here, so I know how you feel\\nAnd you don't have to keep trying, because you've already killed\\n[Pre-Chorus Beyoncé]\\nIt's been a long time coming, but I'm really, really trying\\nTo get to a place of pure happiness and pure love\\nIt won't be long now, I can feel it, so close I can taste it\\nI'm almost there, I can see it, so clear I can see it\\n[Chorus Beyoncé]\\nAnd you know sometimes we need to feel the pressure\\nJust to keep from slipping into stagnation\\nYeah, let it out, let it out, let it out\\nYou know you gotta let it out, let it out\\n[Drop Beyoncé]\\n[Bridge Travis Scott]\\n(I've drowned)\\nI've drowned\\nI've drowned\\n(I've drowned)\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\n[Chorus Beyoncé, \\nTravis Scott\\n, & \\nJustin Vernon]\\nAnd you know sometimes we need to feel the pressure\\nJust to keep from slipping into stagnation\\nYeah, let it out, let it out, let it out\\nYou know you gotta let it out, let it out\\nYeah, let it out, let it out, let it out\\nYou know you gotta let it out, let it out\\n[Drop Beyoncé, \\nTravis Scott\\n, & \\nJustin Vernon]\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\\nI've drowned\",\n", - " 'id': 8465484},\n", - " {'name': 'Dress',\n", - " 'artist': 'Taylor Swift',\n", - " 'llama_response': 'Verse 1\\nI\\'m walking through the city, head held high\\nBut little do they know, I\\'m lying by\\nA secret that I keep, a love that I hide\\nAway from prying eyes, where only you reside\\n\\nChorus\\nOh, the thrill of a secret romance\\nSneaking around, stealing glances\\nThe public world may see me strong\\nBut deep inside, my heart is wrong\\n\\nVerse 2\\nI wear this dress, bought just for you\\nA symbol of my vulnerability, too\\nI dream of the moment when you\\'ll take it off\\nAnd in that instant, our love will be alight\\n\\nChorus\\nOh, the thrill of a secret romance\\nSneaking around, stealing glances\\nThe public world may see me strong\\nBut deep inside, my heart is wrong\\n\\nBridge\\nWe dance in the shadows, our love a flame\\nPulsating with energy, our hearts aflame\\nThe world may think us crazy, but we know the truth\\nOur love is real, our love is youth\\n\\nChorus\\nOh, the thrill of a secret romance\\nSneaking around, stealing glances\\nThe public world may see me strong\\nBut deep inside, my heart is wrong\\n\\nOutro\\nSo I\\'ll keep on walking, with my head held high\\nBut little do they know, my heart is flying\\nTo the place where only you reside\\nWhere our love will thrive, and our hearts collide.\\n\\nMusical Composition\\nThe song should have a soft, acoustic base, with a mix of pop energy and emotional highs. The chorus should have a catchy, upbeat melody, with a repetition of the phrase \"the thrill of a secret romance\" to emphasize the theme of the song. The verses should have a more introspective and emotional tone, with a focus on the contrast between the persona\\'s public composure and their inner turmoil. The bridge should have a more intense and passionate feel, with a focus on the excitement and energy of the secret romance. The song should have a gradual build-up in energy throughout the verses and chorus, with a climactic moment in the bridge, before returning to a more mellow, introspective tone in the outro.\\n\\nLyrics\\n\\n* \"I\\'m walking through the city, head held high\" - This line sets the tone for the song, with the persona presenting a confident exterior, while hiding a secret love.\\n* \"But little do they know, I\\'m lying by\" - This line emphasizes the contrast between the persona\\'s public image and their private feelings.\\n* \"A dress bought just for you\" - This line is a poignant symbol of the persona\\'s vulnerability and connection to their secret lover.\\n* \"I dream of the moment when you\\'ll take it off\" - This line conveys the anticipation and excitement of the secret romance.\\n* \"We dance in the shadows, our love a flame\" - This line highlights the intensity and passion of the secret romance, with the world outside only seeing a glimpse of their love.\\n* \"The public world may see me strong\" - This line emphasizes the contrast between the persona\\'s public image and their inner turmoil.\\n* \"But deep inside, my heart is wrong\" - This line conveys the true emotions of the persona, with their heart pining for their secret lover.',\n", - " 'lyre_response': \"[Intro]\\nI'm in a taxi headin' north\\nOn my way to meet you at the park\\nIt's getting hard to be so calm\\n'Cause I'm fallin' for you, you, you\\nI'm in a taxi headin' north\\nOn my way to meet you at the park\\nThe sun is going down and I'm goin' crazy\\nThinkin' 'bout the moments we've stolen\\n[Verse 1]\\nYou waitin' at the garden wall\\nFor me to come and sweep you off your feet\\nI'm feelin' every moment, it's pure magic\\nSomethin' about you, I just can't resist\\nYou think I'm out right now (I'm out right now)\\nYou think that I'm out livin' it up (I'm out livin' it up)\\nBut you'll never know what I'm goin' through\\nI'm seein' you in that dress, I just bought it for you\\n[Chorus]\\nYou're secretly a lover\\nAnd I'm secretly your Loverboy\\nWe'll make out in a crowded room (Crowded room)\\nThe whole world can figure out\\nWe're in love, but we'll never tell\\n'Cause you're secretly a lover\\nAnd I'm secretly your Loverboy [Verse 2]\\nI'm in a taxi headin' south\\nOn my way to meet you at the park\\nYou tell me that you're not my type\\nBut you've been gettin' off on the sight\\nThe dress that you wore, I just bought it for you\\nI wanna take it off when we're alone\\nI wanna be the one to make you feel brand new [Chorus]\\nYou're secretly a lover\\nAnd I'm secretly your Loverboy\\nWe'll make out in a crowded room (Crowded room)\\nThe whole world can figure out\\nWe're in love, but we'll never tell\\n'Cause you're secretly a lover\\nAnd I'm secretly your Loverboy [Bridge]\\nAnd when the room is empty\\nWe'll be empty too\\nAnd when the room is empty\\nI'll be flyin' to you\\n[Chorus]\\nYou're secretly a lover (Secretly a lover)\\nAnd I'm secretly your Loverboy (Secretly your Loverboy)\\nWe'll make out in a crowded room (Crowded room)\\nThe whole world can figure out\\nWe're in love, but we'll never tell\\n'Cause you're secretly a lover\\nAnd I'm secretly your Loverboy [Outro]\\nYou're secretly a lover (Lover)\\nAnd I'm secretly your Loverboy (Your Loverboy)\\nWe'll make out in a crowded room (In a crowded room)\\nThe whole world can figure out (The whole world can figure out)\\nWe're in love, but we'll never tell\\n'Cause you're secretly a lover (You're secretly a lover)\\nAnd I'm secretly your Loverboy (I'm secretly, secretly your Loverboy)\",\n", - " 'id': 3281502},\n", - " {'name': 'GOD’S COUNTRY',\n", - " 'artist': 'Kanye West',\n", - " 'llama_response': \"Verse 1\\nI was lost in the dark, couldn't find my way out\\nTrapped in my mind, with thoughts that couldn't be doubt\\nFighting with demons, that I couldn't defeat\\nBut then I found God, and my soul started to retreat\\n\\nChorus\\nLa, la, la, la, la, la\\nRedemption is coming, it's in the air\\nLa, la, la, la, la, la\\nI'm breaking free from the chains that bound me there\\n\\nVerse 2\\nI used to think wealth was the answer to my prayers\\nBut now I see, it's just a temporary escape\\nFrom the pain and the struggle, from the hate and the fears\\nBut now I know, true redemption is what I hold dear\\n\\nChorus\\nLa, la, la, la, la, la\\nRedemption is coming, it's in the air\\nLa, la, la, la, la, la\\nI'm breaking free from the chains that bound me there\\n\\nVerse 3\\nI've been on this journey, it's been a long and hard road\\nBut I'm still standing, and my spirit is still whole\\nI've seen the light, and I know what I've found\\nIt's a love that's pure, and it's never bound\\n\\nChorus\\nLa, la, la, la, la, la\\nRedemption is coming, it's in the air\\nLa, la, la, la, la, la\\nI'm breaking free from the chains that bound me there\\n\\nVerse 4\\nI know I've been through hell, but I'm not the same\\nI've fought my battles, and I've won the game\\nI've found my voice, and I'm not afraid to say\\nI'm standing tall, and I'm here to stay\\n\\nChorus\\nLa, la, la, la, la, la\\nRedemption is coming, it's in the air\\nLa, la, la, la, la, la\\nI'm breaking free from the chains that bound me there\\n\\nBridge\\nI've seen the darkness, but I've also seen the light\\nI've been to the depths, but I've also reached the heights\\nI know that I'm not alone, and that's a beautiful sight\\nI'm grateful for the journey, and the fight\\n\\nChorus\\nLa, la, la, la, la, la\\nRedemption is coming, it's in the air\\nLa, la, la, la, la, la\\nI'm breaking free from the chains that bound me there\\n\\nOutro\\nI'm rising from the ashes, like a phoenix from the fire\\nI'm breaking free from the chains, and I'm never retiring\\nI'm living my truth, and I'm never gonna hide\\nI'm finding my voice, and I'm gonna make it shine.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, uh\\nWell, you know, it's like, it's like, it's like...\\nLa, la, la\\nLa, la, la\\nLa, la, la\\nLa, la, la\\n[Verse 1]\\nI've been at home, I've been alone\\nI've been in the dark, no one to hold\\nI've been in conflict, yea, even in my mind\\nSeen some things that would make your mind unwind\\nThings that I can't mention, but times like that, I thank God for my spirit guide\\nYeah, I made it through that, thought I was done, but God had other plans, had other plans\\nGod, God, God, God, God\\n[Bridge]\\nYou know that this life, could really get to you\\nIt's like a butterfly\\nBurst out of its chrysalis, and, and, and, and, and, and, and, and, and\\nYou know that this life, could really get to you\\nIt's like a butterfly\\nBurst out of its chrysalis, and, and, and, and, and, and, and, and, and, and [Verse 2]\\nWe be in the lab, cookin' up new formulae\\nI been contemplating, been on that meditating tip\\nI been in a funk, I been in a slump\\nI been so down, but I gotta get up, I gotta get up\\nAnd I gotta get out, and get out, and get out of this rut\\nI be thinkin' about it, \\nlost in my thoughts\\nAnd it's nothing you could ever tell me, that I don't know\\nFeelin' so low, but I'm tryna get high\\nI feel so high, but I'm not high, I'm just feelin' alive\\nAlive, alive, alive, alive, alive, alive [Bridge]\\nYou know that this life, could really get to you\\nIt's like a butterfly\\nBurst out of its chrysalis, and, and, and, and, and, and, and, and, and, and\\nYou know that this life, could really get to you\\nIt's like a butterfly\\nBurst out of its chrysalis, and, and, and, and, and, and, and, and, and, and, and [Outro]\\nLa, la, la\\nLa, la, la\\nLa, la, la\\nLa, la, la\\nLa, la, la\",\n", - " 'id': 5780833},\n", - " {'name': 'NUTHIN’',\n", - " 'artist': 'Michael Jackson',\n", - " 'llama_response': \"(Verse 1)\\nI'm standing on the edge, staring into the night\\nThe world outside is cold, and it's filled with fright\\nFears and doubts they haunt me, like a ghostly plight\\nI'm lost in a sea of confusion, where's the light?\\n\\n(Chorus)\\nAll of this for nothing, it's a cryin' shame\\nWe're livin' in a world that's goin' insane\\nWe're chasin' after dreams, but they're always out of reach\\nAll of this for nothin', it's a cryin' shame\\n\\n(Verse 2)\\nI see the disillusionment, in the eyes of those around\\nA longing for a better life, that's hard to find\\nThe system's broken, and it's tearin' us apart\\nWe're trapped in a cycle, of hate and despair\\n\\n(Chorus)\\nAll of this for nothing, it's a cryin' shame\\nWe're livin' in a world that's goin' insane\\nWe're chasin' after dreams, but they're always out of reach\\nAll of this for nothin', it's a cryin' shame\\n\\n(Bridge)\\nBut I still believe, in the power of the heart\\nA spark of hope, that will set us apart\\nWe can break the chains, and rise above the pain\\nWe can make a change, and start again\\n\\n(Chorus)\\nAll of this for nothing, it's a cryin' shame\\nWe're livin' in a world that's goin' insane\\nWe're chasin' after dreams, but they're always out of reach\\nAll of this for nothin', it's a cryin' shame\\n\\n(Outro)\\nBut I see a glimmer, of a brighter day\\nWhere love and unity, will lead the way\\nWe'll rise above the fear, and shine like the sun\\nAnd our hearts will be healed, and our souls will be won\\n\\n(Verse 3 - additional)\\nWe'll stand together, and we'll fight for our rights\\nWe'll raise our voices, and we'll shine with all our might\\nWe'll be the change, that we know we can be\\nAnd our future will be bright, and our hearts will be free\\n\\n(Chorus)\\nAll of this for nothing, it's a cryin' shame\\nWe're livin' in a world that's goin' insane\\nWe're chasin' after dreams, but they're always out of reach\\nAll of this for nothin', it's a cryin' shame\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't fear tomorrow\\nAll of this for nothing\\nDon't fear tomorrow\\nAll of this for nothing\\n[Verse 1]\\nHe's just a poor boy, nobody loves him\\nHe's sensitive and his heart is breaking\\nHe cries in the night because he's afraid\\nHe thinks that there's no hope for him\\nHe's just a poor boy, nobody loves him\\nHe's sensitive and his heart is breaking\\nHe cries in the night because he's afraid\\nHe thinks that there's no hope for him\\n[Chorus]\\nAll of this for nothing\\nWhy should we fight for nothing?\\nAll of this for nothing\\nWhy should we bleed for nothing?\\nAll of this for nothing\\nWhy should we cry for nothing?\\nAll of this for nothing\\nWhy should we die for nothing?\\n[Verse 2]\\nWhy does he keep us apart?\\nDoes he think that we're stupid?\\nWhy does he get us to fight?\\nDoes he think that we're stupid?\\nWhy does he keep us apart?\\nDoes he think that we're stupid?\\nWhy does he get us to fight?\\nDoes he think that we're stupid? [Chorus]\\nAll of this for nothing\\nWhy should we fight for nothing?\\nAll of this for nothing\\nWhy should we bleed for nothing?\\nAll of this for nothing\\nWhy should we cry for nothing?\\nAll of this for nothing\\nWhy should we die for nothing?\\n[Outro]\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\\nWe can do it\",\n", - " 'id': 8484263},\n", - " {'name': 'Die 4 Me',\n", - " 'artist': 'Post Malone',\n", - " 'llama_response': \"Verse 1\\nI thought you were my home, my safe haven\\nThe one I could always count on, through every storm\\nBut now I'm standing here, with tears in my eyes\\nRealizing you were the one who tore me apart\\n\\nYou promised to be there, through thick and thin\\nTo love me unconditionally, until the end\\nBut you lied, you cheated, you played me like a fool\\nAnd now I'm left with nothing but broken rules\\n\\nChorus\\nYou said you'd be there, through the good and the bad\\nBut now I'm standing here, feeling so sad\\nThe promises you made, they meant nothing to you\\nAnd now I'm left to pick up the pieces, feeling so blue\\n\\nVerse 2\\nI tried to hold on, but you kept on pushing\\nAway the love we had, and the trust that was rushing\\nYou said you needed space, but what you meant was time\\nTo find someone new, and leave me in the dark, feeling so blind\\n\\nI gave you my heart, and you tore it apart\\nWith your lies and your games, you broke it from the start\\nI thought I was strong, but you showed me I'm not\\nYou took my love, and you left me with nothing but regret\\n\\nChorus\\nYou said you'd be there, through the good and the bad\\nBut now I'm standing here, feeling so sad\\nThe promises you made, they meant nothing to you\\nAnd now I'm left to pick up the pieces, feeling so blue\\n\\nBridge\\nI thought we had something real, something true\\nBut now I'm left to wonder, what could have been, what I could have done\\nI'm learning to let go, to move on from the pain\\nBut it's hard to forget, the love we had, the love that remains\\n\\nChorus\\nYou said you'd be there, through the good and the bad\\nBut now I'm standing here, feeling so sad\\nThe promises you made, they meant nothing to you\\nAnd now I'm left to pick up the pieces, feeling so blue\\n\\nOutro\\nI'll rise above, I'll find my way\\nI'll learn to love again, someday\\nBut for now, I'll just hold on to the pain\\nAnd hope that someday, I'll find love again, without the strain.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, yeah\\nYou said forever, yeah, you promised me forever\\nEverything was perfect, yeah, you promised me forever\\nSaid you'd be there through thick and thin\\n[Chorus]\\nForever, you said you'd be there forever\\nForever, you promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\\n[Verse 1]\\nWhy can't you see that I'm in misery?\\nYou're the one that made me see that forever's just a word, yeah\\nYou're the one that made me cry\\nYou're the one that made me say goodbye\\n[Pre-Chorus]\\nYou were my strength, my pillar\\nYou were supposed to be my shelter\\nFrom the world, you were supposed to keep me safe and sound\\nYou were my strength, my pillar\\nMy forever was supposed to be forever\\n[Chorus]\\nForever, you said you'd be there forever\\nForever, you promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\\n[Verse 2]\\nHow can I trust anyone at all?\\nYou made me realize that love is just a game, yeah\\nYou made me lose everything\\nYou made me feel like I don't even know myself\\n[Pre-Chorus]\\nYou were my strength, my pillar\\nYou were supposed to be my shelter\\nFrom the world, you were supposed to keep me safe and sound\\nYou were my strength, my pillar\\nMy forever was supposed to be forever\\n[Chorus]\\nForever, you said you'd be there forever\\nForever, you promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\\n[Bridge]\\nYou said forever\\nForever, you said you'd be there forever\\nYou promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\\n[Chorus]\\nForever, you said you'd be there forever\\nForever, you promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\\n[Outro]\\nYou said forever\\n(Forever, you said you'd be there forever)\\nForever, you promised me forever\\n(Forever, oh, you promised me forever)\\nBut forever's come and gone\\nForever, you said you'd be there forever\\n(You promised me forever) Forever's come and gone\",\n", - " 'id': 8837446},\n", - " {'name': 'Pain 1993 (Demo)',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"(Verse 1)\\nI'm sippin' on a gin and juice, feelin' like a king\\nNobody phuckin' with me, I'm on top of the game\\nCasual confidence, that's my M.O.\\nI don't need no awards, my rhymes are the fame\\n\\nI'm livin' life on my own terms, ain't no one gonna tell me what to do\\nI'm on a mission to the top, and I'm gonna make it through\\nI ain't worried 'bout no haters, they just fuel my fire\\nI'm on a roll, ain't no one gonna stop my desire\\n\\n(Chorus)\\nI'm unbothered, unbothered, that's the way I roll\\nI'm on top of the game, and I'm here to stay, fo' shizzle\\nI ain't worried 'bout no critics, they just don't know the real me\\nI'm the king of the rap game, and I'm here to prove it, bae\\n\\n(Verse 2)\\nI'm chillin' with my crew, sippin' on some champagne\\nWe ain't worried 'bout nothin', we just vibin' on the same page\\nWe grindin' hard, we ballin' hard, we ain't worried 'bout the fame\\nWe just wanna make hits, and have fun, ain't no one gonna change our game\\n\\nI'm on a luxury cruise, livin' life to the fullest\\nI got my own jet, and my own mansion, that's the way I roll\\nI ain't worried 'bout no money, I got more than enough\\nI just wanna keep on flowin', and make hits that'll last\\n\\n(Chorus)\\nI'm unbothered, unbothered, that's the way I roll\\nI'm on top of the game, and I'm here to stay, fo' shizzle\\nI ain't worried 'bout no critics, they just don't know the real me\\nI'm the king of the rap game, and I'm here to prove it, bae\\n\\n(Bridge)\\nI'm on a journey from solitude to selective companionship\\nI ain't worried 'bout no fame, I just wanna make hits that'll last\\nI'm on a mission to the top, and I won't stop 'til I get there\\nI'm unbothered, unbothered, that's the way I roll, bae\\n\\n(Verse 3)\\nI'm on top of the world, ain't no one gonna bring me down\\nI'm the king of the rap game, and I'm wearin' the crown\\nI ain't worried 'bout no haters, they just fuel my fire\\nI'm on a roll, ain't no one gonna stop my desire\\n\\nI'm livin' life on my own terms, ain't no one gonna tell me what to do\\nI'm on a mission to the top, and I'm gonna make it through\\nI ain't worried 'bout no critics, they just don't know the real me\\nI'm the king of the rap game, and I'm here to prove it, fo' shizzle\\n\\n(Outro)\\nSo if you wanna come at me, you better come correct\\nI'm unbothered, unbothered, that's the way I roll, bae\\nI'm on top of the game, and I'm here to stay\\nI'm the king of the rap game, and I'm here to play.\\n\",\n", - " 'lyre_response': \"[Intro]\\nYeah, Ren, M.O.F, and T.O.S\\nAlways\\n[Verse Drake]\\nI'm just working at the office, man, nothing new\\nHow could I be tough with a soft heart?\\nHow could I be rough with a soft heart?\\nUnless—\\nUnless, it's cool that I'm rough with a soft heart\\nIt's cool, right?\\nYeah, I'm just working at the office, man, nothing new\\nHow could I be tough with a soft heart?\\nHow could I be rough with a soft heart?\\nUnless—\\nUnless, it's cool that I'm rough with a soft heart\\nIt's cool, right? Yeah\\nI'm just working at the office, man, nothing new\\nHow could I be tough with a soft heart?\\nHow could I be rough with a soft heart?\\nUnless—\\nUnless, it's cool that I'm rough with a soft heart\\nIt's cool, right?\\nYeah\\n[Refrain Lloyd]\\nGot no reason to be frightened\\nAnd no reason to be nervous\\nAnd no reason to be nervous, yeah\\n[Pre-Chorus Lloyd]\\nHmm-mm, mmm, mmm\\nGot no reason to be frightened\\nAnd no reason to be nervous\\nAnd no reason to be nervous, yeah\\n[Chorus Lloyd]\\nAnd you can't be rough with a soft heart\\nUnless you're cool with people knowing\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart [Verse 1 Drake]\\nI'm just working at the office, man, nothing new\\nHow could I be tough with a soft heart?\\nHow could I be rough with a soft heart?\\nUnless—\\nUnless, it's cool that I'm rough with a soft heart\\nIt's cool, right?\\nYeah\\nI'm just working at the office, man, nothing new\\nHow could I be tough with a soft heart?\\nHow could I be rough with a soft heart?\\nUnless—\\nUnless, it's cool that I'm rough with a soft heart\\nIt's cool, right? Yeah\\n[Refrain Lloyd]\\nGot no reason to be frightened\\nAnd no reason to be nervous\\nAnd no reason to be nervous, yeah\\n[Pre-Chorus Lloyd]\\nHmm-mm, mmm, mmm\\nGot no reason to be frightened\\nAnd no reason to be nervous\\nAnd no reason to be nervous, yeah\\n[Chorus Lloyd]\\nAnd you can't be rough with a soft heart\\nUnless you're cool with people knowing\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart [Verse 2 Lloyd]\\nCan't act tough when you're just alone\\nAnd you can't act tough when you're in foe\\nYou can't be tough with a soft heart\\nUnless you're cool with people knowing\\nThat you're tough with a soft heart, yeah\\n(Soft heart)\\nThat you're tough with a soft heart, yeah\\n(Soft heart)\\nThat you're tough with a soft heart [Verse 3 Lil Wayne]\\nUh, I'm Lil Wayne, young Tunechi\\nI'm from the Nawf, but I'm in H-town, so\\nThat means I'm a Houstonian\\nAnd I'm here to ensure that y'all understand\\nThat I'm a real man, so I can't sit around\\nAnd let these young bucks have the game all to themselves\\nI mean, I could sit back, relax, and chill on some Mills, but\\nI'm Tunechi, so I'm still gon' drop hits when I'm 80\\nI'm in the studio with T-Pain, and I got a pint\\nOf something strong, and I'm feelin' like shit\\nSo I'm gonna sing, yeah, I'm gonna sing\\nI'm gonna sing like Lloyd from the group Lloyds of London\\nI'm gonna sing like I'm in the group Lloyds of London\\nUh, Ren, M.O.F, and T.O.S\\nAlways [Chorus Lloyd]\\nAnd you can't be rough with a soft heart\\nUnless you're cool with people knowing\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart, yeah\\n(Soft heart)\\nThat you're rough with a soft heart\",\n", - " 'id': 8722327},\n", - " {'name': 'No Time Wasted',\n", - " 'artist': 'Future',\n", - " 'llama_response': \"Verse 1\\nI was born in the trenches, where the streets ain't always clean\\nBut I learned how to hustle, how to grind and how to be seen\\nGot my homies by my side, we was all we got\\nWe was living life on the edge, but we ain't never got caught\\n\\nChorus\\nBut now I'm on top, living life in the fast lane\\nGot my money, my fame, my life in the palm of my hand\\nBut I ain't forgot where I came from, ain't forgot the struggles I faced\\nGot my eyes on the prize, ain't nothing gonna take my place\\n\\nVerse 2\\nI seen it all, from the highs to the lows\\nFrom the streets to the mansions, from the struggles to the dough\\nBut I kept my head up, kept grinding every day\\nNow I'm living life in a different way, ain't no way to stay\\n\\nChorus\\nBut now I'm on top, living life in the fast lane\\nGot my money, my fame, my life in the palm of my hand\\nBut I ain't forgot where I came from, ain't forgot the struggles I faced\\nGot my eyes on the prize, ain't nothing gonna take my place\\n\\nVerse 3\\nI ain't no rags to riches story, ain't no fairy tale to tell\\nBut I grinded and hustled, I fought and I sold\\nI seen the best of life, seen the worst of times\\nBut I kept my head up, kept my eyes on the prize\\n\\nChorus\\nBut now I'm on top, living life in the fast lane\\nGot my money, my fame, my life in the palm of my hand\\nBut I ain't forgot where I came from, ain't forgot the struggles I faced\\nGot my eyes on the prize, ain't nothing gonna take my place\\n\\nBridge\\nI ain't forgot where I came from, ain't forgot the ones who was with me\\nI ain't forgot the struggles, ain't forgot the losses I faced\\nBut I kept my head up, kept grinding every day\\nNow I'm living life in a different way, ain't no way to stay\\n\\nChorus\\nBut now I'm on top, living life in the fast lane\\nGot my money, my fame, my life in the palm of my hand\\nBut I ain't forgot where I came from, ain't forgot the struggles I faced\\nGot my eyes on the prize, ain't nothing gonna take my place\\n\\nOutro\\nI'm living life in the fast lane, got my money and my fame\\nBut I ain't forgot where I came from, ain't forgot the struggles I faced\\nI'm on top of the world, but I ain't forgot the gritty reality\",\n", - " 'lyre_response': \"[Intro]\\nRaymond lives!\\nYou know, for—, oh, like, forever\\nI've been forever, yeah, I've been forever\\nI've been forever, yeah, I've been forever\\nI've been forever\\n[Verse 1]\\nI done cried, I done cried, I done cried\\nOver nineteen, over nineteen, I done cried\\nI done seen, I done seen, I done seen it all\\nI done seen it all, I done seen it all\\nI done lost, I done lost, I done lost\\nOver nineteen, over nineteen, I done lost\\nI done kicked, I done kicked, I done kicked\\nOver nineteen, over nineteen, I done kicked\\n[Pre-Chorus]\\nNow I'm livin' like this, how could I ever switch?\\nThey wanna know what it's like, I tell 'em just watch\\nI've been forever, I've been forever\\n[Chorus]\\n'Cause when you're livin' like this and you're from the streets\\nIt's hard to make it, but if you don't give up, you'll beat it\\nYeah, yeah, you'll beat it, beat it, beat it, beat it\\nBeat it, beat it, beat it, beat it, beat it\\nYeah, you'll beat it, beat it, beat it, beat it, beat it\\nBeat it, beat it, beat it, beat it, beat it\\n[Verse 2]\\nI done came, I done came, I done came in\\nOver nineteen, over nineteen, I done came in\\nI done got, I done got, I done got it\\nOver nineteen, over nineteen, I done got it\\nI been, I been, I been riding 'round\\nOver nineteen, over nineteen, I been riding 'round\\nI been, I been, I been ballin' out\\nOver nineteen, over nineteen, I been ballin' out\\n[Pre-Chorus]\\nNow I'm livin' like this, how could I ever switch?\\nThey wanna know what it's like, I tell 'em just watch\\nI've been forever, I've been forever\\n[Chorus]\\n'Cause when you're livin' like this and you're from the streets\\nIt's hard to make it, but if you don't give up, you'll beat it\\nYeah, yeah, you'll beat it, beat it, beat it, beat it\\nBeat it, beat it, beat it, beat it, beat it\\nYeah, you'll beat it, beat it, beat it, beat it, beat it\\nBeat it, beat it, beat it, beat it, beat it\\n[Verse 3]\\nYeah, I've been forever, I've been forever\\nAnd, yeah, I've been forever, I've been forever\\nI done seen, I done seen it all, I done seen it all\\nI done seen it all, I done seen it all\\nI done cried, I done cried, I done cried\\nOver nineteen, over nineteen, I done cried\\nI done kicked, I done kicked, I done kicked\\nOver nineteen, over nineteen, I done kicked\\nI done lost, I done lost, I done lost\\nOver nineteen, over nineteen, I done lost\\nI've been, I've been, I've been forever\\nYeah, I've been forever, I've been forever\\nI've been, I've been, I've been forever\\nYeah, I've been forever, I've been forever\\n[Outro]\\nI done cried, I done cried, I done cried\\nOver nineteen, over nineteen, I done cried\\nI've been forever, I've been forever\",\n", - " 'id': 8804263},\n", - " {'name': 'K-POP',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"Verse 1 (English)\\nI'm living my best life, ain't no tellin' lies\\nPopping bottles and smokin' dice, feelin' like the king of the sky\\nGot my squad by my side, we ain't stoppin' 'til the mornin' light\\nChasin' the high, chasin' the thrill, livin' life on the tight\\n\\nChorus (English)\\nOh, last night, oh, last night\\nThe memories still feelin' right\\nWe livin' life to the fullest, no regrets, no alarms\\nOh, last night, oh, last night\\n\\nVerse 2 (Spanish)\\nViviendo mi mejor vida, no hay mentiras\\nBotellas explosionando y fumando dados, siento el rey del cielo\\nTengo mi crew a mi lado, no pararemos hasta el amanecer\\nBuscando la alta, buscando el placer, viviendo la vida en el aire\\n\\nChorus (Spanish)\\nOh, la noche pasada, oh, la noche pasada\\nLas memorias aún sientenight\\nVivimos la vida al máximo, sin arrepentimientos, sin alaridos\\nOh, la noche pasada, oh, la noche pasada\\n\\nVerse 3 (English)\\nI'm the king of the club, got the crowd in a trance\\nMakin' moves that'll make 'em dance, got 'em feelin' like they're in a daze\\nGot my hands on the pulse, got the flow like a snake\\nMakin' moves that'll make 'em shake, got 'em feelin' like they're in a cage\\n\\nChorus (English)\\nOh, last night, oh, last night\\nThe memories still feelin' right\\nWe livin' life to the fullest, no regrets, no alarms\\nOh, last night, oh, last night\\n\\nOutro (English)\\nThe night is young, we ain't done yet\\nGot a feelin' that we'll be back at it, bet\\nGot a taste for the thrill, got a thirst for the fun\\nWe'll be back at it again, when the sun is done.\\n\",\n", - " 'lyre_response': \"[Intro Travis Scott]\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nYeah, yeah, yeah, yeah, nah, nah, nah, nah\\n[Verse 1 Travis Scott]\\nAyy, ayy, ayy, ayy, ayy\\nI been, I been, I been smokin' Mary Jane\\nHighway, highway, no lanes, oh, I'm swerving\\nSwerving, swerving, yeah, that's that drowsy shit\\nIn the drop, in the drop, in the drop, the whip\\nLowkey, lowkey, I'm looking for that hit\\nDon't wanna fuck, don't wanna fuck, tengo peso\\nNo tengo peso, no tengo peso\\n[Bridge Travis Scott & \\nBad Bunny]\\nBesito, besito, besito, besito\\nMira, mira, mira, mi casa, su casa\\nBesito, besito, besito, besito\\nMira, mira, mira, mi casa, su casa\\nBesito, besito, besito, besito\\nMira, mira, mira, mi casa, su casa\\nBesito, besito, besito, besito\\nMira, mira, mira, mi casa, su casa\\n[Verse 2 Bad Bunny & \\nTravis Scott]\\nUno, uno, prende, bebe\\nY uestra Yeah, yeah\\nAy, yo, aye, kemo, pa' mi casa\\nPa' mi casa, pa' mi casa\\nDilesa Woo, woo, woah\\nDilesa Woo, woo, woah\\nToca, toca, to' las chicas\\nToca, toca, to' las chicas\\nBailar, bailar, ma' las estrellas\\nBailar, bailar, ma' las estrellas\\nOh, woh, ayy\\n[Pre-Chorus Travis Scott]\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\n[Chorus Travis Scott & \\nBad Bunny]\\nOoh, that's that one night, one night\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nI wanna relive that one night, one night\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nI wanna relive that one night\\nOoh, that's that one night, one night\\nI wanna relive that one night, one night\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nOoh, that's that one night, one night\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nI wanna relive that one night, one night\\nNAH, THIS CAN'T BE LIFE, CAN IT?\\nI wanna relive that one night [Verse 3 Bad Bunny]\\nUno, uno, prende, bebe\\nY uestra\\nAy, yo, aye, kemo, pa' mi casa\\nPa' mi casa, pa' mi casa\\nDilesa\\nToca, toca, to' las chicas\\nToca, toca, to' las chicas\\nBailar, bailar, ma' las estrellas\\nBailar, bailar, ma' las estrellas\\nOh, woh, ayy\\n[Pre-Chorus Bad Bunny]\\nYnah, thith Can't Be Li Life, Can It?\\nNah, Thith Can't Be Li Life, Can It?\\nNah, Thith Can't Be Li Life, Can It?\\nNah, Thith Can't Be Li Life, Can It?\\n[Chorus Travis Scott & \\nBad Bunny]\\nOh, that's that one night, one night\\nNah, Thith Can't Be Li Life, Can It?\\nI wanna relive that one night, one night\\nNah, Thith Can't Be Li Life, Can It?\\nI wanna relive that one night\\nOoh, that's that one night, one night\\nI wanna relive that one night, one night\\nNah, Thith Can't Be Li Life, Can It?\\nOoh, that's that one night, one night\\nNah, Thith Can't Be Li Life, Can It?\\nI wanna relive that one night, one night\\nNah, Thith Can't Be Li Life, Can It?\\nI wanna relive that one night\",\n", - " 'id': 9175638},\n", - " {'name': 'Heavenly Sent',\n", - " 'artist': 'Sam Smith',\n", - " 'llama_response': \"Verse 1\\nI never knew what it meant to feel so free\\nUntil the day you came into my life\\nWith your wings of love and your shining light\\nYou saved me from the dark, and made everything right\\n\\nChorus\\nYou're my angel, my guiding star\\nThe one who holds my heart, near and far\\nIn you I find solace, comfort, and peace\\nYou're the one who helps me find my release\\n\\nVerse 2\\nLife can be harsh, it can be cold\\nBut with you by my side, I never feel alone\\nYou're my rock, my shelter in the storm\\nMy forever friend, my guiding form\\n\\nChorus\\nYou're my angel, my guiding star\\nThe one who holds my heart, near and far\\nIn you I find solace, comfort, and peace\\nYou're the one who helps me find my release\\n\\nBridge\\nI don't know what I'd do without your love\\nIt's the one thing that keeps me from above\\nYou're the one who makes my heart sing\\nYou're the one who brings me wings\\n\\nChorus\\nYou're my angel, my guiding star\\nThe one who holds my heart, near and far\\nIn you I find solace, comfort, and peace\\nYou're the one who helps me find my release\\n\\nOutro\\nYou're my steady hand, my beacon in the night\\nMy forever love, my guiding light\\nIn you I find my home, my place to rest\\nYou're the one who helps me find my best\\n\",\n", - " 'lyre_response': \"[Intro]\\nYou're an angel\\n[Verse 1]\\nYou're the one I need, you're the one I breathe\\nYou're the one I depend on, you're the one I see\\nThrough all of the darkness, you are the light\\nYou're an angel, yeah, you're an angel\\n[Pre-Chorus]\\nAnd I don't know what I'd do, where would I be\\nWithout you holding me, through all of the storms\\nYou're an angel, yeah, you're an angel\\n[Chorus]\\nYou're an angel sent from the heavens above\\nYou're an angel, you're an angel\\n[Verse 2]\\nI don't deserve you, no, I could never repay\\nWhat you've done for me, but I'll try, I'll try with every part\\nOf myself, I'll do my best to make sure you're alright\\nYou're an angel, yeah, you're an angel\\n[Pre-Chorus]\\nAnd I don't know what I'd do, where would I be\\nWithout you holding me, through all of the storms\\nYou're an angel, yeah, you're an angel\\n[Chorus]\\nYou're an angel sent from the heavens above\\nYou're an angel, you're an angel\\n[Bridge]\\nWhen I'm feeling lost, you're the light that I follow\\nWhen I'm feeling cold, you're the fire that I cling to\\nYou're an angel, yeah, you're an angel\\n[Chorus]\\nYou're an angel sent from the heavens above\\nYou're an angel, you're an angel\",\n", - " 'id': 8721952},\n", - " {'name': 'Die For You (Remix)',\n", - " 'artist': 'Ariana Grande',\n", - " 'llama_response': \"Verse 1\\nI'm standing here, heart on my sleeve\\nTryna find the words to convey\\nThe depth of my love, the weight of my heart\\nFeeling so lost, but I'll never depart\\n\\nChorus\\nI'll do anything, just to be with you\\nFacing every fear, to prove my love true\\nI'll stand by you, through the good and the bad\\n'Cause you're worth it, you're the one I've had\\n\\nVerse 2\\nFear of loneliness, it's a feeling so real\\nBut I know I'd rather feel that than to conceal\\nThe truth of my heart, the depth of my soul\\n'Cause when I'm with you, I know I'm whole\\n\\nChorus\\nI'll do anything, just to be with you\\nFacing every fear, to prove my love true\\nI'll stand by you, through the good and the bad\\n'Cause you're worth it, you're the one I've had\\n\\nBridge\\nI know we're far, but my love won't fade\\nI'll be there for you, no matter the shade\\nI'll fight for you, with every breath I take\\n'Cause you're the one I need, you're the one I make\\n\\nChorus\\nI'll do anything, just to be with you\\nFacing every fear, to prove my love true\\nI'll stand by you, through the good and the bad\\n'Cause you're worth it, you're the one I've had\\n\\nOutro\\nI'll be your shelter, your safe haven\\nI'll be your home, where you can always be\\nI'll be your forever, your love so true\\nI'll do anything, just to be with you.\\n\",\n", - " 'lyre_response': \"[Verse 1]\\nI'm scared of loneliness, but I'm willin' to give it a try\\nIf it means that you'll be mine\\nI'm standin' by, and I'm willin' to say goodbye\\nTo every place I've ever known\\n[Pre-Chorus]\\n'Cause I'm so used to makin' all the rules\\nBut baby, this time, I'm willin' to lose\\nI'm willin' to lose\\n[Chorus]\\nI'm willin' to do anything for you\\nAnything, anything, anything for you\\nI'm willin' to do anything for you\\nAnything, anything, anything\\nFor you, for you\\n[Verse 2]\\nHey, I'm jealous, and I'm always lookin' at the mirror\\nWho'd I see? You guessed it\\nI'm angry too, and I'm sorry that I lashed out at you\\nWhen I'm scared, I run, but I'm willin' to face it\\nI'm willin' to face it [Pre-Chorus]\\n'Cause I'm so used to makin' all the rules\\nBut baby, this time, I'm willin' to lose\\nI'm willin' to lose\\n[Chorus]\\nI'm willin' to do anything for you\\nAnything, anything, anything for you\\nI'm willin' to do anything for you\\nAnything, anything, anything\\nFor you, for you\\n[Bridge]\\nYou know I'd never ask you to do somethin' stupid\\nOr let you do somethin' stupid to me\\nI know you'd never ask me to do somethin' stupid\\nSo let's just chill and stay together, naturally\\n[Chorus]\\nI'm willin' to do anything for you\\nAnything, anything, anything for you\\nI'm willin' to do anything for you\\nAnything, anything, anything\\nFor you, for you\\nI'm willin' to do anything for you\\nAnything, anything, anything for you\\nI'm willin' to do anything for you\\nAnything, anything, anything\\nFor you, for you\",\n", - " 'id': 8855026},\n", - " {'name': 'Selfish (will.i.am Reference)',\n", - " 'artist': 'Kanye West',\n", - " 'llama_response': \"Verse 1\\nI'm the king of my domain, you're the queen of my heart\\nBut sometimes I feel like I'm losing my grip, oh Lord\\nYou're the only one I desire, the only one I need\\nBut the world's trying to tear us apart, it's a never-ending fight\\n\\nChorus\\nI want you all to myself, give me the key\\nI'll keep you locked up tight, like a treasure to me\\nI'll be your possessive king, you'll be my queen\\nTogether we'll rule this world, our love will be seen\\n\\nVerse 2\\nI'm a slave to my emotions, a prisoner of my mind\\nI can't help but think of you, all the time\\nI know I'm not perfect, I've got my own demons to face\\nBut with you by my side, I feel like I can conquer the place\\n\\nChorus\\nI want you all to myself, give me the key\\nI'll keep you locked up tight, like a treasure to me\\nI'll be your possessive king, you'll be my queen\\nTogether we'll rule this world, our love will be seen\\n\\nVerse 3\\nI know I've got issues, I've got my own personal hell\\nBut with you, I feel like I can conquer anything, you're my fuel\\nI'll do whatever it takes, to keep you by my side\\nI'll be the king of your heart, you'll be my queen, my pride\\n\\nChorus\\nI want you all to myself, give me the key\\nI'll keep you locked up tight, like a treasure to me\\nI'll be your possessive king, you'll be my queen\\nTogether we'll rule this world, our love will be seen\\n\\nBridge\\nI know I'm not perfect, I've got my own personal shame\\nBut with you, I feel like I can rise above it all, you're my claim to fame\\nI'll do whatever it takes, to keep you by my side\\nI'll be the king of your heart, you'll be my queen, my pride\\n\\nChorus\\nI want you all to myself, give me the key\\nI'll keep you locked up tight, like a treasure to me\\nI'll be your possessive king, you'll be my queen\\nTogether we'll rule this world, our love will be seen\\n\\nOutro\\nI'll be your king, you'll be my queen\\nTogether we'll rule this world, our love will be seen\\nI'll keep you locked up tight, like a treasure to me\\nI'll be your possessive king, you'll be my queen, my pride.\\n\",\n", - " 'lyre_response': \"[Intro XXXTENTACION]\\nDon't ever speak my name like it's common (Like)\\nYou don't ever look at me that way (Huh)\\nAnd if you ever leave my side, boy you're gonna-\\n[Chorus XXXTENTACION & \\nKanye West]\\nBe sorry, very sorry Sorry\\nSorry I'm not sorry Not sorry\\n'Cause all I ever really wanted\\nWas you, so I'm glad I got ya I got ya\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\n[Verse 1 Kanye West]\\nAnd don't ever let 'em take your freedom (Oh, no)\\nAnd don't ever let 'em take your dignity (Oh, no)\\nWhen it comes to matters of the heart (Oh, no)\\nI don't think rehab can fix your addiction\\nIt's gon' take a miracle to fix your obsession (Woo)\\nA miracle in the form of relaxation (Woo)\\nIt's gon' take a miracle (Woo)\\nA miracle because it's not just a habit (Woo)\\nShe's too far gone, this girl, you can't come back (Woo)\\nYou built too many walls, now it's too late (Woo)\\nThe greatest asset in the game is self-awareness (Woo)\\nThe greatest flaw is thinking you're aware enough (Woo)\\nAnd if you get too close, you're gonna get burned (Woo)\\nYou're gonna get third-degree burns (Woo)\\n'Cause I don't think you're ready for the world, baby (Woo)\\nThe last time we spoke, you didn't want to talk baby (Woo)\\n'Cause your pride is hurt\\n (Woo)\\nAnd I don't think you're ready for the world, baby (Woo)\\nThe last time we spoke, you didn't want to talk baby (Woo)\\n'Cause your pride is hurt (Woo)\\nAnd I don't think you're ready (Woo)\\nI don't think you're ready for the world, baby (Woo)\\nThe last time we spoke, you didn't want to talk baby (Woo)\\n'Cause your pride is hurt (Woo)\\nAnd I don't think you're ready (Woo) [Chorus XXXTENTACION & \\nKanye West]\\nBe sorry, very sorry Sorry\\nSorry I'm not sorry Not sorry\\n'Cause all I ever really wanted\\nWas you, so I'm glad I got ya I got ya\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\n[Verse 2 XXXTENTACION]\\nAnd I don't think you're ready\\nFor the world, so overboard (So overboard)\\nEverything is so extreme (So extreme)\\nBet you never thought you'd see me sober (Sober)\\nI'm in a cast, it's a long story (It's a long story)\\nBut I'm home, I'm not a murderer (I'm not a murderer)\\nI don't got life, so I'm a lucky bastard (I'm a lucky bastard)\\nBut I don't know how to love, I'm a coward (I'm a coward)\\nAnd I don't think you're ready\\nFor the world, so overboard (So overboard)\\nEverything is so extreme (So extreme)\\nBet you never thought you'd see me sober (Sober)\\nI'm in a cast, it's a long story (It's a long story)\\nBut I'm home, I'm not a murderer (I'm not a murderer)\\nI don't got life, so I'm a lucky bastard (I'm a lucky bastard)\\nBut I don't know how to love, I'm a coward (I'm a coward)\\n[Chorus XXXTENTACION & \\nKanye West]\\nBe sorry, very sorry Sorry\\nSorry I'm not sorry Not sorry\\n'Cause all I ever really wanted\\nWas you, so I'm glad I got ya I got ya\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\nI don't really wanna share ya (Don't wanna share)\\nSo keep it on the low, yeah, I'm possessive, yeah (Shh)\\nYou can have your moments, but don't have other people (Shh)\\n[Outro Kanye West]\\nI don't think she's ready\\nFor the world, so overboard\\nEverything is so extreme\\nBet you never thought you'd see me sober\\nI'm in a cast, it's a long story\\nBut I'm home, I'm not a murderer\\nI don't got life, so I'm a lucky bastard\\nBut I don't know how to love, I'm a coward\",\n", - " 'id': 8855903},\n", - " {'name': 'Dance The Night',\n", - " 'artist': 'Dua Lipa',\n", - " 'llama_response': \"(Verse 1)\\nI've been through the fire, but I'm still standing tall\\nHeartache in my eyes, but I won't let it pull me down\\nI hit the club tonight, to lose myself in the sound\\nOf the beat and the lights, and the energy all around\\n\\n(Chorus)\\nI'm feeling alive, got my sparkling crown\\nDancing through the night, like a queen on the throne\\nI'm unstoppable, got my confidence high\\nGlittering in the lights, like a diamond in the sky\\n\\n(Verse 2)\\nI see the world through different eyes, when I'm on the floor\\nThe music takes me higher, than any heartache can bring\\nI shake it off, like a shadow, and let the beat consume\\nI'm a queen of the night, and I'm feeling alive\\n\\n(Chorus)\\nI'm feeling alive, got my sparkling crown\\nDancing through the night, like a queen on the throne\\nI'm unstoppable, got my confidence high\\nGlittering in the lights, like a diamond in the sky\\n\\n(Bridge)\\nI've been through the fire, but I'm still standing tall\\nI won't let heartache bring me down, I'll rise above it all\\nI'll keep on dancing, until the morning light\\nI'll shine brighter than the stars, in the night\\n\\n(Chorus)\\nI'm feeling alive, got my sparkling crown\\nDancing through the night, like a queen on the throne\\nI'm unstoppable, got my confidence high\\nGlittering in the lights, like a diamond in the sky\\n\\n(Outro)\\nI'll keep on dancing, until the morning light\\nI'll shine brighter than the stars, in the night\\nI'm unstoppable, got my sparkling crown\\nI'm the queen of the night, and I'm feeling alive.\\n\",\n", - " 'lyre_response': \"[Intro]\\nDon't\\u2005call\\u2005me, I'm\\u2005already gone\\nI'm dancing with somebody new\\nDon't\\u2005worry, it's not about you\\n[Chorus]\\nI'm\\u205fdancin'\\u205fwith\\u205fthe\\u205fdeuces,\\u205fso call me Deuce\\u205fWild\\nI'm\\u205fmovin' like a champion, just call me Suga Bear\\nI'm shinin' like a diamond underneath the sparkle lights\\nI'm\\u205fdecomposin' like it's no one's business, no worries, no fights\\n[Verse 1]\\nI'm moving like a champion and you know it\\nI've got the crowd in check, just watch me go\\nDon't let it break your heart\\nWhen we're far apart\\nI know that I'll be there\\nDancing with somebody new [Pre-Chorus]\\nNo time to be sad, babe\\nWhen you're dancing with somebody new\\nI know it's over, babe\\nBut that's not what I want to do\\n[Chorus]\\nI'm dancin' with the deuces, so call me Deuce Wild\\nI'm movin' like a champion, just call me Suga Bear\\nI'm shinin' like a diamond underneath the sparkle lights\\nI'm decomposin' like it's no one's business, no worries, no fights\\n[Verse 2]\\nI'm moving like a champion and you know it\\nI've got the crowd in check, just watch me go\\nDon't let it break your heart\\nWhen we're far apart\\nI know that I'll be there\\nDancing with somebody new [Pre-Chorus]\\nNo time to be sad, babe\\nWhen you're dancing with somebody new\\nI know it's over, babe\\nBut that's not what I want to do [Chorus]\\nI'm dancin' with the deuces, so call me Deuce Wild\\nI'm movin' like a champion, just call me Suga Bear\\nI'm shinin' like a diamond underneath the sparkle lights\\nI'm decomposin' like it's no one's business, no worries, no fights\\nI'm dancin' with the deuces, so call me Deuce Wild\\nI'm movin' like a champion, just call me Suga Bear\\nI'm shinin' like a diamond underneath the sparkle lights\\nI'm decomposin' like it's no one's business, no worries, no fights\",\n", - " 'id': 9149479},\n", - " {'name': 'Another Late Night',\n", - " 'artist': 'Drake',\n", - " 'llama_response': \"Verse 1\\nI'm sitting here, sipping on a drink, thinking 'bout the one I left behind\\nShe was the one I loved, but now she's just a memory, a distant mind\\nI'm living this life of fame, it's all about the glamour and the dime\\nBut sometimes I can't help but wonder, if it's all just a crime\\n\\nChorus\\nMy bitch, my bitch, my heart's on fire\\nBut I know I'm not the one she desires\\nShe wants the fame and fortune, the lights and the glory\\nBut I'm just a man, trying to find my way to her heart, oh\\n\\nVerse 2\\nI'm living this life of luxury, but it's not as sweet as it seems\\nI'm constantly in the spotlight, but nobody sees the real me\\nI'm just a kid from the 6, trying to make a name for myself\\nBut sometimes I feel like I'm losing myself in the wealth and the wealth\\n\\nChorus\\nMy bitch, my bitch, my heart's on fire\\nBut I know I'm not the one she desires\\nShe wants the fame and fortune, the lights and the glory\\nBut I'm just a man, trying to find my way to her heart, oh\\n\\nVerse 3\\nI'm walking these red carpets, but I'm not who I pretend to be\\nI'm just a man, trying to find my place in this world, you see\\nI'm trying to make a difference, but sometimes it feels like a game\\nI'm just a pawn in this world, trying to make my move, but it's all in vain\\n\\nChorus\\nMy bitch, my bitch, my heart's on fire\\nBut I know I'm not the one she desires\\nShe wants the fame and fortune, the lights and the glory\\nBut I'm just a man, trying to find my way to her heart, oh\\n\\nBridge\\nI know I'm not the only one, living this life of fame and fortune\\nBut sometimes it feels like a curse, a never-ending cycle of madness\\nI'm just a man, trying to find my place in this world, trying to make a name\\nBut sometimes I feel like I'm losing myself in the game\\n\\nChorus\\nMy bitch, my bitch, my heart's on fire\\nBut I know I'm not the one she desires\\nShe wants the fame and fortune, the lights and the glory\\nBut I'm just a man, trying to find my way to her heart, oh\\n\\nOutro\\nSo I'll keep on singing my song, hoping that she'll hear me someday\\nAnd maybe she'll see the real me, behind this fame and the glamour\\nI'm just a man, trying to find my way, in this crazy world we live in\",\n", - " 'lyre_response': \"[Intro]\\nRihanna!\\nHello? Yeah\\nI think I lost my train of thought\\nIt's like I said, you're coming over\\nI'm at the house, it's a bit of a mess\\nI've been up and down, you know that\\nJust be careful when you come through the front door\\nI put the tunes on, max the volume out\\nJust be careful not to knock over the trophies\\nOoh, whoa\\n[Verse 1]\\nAnd I'm sitting here thinking how it all started\\nAnd it was you, my baby, who got me involved in all of this shit\\nYou're the one who told me I'm a star, recruit me for the Marines, you're a bitch\\nYou're the reason I got plaques and the reason I got ribbons, you a bitch\\nI hate to do this over the phone, but can you do me a favor?\\nCan you make it out to West here tomorrow? I'll be at the crib all day\\nOh, and baby, I gotta ask, can you bring me my bags?\\nMy new bag, that is, the one that's from your favorite designer\\nThe one that got all the sauce on it from when you left the spray tan on me\\nOh, oh, oh\\n[Pre-Chorus]\\nI don't know, it's kinda stupid if you ask me\\nWhat I'm doing out here all alone\\nThinking 'bout letting you stay over\\nIs it cool if I call you my bitch?\\nI don't know, it's kinda stupid if you ask me\\nI'm out here all alone\\nAnd I can think of a million things I'd rather do than be on the phone with you\\nBut right now, that's the only way I can think of to make it up to you\\nSo what do you say, baby? Can I call you my bitch? My bitch [Chorus]\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't [Verse 2]\\nI've been watching you from the moment I came into this world\\nAnd even when I leave, that is, if that's God's will\\nI always will love you and I will always respect you\\nI'll be right here on call if you ever need a favor\\nI don't mind getting dirty, I do it all for you\\nI know that you're out here, so go on and hit me up\\nWhat do you need, baby? Just let me know, and do\\nI gotta ask, how is Kanye? I met him once before\\nI was a bit of a fan back in the day, I won't argue anymore\\nAnd Kim, you two are having a baby, that's a big deal to me\\nCongratulations to you both, man, that's great to see [Pre-Chorus]\\nI don't know, it's kinda stupid if you ask me\\nWhat I'm doing out here all alone\\nThinking 'bout letting you stay over\\nIs it cool if I call you my bitch?\\nI don't know, it's kinda stupid if you ask me\\nI'm out here all alone\\nAnd I can think of a million things I'd rather do than be on the phone with you\\nBut right now, that's the only way I can think of to make it up to you\\nSo what do you say, baby? Can I call you my bitch? My bitch [Chorus]\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't\\nI can call you my bitch, but that don't make you my bitch\\nIf you don't want me to, I won't, I won't, I won't, I won't, I won't\",\n", - " 'id': 9488818},\n", - " {'name': 'FUnK YA',\n", - " 'artist': 'Bruno Mars',\n", - " 'llama_response': \"(Verse 1)\\nYo, listen up, I got a story to tell\\n'Bout a love that's funky, and a love that's swell\\nSee, she's got a way of making me smile\\nBut then she pushes me away, and I'm left to wonder why\\n\\n(Chorus)\\nFunk you to the top, I'm gonna break through\\nGonna funk you to the top, and get my groove back to you\\nPunk ya, I'm gonna make you see\\nThat I'm the one for you, and you're the one for me\\n\\n(Verse 2)\\nWe dance around, we play games of love\\nShe's got me feeling like I'm walking on air\\nBut then she takes a step back, and I'm left to roam\\nWondering where I stand, and if I'll ever be the one\\n\\n(Chorus)\\nFunk you to the top, I'm gonna break through\\nGonna funk you to the top, and get my groove back to you\\nPunk ya, I'm gonna make you see\\nThat I'm the one for you, and you're the one for me\\n\\n(Bridge)\\nWe're like two souls, lost in a funky haze\\nTrying to find our way, through the emotional maze\\nBut I know we can make it, if we just keep on dancing\\nFunk you to the top, and let our love take chancing\\n\\n(Outro)\\nNow I'm standing here, with my heart on my sleeve\\nRealizing too late, I wanna stay and believe\\nIn the funk of love, and the groove of life\\nFunk you to the top, and make it alright\\n\\n(Hook)\\nFunk you to the top, funk you to the top\\nPunk ya, punk ya, make you see\\nFunk you to the top, funk you to the top\\nWe're gonna funk you to the top, and never stop\\n\",\n", - " 'lyre_response': '[Intro]\\nFunk you to the top\\nPunk you to the top\\nFunk you to the top\\nPunk you to the top\\nFunk you to the top\\nPunk you to the top\\n[Verse 1]\\nPete \\nHey, Dave, what\\'s up, man?\\nDave \\nNot much, Pete. What\\'s up with you?\\nPete \\nI\\'m uh, I\\'m trying to figure out this chick, man\\nDave \\nOh yeah? What\\'s her name?\\nPete \\nJenny. She\\'s hot, man. She\\'s like, mega\\nDave \\nOkay, well, how\\'s she feel about you?\\nPete \\nIt\\'s back and forth, you know? She\\'s all like, \"I love this song!\"\\nThen she\\'s like, \"I hate this song!\"\\nDave \\nOh, man. That\\'s gotta be hard to figure out\\nPete \\nTell me about it, man. One minute she\\'s all over me\\nThen the next, she\\'s cold as ice\\nDave \\nWell, you wanna know a trick that might help you out?\\nPete \\nYeah, I\\'m all ears\\nDave \\nJust learn how to punk her, man\\nPunk her\\nFunk you to the top\\n[Spoken Dialogue]\\nPete \\nJenny, I\\'m gonna call you tonight\\nJenny \\nOkay, what\\'s up?\\nPete \\nNothin\\', nothin\\'. I was just thinkin\\' \\'bout you\\nJenny \\nOh yeah?\\nPete \\nYeah. I was wonderin\\' if I could, uh, see you tonight\\nJenny \\nOkay\\nPete \\nOkay, well, what\\'s your number again?\\nJenny \\nUh, it\\'s 555-7264\\nPete \\nOkay, cool. Well, I\\'m gonna funk you to the top, girl\\nJenny \\nWhat?\\nPete \\nNothing, I was just sayin\\' you\\'re like a virgin\\nGirl, you gotta get funked\\nJenny \\nOh\\nPete \\nDon\\'t be so quick to judge, okay?\\nJenny \\nI\\'m not judging\\nPete \\nCool. Well, I\\'m gonna funk you to the top\\nJenny \\nPete, wait\\nPete \\nWhat?\\nJenny \\nI didn\\'t say you could use my bathroom\\nPete \\nOh, I did? When?\\nJenny \\nLast night\\nPete \\nOh, man. I\\'m gonna funk you to the top\\n, girl\\nJenny \\nPunk me first\\nPete \\nWhat?\\nJenny \\nPunk me first\\nPete \\nOh, you want the truth?\\nJenny \\nYeah\\nPete \\nLook, uh, I\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you to the top\\nJenny \\nHow?\\nPete \\nI\\'m gonna punk you to the top\\nJenny \\nOh\\nPete \\nDon\\'t worry, I got a plan\\nJenny \\nWhat is it?\\nPete \\nI\\'m gonna funk you',\n", - " 'id': 8542990},\n", - " {'name': 'GOLD BLACKBERRY',\n", - " 'artist': 'Travis Scott ',\n", - " 'llama_response': \"(Verse 1)\\nI'm livin' large, I'm on top of the game\\nFloating on clouds, got my name in flames\\nGot my own private jet, it's never late\\nFlyin' high, feelin' alive, ain't no debate\\n\\nGot my own private island, it's off the chain\\nPartyin' all night, got my own private gain\\nGot my own private chef, he cooks up the finest dishes\\nGot my own private vault, it's where I keep my riches\\n\\n(Chorus)\\nLuxury life, it's the only way to live\\nGot my own private world, it's where I give\\nEverything I got, it's all on the table\\nLuxury life, it's the only way to survive\\n\\n(Verse 2)\\nBentley, Ferrari, and a mansion to call my own\\nGot my own private beach, it's where I go to moan\\nGot my own private crew, they always by my side\\nWe party hard, we never say die\\n\\nGot my own private club, it's where I get my thrills\\nGot my own private stage, it's where I get my kills\\nGot my own private life, it's where I get my fame\\nLuxury life, it's the only way to play the game\\n\\n(Chorus)\\nLuxury life, it's the only way to live\\nGot my own private world, it's where I give\\nEverything I got, it's all on the table\\nLuxury life, it's the only way to survive\\n\\n(Bridge)\\nI'm the king of the game, I'm on top of the throne\\nGot my own private army, they always on the phone\\nGot my own private bank, it's where I keep my dough\\nLuxury life, it's the only way to flow\\n\\n(Verse 3)\\nGot my own private island, it's where I get my thrills\\nGot my own private beach, it's where I get my kills\\nGot my own private crew, they always by my side\\nWe party hard, we never say die\\n\\nGot my own private jet, it's where I get my flight\\nGot my own private stage, it's where I get my light\\nGot my own private life, it's where I get my fame\\nLuxury life, it's the only way to play the game\\n\\n(Outro)\\nLuxury life, it's the only way to live\\nGot my own private world, it's where I give\\nEverything I got, it's all on the table\\nLuxury life, it's the only way to survive.\\n\",\n", - " 'lyre_response': '[Intro]\\nSnippet from \"Birds\" by KAYTRANADA\\nAyy, bitch, I\\'m fuckin\\' her on the regular\\nAnd she just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nAyy, bitch, I\\'m fuckin\\' her on the regular\\nAnd she just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\n[Verse]\\nBad bitches wanna fuck me, I got options\\nWhen I show up, the women go wild\\nThey see me, they want me, they tap on my shoulder\\nAnd say, \"Fuck me, I\\'m your little mama\"\\nI like that, they call me a playboy, I like that\\nI\\'ve got a lot of bitches, I ain\\'t got no time for that\\nI\\'m a hustler, yeah, I\\'m a hustler\\nAnd if you don\\'t fuckin\\' know, I\\'m a hustler\\nI\\'m a hustler, I need me a hustler\\nI\\'m a hustler, I need me a hustler\\n (Yeah)\\nI\\'m a hustler, I need me a hustler\\nI\\'m a hustler, I need me a hustler\\n (Yeah, yeah)\\n[Chorus]\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\n[Interlude]\\nSnippet from \"Birds\" by KAYTRANANDA\\nAyy, bitch, I\\'m fuckin\\' her on the regular\\nAnd she just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nAyy, bitch, I\\'m fuckin\\' her on the regular\\nAnd she just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more [Verse 2]\\nI remember just gettin\\' my first million\\nCouldn\\'t get me no bigger than a coupe and a mistress\\nI was drivin\\' around with my brothers, doin\\' donuts on the curb\\nWith the engine on the back of my first horse, I was ridin\\' a turbo\\nI\\'m from the city where they love and they praise hustlers\\nI\\'m from the city where they make \\'em, they don\\'t raise \\'em\\nI\\'m from the city of Houston, I\\'m from the city of H-Town\\nI don\\'t talk about my personal life, you know I got a couple of sides now\\nBut me and Kylie, we got Tyga, we got Stoney, we got that one lil\\' nigga\\nThat\\'s my only son, and he gon\\' be okay, don\\'t worry \\'bout nothin\\', yeah\\n[Chorus]\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\nShe just want me to get her more and more\\n[Outro]\\nSnippet from \"Birds\" by KAYTRANANADA\\nAyy, bitch, I\\'m fuckin\\' her on the regular\\nAnd she just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more\\nShe just want me to get her more and more\\nMore and more',\n", - " 'id': 9103860}]" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "l" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "90b29813", - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
idsongartisttarget_responsemodel_response_xmodel_response_y
09012842SWINEDemi Lovato[Verse 1]\\nGod forbid, I wanna suck whatever t...Verse 1:\\nI'm sick of being told what to do, s...[Intro]\\nDon't tell me what to do\\nI'm using m...
18955184Search & RescueDrake[Intro]\\n(\\nI-I'm\\n)\\nSADPONY\\nAyy \\n(\\nI-I'm\\...Verse 1:\\nI'm trapped in this bubble, it's all...[Intro]\\nYeah, yeah\\nIt's the 6ix God and I'm ...
28838915BACK THAT UP TO THE BEATMichael Jackson[Verse 1]\\nMean the metaphor\\nMove to the beat...(Verse 1)\\nYo, it's the weekend, let's get it ...[Intro]\\nDon't you want to dance with me?\\nDon...
39268440DesireSam Smith[Verse 1]\\nI want you to hold me\\nDon't let me...Verse 1:\\nI've been alone for so long, feeling...[Verse 1]\\nI'm alone, and it's a little too mu...
49538405Say Don’t Go (Taylor’s Version) [From The Vault]Taylor Swift[Verse 1]\\nI've known it from the very start\\n...Verse 1:\\nI've been waiting for your call, for...[Refrain]\\nDon't go, don't go\\nPlease don't go...
.....................
1128855903Selfish (will.i.am Reference)Kanye West[Chorus: XXXTENTACION & \\nwill.i.am\\n]\\nSelfis...Verse 1:\\nI'm the king of my domain, you're th...[Intro: XXXTENTACION]\\nDon't ever speak my nam...
1139149479Dance The NightDua Lipa[Verse 1]\\nBaby, you can find me under the lig...(Verse 1)\\nI've been through the fire, but I'm...[Intro]\\nDon't call me, I'm already gone\\nI'm ...
1149488818Another Late NightDrake[Intro: Drake]\\n(\\nGrow up, nigga\\n)\\nGrrah, g...Verse 1:\\nI'm sitting here, sipping on a drink...[Intro]\\n(\\nRihanna!\\n)\\nHello? Yeah\\nI think ...
1158542990FUnK YABruno Mars[Spoken]\\nA: So, have you found another way to...(Verse 1)\\nYo, listen up, I got a story to tel...[Intro]\\nFunk you to the top\\nPunk you to the ...
1169103860GOLD BLACKBERRYTravis Scott[Intro]\\n(\\nTay Keith, fuck these niggas up!\\n...(Verse 1)\\nI'm livin' large, I'm on top of the...[Intro]\\n(\\nSnippet from \"Birds\" by KAYTRANADA...
\n", - "

117 rows × 6 columns

\n", - "
" - ], - "text/plain": [ - " id song \\\n", - "0 9012842 SWINE \n", - "1 8955184 Search & Rescue \n", - "2 8838915 BACK THAT UP TO THE BEAT \n", - "3 9268440 Desire \n", - "4 9538405 Say Don’t Go (Taylor’s Version) [From The Vault] \n", - ".. ... ... \n", - "112 8855903 Selfish (will.i.am Reference) \n", - "113 9149479 Dance The Night \n", - "114 9488818 Another Late Night \n", - "115 8542990 FUnK YA \n", - "116 9103860 GOLD BLACKBERRY \n", - "\n", - " artist target_response \\\n", - "0 Demi Lovato [Verse 1]\\nGod forbid, I wanna suck whatever t... \n", - "1 Drake [Intro]\\n(\\nI-I'm\\n)\\nSADPONY\\nAyy \\n(\\nI-I'm\\... \n", - "2 Michael Jackson [Verse 1]\\nMean the metaphor\\nMove to the beat... \n", - "3 Sam Smith [Verse 1]\\nI want you to hold me\\nDon't let me... \n", - "4 Taylor Swift [Verse 1]\\nI've known it from the very start\\n... \n", - ".. ... ... \n", - "112 Kanye West [Chorus: XXXTENTACION & \\nwill.i.am\\n]\\nSelfis... \n", - "113 Dua Lipa [Verse 1]\\nBaby, you can find me under the lig... \n", - "114 Drake [Intro: Drake]\\n(\\nGrow up, nigga\\n)\\nGrrah, g... \n", - "115 Bruno Mars [Spoken]\\nA: So, have you found another way to... \n", - "116 Travis Scott [Intro]\\n(\\nTay Keith, fuck these niggas up!\\n... \n", - "\n", - " model_response_x \\\n", - "0 Verse 1:\\nI'm sick of being told what to do, s... \n", - "1 Verse 1:\\nI'm trapped in this bubble, it's all... \n", - "2 (Verse 1)\\nYo, it's the weekend, let's get it ... \n", - "3 Verse 1:\\nI've been alone for so long, feeling... \n", - "4 Verse 1:\\nI've been waiting for your call, for... \n", - ".. ... \n", - "112 Verse 1:\\nI'm the king of my domain, you're th... \n", - "113 (Verse 1)\\nI've been through the fire, but I'm... \n", - "114 Verse 1:\\nI'm sitting here, sipping on a drink... \n", - "115 (Verse 1)\\nYo, listen up, I got a story to tel... \n", - "116 (Verse 1)\\nI'm livin' large, I'm on top of the... \n", - "\n", - " model_response_y \n", - "0 [Intro]\\nDon't tell me what to do\\nI'm using m... \n", - "1 [Intro]\\nYeah, yeah\\nIt's the 6ix God and I'm ... \n", - "2 [Intro]\\nDon't you want to dance with me?\\nDon... \n", - "3 [Verse 1]\\nI'm alone, and it's a little too mu... \n", - "4 [Refrain]\\nDon't go, don't go\\nPlease don't go... \n", - ".. ... \n", - "112 [Intro: XXXTENTACION]\\nDon't ever speak my nam... \n", - "113 [Intro]\\nDon't call me, I'm already gone\\nI'm ... \n", - "114 [Intro]\\n(\\nRihanna!\\n)\\nHello? Yeah\\nI think ... \n", - "115 [Intro]\\nFunk you to the top\\nPunk you to the ... \n", - "116 [Intro]\\n(\\nSnippet from \"Birds\" by KAYTRANADA... \n", - "\n", - "[117 rows x 6 columns]" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "merged" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "d83d276b", - "metadata": {}, - "outputs": [], - "source": [ - "new_data = [{'5651833': 'lyre', '8473040': 'llama', '8714746': 'lyre', '8753696': 'lyre', '9268440': 'lyre', '9296239': 'lyre', '9316732': 'lyre', '9390671': 'llama', '9521954': 'llama'}, {'1629': 'llama', '56642': 'lyre', '241562': 'llama', '5328101': 'lyre', '6217414': 'llama', '8733841': 'lyre', '9149479': 'llama', '9268440': 'llama', '9481808': 'llama'}, {'2016798': 'llama', '4241190': 'llama', '4499925': 'llama', '5651833': 'llama', '5780833': 'lyre', '8714746': 'lyre', '8855903': 'lyre', '9538405': 'lyre', '9589444': 'lyre'}]\n", - "data = [{'4859957': 'llama', '8011175': 'llama', '8721952': 'llama', '8723233': 'llama', '8955184': 'llama', '9012842': 'llama', '9316732': 'llama', '9452460': 'llama', '9539416': 'llama'}, {'1629': 'llama', '4241190': 'llama', '6217414': 'llama', '8484262': 'llama', '9103860': 'llama', '9255119': 'llama', '9278189': 'llama', '9354764': 'llama', '9496510': 'llama'}, {'2158461': 'lyre', '8302862': 'lyre', '8305765': 'lyre', '8461583': 'lyre', '8753696': 'lyre', '9006590': 'lyre', '9285785': 'lyre', '9488818': 'lyre', '9592360': 'lyre'}, {'252542': 'lyre', '2016798': 'lyre', '6368552': 'lyre', '8721952': 'lyre', '8838915': 'lyre', '8860164': 'lyre', '9141389': 'lyre', '9285785': 'lyre', '9354510': 'lyre'}, {'5328101': 'llama', '5651836': 'llama', '5780833': 'llama', '6713449': 'llama', '8804263': 'llama', '9103860': 'llama', '9149479': 'llama', '9488818': 'llama', '9539416': 'llama'}, {'4499925': 'lyre', '8827240': 'llama', '8955184': 'lyre', '9012842': 'llama', '9017322': 'llama', '9178861': 'lyre', '9278189': 'llama', '9592328': 'llama', '9592360': 'lyre'}, {'89794': 'lyre', '6217414': 'lyre', '8535327': 'lyre', '8721953': 'lyre', '9268440': 'lyre', '9278189': 'llama', '9354510': 'llama', '9491312': 'llama', '9712938': 'llama'}, {'2158461': 'lyre', '3947016': 'lyre', '4888735': 'lyre', '7993821': 'lyre', '8473040': 'lyre', '8721953': 'lyre', '8837446': 'lyre', '9006590': 'lyre', '9431005': 'lyre'}, {'56642': 'llama', '284741': 'llama', '4499925': 'llama', '4805544': 'lyre', '5328101': 'llama', '8305765': 'lyre', '8838915': 'lyre', '8955184': 'lyre', '9354764': 'llama'}, {'56642': 'llama', '4007193': 'lyre', '6368552': 'lyre', '7179459': 'llama', '8209014': 'lyre', '9012842': 'llama', '9149479': 'llama', '9316732': 'llama', '9496510': 'llama'}, {'56642': 'llama', '5651836': 'lyre', '6217414': 'lyre', '8535327': 'llama', '8616820': 'llama', '8855903': 'llama', '9095848': 'llama', '9315592': 'llama', '9538405': 'llama'}, {'2158461': 'llama', '4007193': 'lyre', '7993821': 'llama', '8484071': 'lyre', '8855903': 'lyre', '9103860': 'lyre', '9152732': 'lyre', '9354764': 'lyre', '9424345': 'lyre'}, {'4888735': 'lyre', '6217414': 'lyre', '7864555': 'llama', '8542976': 'lyre', '9269871': 'lyre', '9342239': 'llama', '9390671': 'llama', '9452460': 'llama', '9743590': 'llama'}, {'2016798': 'lyre', '8484263': 'llama', '8542990': 'llama', '8721952': 'llama', '8829528': 'llama', '9117279': 'lyre', '9141389': 'lyre', '9149479': 'lyre', '9152732': 'lyre'}, {'195965': 'llama', '213372': 'llama', '241562': 'llama', '8305765': 'llama', '8490754': 'lyre', '8700423': 'llama', '9031130': 'lyre', '9157172': 'llama', '9175638': 'lyre'}, {'7993821': 'llama', '8700423': 'llama', '8827240': 'llama', '8846302': 'llama', '9152732': 'llama', '9255119': 'lyre', '9278189': 'llama', '9390671': 'lyre', '9743590': 'llama'}, {'213372': 'llama', '5780833': 'llama', '8753696': 'lyre', '8855903': 'llama', '9103860': 'llama', '9315592': 'lyre', '9390671': 'llama', '9488818': 'llama', '9538403': 'lyre'}, {'89794': 'llama', '213372': 'lyre', '9117279': 'llama', '9152732': 'llama', '9354764': 'lyre', '9363637': 'lyre', '9424345': 'lyre', '9491312': 'lyre', '9521954': 'llama'}, {'8445376': 'llama', '8484263': 'lyre', '8535327': 'lyre', '8760629': 'llama', '8855026': 'llama', '9095848': 'llama', '9255119': 'lyre', '9592328': 'llama', '9592360': 'llama'}, {'2016798': 'llama', '8461583': 'llama', '8721953': 'llama', '8837446': 'llama', '8843631': 'llama', '8855903': 'llama', '9117279': 'lyre', '9488818': 'llama', '9592328': 'llama'}, {'6217414': 'llama', '8209014': 'lyre', '8305765': 'llama', '8535327': 'lyre', '8542976': 'llama', '9103860': 'lyre', '9316732': 'llama', '9452460': 'llama', '9488818': 'llama'}, {'4241190': 'llama', '5499742': 'lyre', '8461583': 'lyre', '8484262': 'llama', '8484263': 'lyre', '8723233': 'llama', '8753696': 'lyre', '9431005': 'llama', '9488818': 'llama'}, {'1629': 'llama', '213372': 'llama', '4805544': 'lyre', '6368552': 'lyre', '8484263': 'llama', '9017322': 'lyre', '9152732': 'lyre', '9157172': 'lyre', '9424345': 'lyre'}, {'89794': 'llama', '195965': 'llama', '6368552': 'lyre', '8247476': 'llama', '9031130': 'lyre', '9296239': 'lyre', '9342239': 'llama', '9496510': 'lyre', '9521954': 'llama'}, {'4007193': 'llama', '8445376': 'lyre', '8542990': 'llama', '8616820': 'llama', '8753696': 'lyre', '8829528': 'llama', '9157481': 'llama', '9268440': 'lyre', '9491312': 'lyre'}, {'8542990': 'llama', '8700423': 'lyre', '8855903': 'lyre', '8860164': 'llama', '9006073': 'lyre', '9103860': 'lyre', '9175638': 'lyre', '9354510': 'lyre', '9452460': 'llama'}, {'1629': 'lyre', '56642': 'lyre', '3947016': 'lyre', '8837446': 'llama', '8838915': 'lyre', '9012842': 'lyre', '9175638': 'lyre', '9268440': 'lyre', '9342239': 'lyre'}, {'195965': 'llama', '5328101': 'lyre', '5651833': 'llama', '7179459': 'llama', '8723233': 'lyre', '9268440': 'llama', '9315592': 'llama', '9491312': 'llama', '9592360': 'lyre'}, {'4241190': 'lyre', '6217414': 'lyre', '8837446': 'lyre', '9268440': 'lyre', '9316732': 'llama', '9481808': 'lyre', '9521954': 'lyre', '9539416': 'lyre', '9743590': 'lyre'}, {'252542': 'llama', '4499925': 'lyre', '4888735': 'lyre', '8461583': 'lyre', '8753696': 'lyre', '9006590': 'lyre', '9117279': 'lyre', '9157481': 'llama', '9452460': 'llama'}, {'4859957': 'lyre', '6217414': 'lyre', '7358067': 'llama', '8733841': 'lyre', '9157172': 'llama', '9354764': 'lyre', '9491312': 'lyre', '9496510': 'lyre', '9521954': 'llama'}, {'213372': 'lyre', '4805544': 'lyre', '6713449': 'llama', '8305765': 'lyre', '8490754': 'lyre', '8535327': 'lyre', '8955184': 'lyre', '9017322': 'llama', '9268440': 'llama'}, {'4888735': 'lyre', '6368552': 'lyre', '8490754': 'llama', '9103860': 'lyre', '9117279': 'lyre', '9157172': 'lyre', '9268440': 'lyre', '9354764': 'lyre', '9538403': 'llama'}, {'252542': 'lyre', '284741': 'llama', '2016798': 'lyre', '4499925': 'lyre', '8445376': 'lyre', '9117279': 'lyre', '9296239': 'llama', '9592360': 'lyre', '9712938': 'llama'}, {'213372': 'lyre', '4241190': 'lyre', '6217414': 'lyre', '8209014': 'lyre', '8700423': 'lyre', '8721953': 'lyre', '8860164': 'lyre', '9175638': 'lyre', '9268440': 'lyre'}, {'5651833': 'llama', '7451924': 'llama', '7993821': 'llama', '8302862': 'llama', '8473040': 'llama', '8733841': 'llama', '9255119': 'llama', '9452460': 'lyre', '9592360': 'lyre'}]" - ] - }, - { - "cell_type": "code", - "execution_count": 16, - "id": "c7186250", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[{'4859957': 'llama',\n", - " '8011175': 'llama',\n", - " '8721952': 'llama',\n", - " '8723233': 'llama',\n", - " '8955184': 'llama',\n", - " '9012842': 'llama',\n", - " '9316732': 'llama',\n", - " '9452460': 'llama',\n", - " '9539416': 'llama'},\n", - " {'1629': 'llama',\n", - " '4241190': 'llama',\n", - " '6217414': 'llama',\n", - " '8484262': 'llama',\n", - " '9103860': 'llama',\n", - " '9255119': 'llama',\n", - " '9278189': 'llama',\n", - " '9354764': 'llama',\n", - " '9496510': 'llama'},\n", - " {'2158461': 'lyre',\n", - " '8302862': 'lyre',\n", - " '8305765': 'lyre',\n", - " '8461583': 'lyre',\n", - " '8753696': 'lyre',\n", - " '9006590': 'lyre',\n", - " '9285785': 'lyre',\n", - " '9488818': 'lyre',\n", - " '9592360': 'lyre'},\n", - " {'252542': 'lyre',\n", - " '2016798': 'lyre',\n", - " '6368552': 'lyre',\n", - " '8721952': 'lyre',\n", - " '8838915': 'lyre',\n", - " '8860164': 'lyre',\n", - " '9141389': 'lyre',\n", - " '9285785': 'lyre',\n", - " '9354510': 'lyre'},\n", - " {'5328101': 'llama',\n", - " '5651836': 'llama',\n", - " '5780833': 'llama',\n", - " '6713449': 'llama',\n", - " '8804263': 'llama',\n", - " '9103860': 'llama',\n", - " '9149479': 'llama',\n", - " '9488818': 'llama',\n", - " '9539416': 'llama'},\n", - " {'4499925': 'lyre',\n", - " '8827240': 'llama',\n", - " '8955184': 'lyre',\n", - " '9012842': 'llama',\n", - " '9017322': 'llama',\n", - " '9178861': 'lyre',\n", - " '9278189': 'llama',\n", - " '9592328': 'llama',\n", - " '9592360': 'lyre'},\n", - " {'89794': 'lyre',\n", - " '6217414': 'lyre',\n", - " '8535327': 'lyre',\n", - " '8721953': 'lyre',\n", - " '9268440': 'lyre',\n", - " '9278189': 'llama',\n", - " '9354510': 'llama',\n", - " '9491312': 'llama',\n", - " '9712938': 'llama'},\n", - " {'2158461': 'lyre',\n", - " '3947016': 'lyre',\n", - " '4888735': 'lyre',\n", - " '7993821': 'lyre',\n", - " '8473040': 'lyre',\n", - " '8721953': 'lyre',\n", - " '8837446': 'lyre',\n", - " '9006590': 'lyre',\n", - " '9431005': 'lyre'},\n", - " {'56642': 'llama',\n", - " '284741': 'llama',\n", - " '4499925': 'llama',\n", - " '4805544': 'lyre',\n", - " '5328101': 'llama',\n", - " '8305765': 'lyre',\n", - " '8838915': 'lyre',\n", - " '8955184': 'lyre',\n", - " '9354764': 'llama'},\n", - " {'56642': 'llama',\n", - " '4007193': 'lyre',\n", - " '6368552': 'lyre',\n", - " '7179459': 'llama',\n", - " '8209014': 'lyre',\n", - " '9012842': 'llama',\n", - " '9149479': 'llama',\n", - " '9316732': 'llama',\n", - " '9496510': 'llama'},\n", - " {'56642': 'llama',\n", - " '5651836': 'lyre',\n", - " '6217414': 'lyre',\n", - " '8535327': 'llama',\n", - " '8616820': 'llama',\n", - " '8855903': 'llama',\n", - " '9095848': 'llama',\n", - " '9315592': 'llama',\n", - " '9538405': 'llama'},\n", - " {'2158461': 'llama',\n", - " '4007193': 'lyre',\n", - " '7993821': 'llama',\n", - " '8484071': 'lyre',\n", - " '8855903': 'lyre',\n", - " '9103860': 'lyre',\n", - " '9152732': 'lyre',\n", - " '9354764': 'lyre',\n", - " '9424345': 'lyre'},\n", - " {'4888735': 'lyre',\n", - " '6217414': 'lyre',\n", - " '7864555': 'llama',\n", - " '8542976': 'lyre',\n", - " '9269871': 'lyre',\n", - " '9342239': 'llama',\n", - " '9390671': 'llama',\n", - " '9452460': 'llama',\n", - " '9743590': 'llama'},\n", - " {'2016798': 'lyre',\n", - " '8484263': 'llama',\n", - " '8542990': 'llama',\n", - " '8721952': 'llama',\n", - " '8829528': 'llama',\n", - " '9117279': 'lyre',\n", - " '9141389': 'lyre',\n", - " '9149479': 'lyre',\n", - " '9152732': 'lyre'},\n", - " {'195965': 'llama',\n", - " '213372': 'llama',\n", - " '241562': 'llama',\n", - " '8305765': 'llama',\n", - " '8490754': 'lyre',\n", - " '8700423': 'llama',\n", - " '9031130': 'lyre',\n", - " '9157172': 'llama',\n", - " '9175638': 'lyre'},\n", - " {'7993821': 'llama',\n", - " '8700423': 'llama',\n", - " '8827240': 'llama',\n", - " '8846302': 'llama',\n", - " '9152732': 'llama',\n", - " '9255119': 'lyre',\n", - " '9278189': 'llama',\n", - " '9390671': 'lyre',\n", - " '9743590': 'llama'},\n", - " {'213372': 'llama',\n", - " '5780833': 'llama',\n", - " '8753696': 'lyre',\n", - " '8855903': 'llama',\n", - " '9103860': 'llama',\n", - " '9315592': 'lyre',\n", - " '9390671': 'llama',\n", - " '9488818': 'llama',\n", - " '9538403': 'lyre'},\n", - " {'89794': 'llama',\n", - " '213372': 'lyre',\n", - " '9117279': 'llama',\n", - " '9152732': 'llama',\n", - " '9354764': 'lyre',\n", - " '9363637': 'lyre',\n", - " '9424345': 'lyre',\n", - " '9491312': 'lyre',\n", - " '9521954': 'llama'},\n", - " {'8445376': 'llama',\n", - " '8484263': 'lyre',\n", - " '8535327': 'lyre',\n", - " '8760629': 'llama',\n", - " '8855026': 'llama',\n", - " '9095848': 'llama',\n", - " '9255119': 'lyre',\n", - " '9592328': 'llama',\n", - " '9592360': 'llama'},\n", - " {'2016798': 'llama',\n", - " '8461583': 'llama',\n", - " '8721953': 'llama',\n", - " '8837446': 'llama',\n", - " '8843631': 'llama',\n", - " '8855903': 'llama',\n", - " '9117279': 'lyre',\n", - " '9488818': 'llama',\n", - " '9592328': 'llama'},\n", - " {'6217414': 'llama',\n", - " '8209014': 'lyre',\n", - " '8305765': 'llama',\n", - " '8535327': 'lyre',\n", - " '8542976': 'llama',\n", - " '9103860': 'lyre',\n", - " '9316732': 'llama',\n", - " '9452460': 'llama',\n", - " '9488818': 'llama'},\n", - " {'4241190': 'llama',\n", - " '5499742': 'lyre',\n", - " '8461583': 'lyre',\n", - " '8484262': 'llama',\n", - " '8484263': 'lyre',\n", - " '8723233': 'llama',\n", - " '8753696': 'lyre',\n", - " '9431005': 'llama',\n", - " '9488818': 'llama'},\n", - " {'1629': 'llama',\n", - " '213372': 'llama',\n", - " '4805544': 'lyre',\n", - " '6368552': 'lyre',\n", - " '8484263': 'llama',\n", - " '9017322': 'lyre',\n", - " '9152732': 'lyre',\n", - " '9157172': 'lyre',\n", - " '9424345': 'lyre'},\n", - " {'89794': 'llama',\n", - " '195965': 'llama',\n", - " '6368552': 'lyre',\n", - " '8247476': 'llama',\n", - " '9031130': 'lyre',\n", - " '9296239': 'lyre',\n", - " '9342239': 'llama',\n", - " '9496510': 'lyre',\n", - " '9521954': 'llama'},\n", - " {'4007193': 'llama',\n", - " '8445376': 'lyre',\n", - " '8542990': 'llama',\n", - " '8616820': 'llama',\n", - " '8753696': 'lyre',\n", - " '8829528': 'llama',\n", - " '9157481': 'llama',\n", - " '9268440': 'lyre',\n", - " '9491312': 'lyre'},\n", - " {'8542990': 'llama',\n", - " '8700423': 'lyre',\n", - " '8855903': 'lyre',\n", - " '8860164': 'llama',\n", - " '9006073': 'lyre',\n", - " '9103860': 'lyre',\n", - " '9175638': 'lyre',\n", - " '9354510': 'lyre',\n", - " '9452460': 'llama'},\n", - " {'1629': 'lyre',\n", - " '56642': 'lyre',\n", - " '3947016': 'lyre',\n", - " '8837446': 'llama',\n", - " '8838915': 'lyre',\n", - " '9012842': 'lyre',\n", - " '9175638': 'lyre',\n", - " '9268440': 'lyre',\n", - " '9342239': 'lyre'},\n", - " {'195965': 'llama',\n", - " '5328101': 'lyre',\n", - " '5651833': 'llama',\n", - " '7179459': 'llama',\n", - " '8723233': 'lyre',\n", - " '9268440': 'llama',\n", - " '9315592': 'llama',\n", - " '9491312': 'llama',\n", - " '9592360': 'lyre'},\n", - " {'4241190': 'lyre',\n", - " '6217414': 'lyre',\n", - " '8837446': 'lyre',\n", - " '9268440': 'lyre',\n", - " '9316732': 'llama',\n", - " '9481808': 'lyre',\n", - " '9521954': 'lyre',\n", - " '9539416': 'lyre',\n", - " '9743590': 'lyre'},\n", - " {'252542': 'llama',\n", - " '4499925': 'lyre',\n", - " '4888735': 'lyre',\n", - " '8461583': 'lyre',\n", - " '8753696': 'lyre',\n", - " '9006590': 'lyre',\n", - " '9117279': 'lyre',\n", - " '9157481': 'llama',\n", - " '9452460': 'llama'},\n", - " {'4859957': 'lyre',\n", - " '6217414': 'lyre',\n", - " '7358067': 'llama',\n", - " '8733841': 'lyre',\n", - " '9157172': 'llama',\n", - " '9354764': 'lyre',\n", - " '9491312': 'lyre',\n", - " '9496510': 'lyre',\n", - " '9521954': 'llama'},\n", - " {'213372': 'lyre',\n", - " '4805544': 'lyre',\n", - " '6713449': 'llama',\n", - " '8305765': 'lyre',\n", - " '8490754': 'lyre',\n", - " '8535327': 'lyre',\n", - " '8955184': 'lyre',\n", - " '9017322': 'llama',\n", - " '9268440': 'llama'},\n", - " {'4888735': 'lyre',\n", - " '6368552': 'lyre',\n", - " '8490754': 'llama',\n", - " '9103860': 'lyre',\n", - " '9117279': 'lyre',\n", - " '9157172': 'lyre',\n", - " '9268440': 'lyre',\n", - " '9354764': 'lyre',\n", - " '9538403': 'llama'},\n", - " {'252542': 'lyre',\n", - " '284741': 'llama',\n", - " '2016798': 'lyre',\n", - " '4499925': 'lyre',\n", - " '8445376': 'lyre',\n", - " '9117279': 'lyre',\n", - " '9296239': 'llama',\n", - " '9592360': 'lyre',\n", - " '9712938': 'llama'},\n", - " {'213372': 'lyre',\n", - " '4241190': 'lyre',\n", - " '6217414': 'lyre',\n", - " '8209014': 'lyre',\n", - " '8700423': 'lyre',\n", - " '8721953': 'lyre',\n", - " '8860164': 'lyre',\n", - " '9175638': 'lyre',\n", - " '9268440': 'lyre'},\n", - " {'5651833': 'llama',\n", - " '7451924': 'llama',\n", - " '7993821': 'llama',\n", - " '8302862': 'llama',\n", - " '8473040': 'llama',\n", - " '8733841': 'llama',\n", - " '9255119': 'llama',\n", - " '9452460': 'lyre',\n", - " '9592360': 'lyre'}]" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import json\n", - "\n", - "with open('human_evals.txt', 'r') as f:\n", - " content = f.read()\n", - "data = json.loads(content)\n", - "data" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "id": "16bdf4e0", - "metadata": {}, - "outputs": [], - "source": [ - "ids = []\n", - "models = []\n", - "for datapoint in data:\n", - " ids.extend([int(k) for k in datapoint.keys()])\n", - " models.extend(datapoint.values())" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "id": "9aae5477", - "metadata": {}, - "outputs": [], - "source": [ - "from collections import Counter" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "id": "e4454465", - "metadata": {}, - "outputs": [], - "source": [ - "results = pd.DataFrame({\"id\":ids, \"chosen_model\":models})\n", - "results = results.merge(merged, on=\"id\")[[\"id\", \"chosen_model\", \"song\", \"artist\"]]" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "id": "8b9409f7", - "metadata": {}, - "outputs": [], - "source": [ - "vote_results = results.groupby(['artist', 'chosen_model']).size().unstack(fill_value=0).reset_index()\n", - "vote_results[\"num_votes\"] = vote_results[\"llama\"] + vote_results[\"lyre\"]" - ] - }, - { - "cell_type": "code", - "execution_count": 22, - "id": "cdd3127a", - "metadata": {}, - "outputs": [], - "source": [ - "top_results = vote_results[vote_results[\"num_votes\"] >= 12]" - ] - }, - { - "cell_type": "code", - "execution_count": 23, - "id": "5c973a05", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_30/3473688602.py:1: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " top_results[\"win_rate\"] = top_results[\"lyre\"] / top_results[\"num_votes\"]\n" - ] - } - ], - "source": [ - "top_results[\"win_rate\"] = top_results[\"lyre\"] / top_results[\"num_votes\"]" - ] - }, - { - "cell_type": "code", - "execution_count": 24, - "id": "53a8500e", - "metadata": {}, - "outputs": [], - "source": [ - "overall_win_rate = Counter(models)[\"lyre\"] / (Counter(models)[\"lyre\"] + Counter(models)[\"llama\"])" - ] - }, - { - "cell_type": "code", - "execution_count": 26, - "id": "3466e0e1", - "metadata": {}, - "outputs": [ - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAArMAAAIhCAYAAABdSTJTAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/OQEPoAAAACXBIWXMAAA9hAAAPYQGoP6dpAABrCklEQVR4nO3dd3QUVePG8WfTCCVASEIxgNQESCihBEKJGBGkiBRRlKKoNAUVkZpXxQJBXkANEAWlCCKgAUKLgAUUAoQiRREsKC8tQAihl5Bkfn/wY2FJIQkLm8Hv55yck717Z+bu3JnZZ2fvzFoMwzAEAAAAmJCToxsAAAAA5BVhFgAAAKZFmAUAAIBpEWYBAABgWoRZAAAAmBZhFgAAAKZFmAUAAIBpEWYBAABgWoRZAAAAmBZhFqa2aNEi+fv765dffnF0UzLo27evgoKClJqaalP+22+/yd/fX02bNs0wzdatW+Xv76/Zs2dLkoYPH66wsDC7tenQoUPy9/e3/lWrVk0NGjTQM888o/Xr1+d5vsuWLdOsWbPs1s4bzZkzRw8//LACAwPl7++vM2fO3JHlXLNz50699NJLat68uQIDA9W4cWM9+eSTGjt27B1drr3s2LFDL7/8spo2barAwEA1bdpUr7zyinbt2nVXlp/ZNhsWFqbhw4dbHx87dkyTJk3Snj177kgb0tLSFBISkuNtMiIiQv7+/urbt2+ul/XXX39p0qRJOnToUIbn8rL/5nbdxMfHy9/fXytXrsy2nr+/vyZNmmR9nJ+PnUBuEWaBO6Rhw4a6cOGCfv31V5vyzZs3q1ChQkpMTNS+fftsnouPj7dOK0kvvviiJk+ebPe29ejRQwsWLNDcuXM1dOhQ/e9//1OfPn20ZcuWPM1v+fLl1gBuT3v27NF7772nhg0batasWVqwYIEKFy5s9+Vcs3btWnXt2lXnzp3TkCFDNGPGDIWHh6tu3bqKjY29Y8u1lzlz5uipp57SsWPH9Prrr2vmzJkaMmSIjh49qieffFILFixwSLsmT56sF1980fr4+PHjmjx58h0Ls1u2bNHJkyf18MMP37LulStXtHTpUknSunXrdOzYsVwt66+//tLkyZN1+PDhDM/lZf+9U+tmwYIF6tKli13nCeQXLo5uAJBfXbp0Se7u7nme/log3bx5s+rUqWMtj4+PV1hYmOLj4xUfH6/KlStbn9u8ebM8PT3l5+cnSSpfvnyel5+dMmXKWNtUr149VahQQd27d1d0dLQaNGhwR5aZF3/++ack6YknnlCtWrXsMs+LFy+qYMGCmT732WefqWzZspo+fbpcXK4fHtu2bashQ4bYZfl3yrZt2zRmzBg98MADmjx5cob2DxgwQG+//baqV69ut3WZUzVq1Liry1u1apUCAwPl6+t7y7rff/+9Tp48qebNm2vt2rVavHix+vXrd8vprly5IovFkm2dO7X/5sWNxyDgXsOZWdyzpkyZoho1aighISHDcyNGjFDDhg11+fJlSVe/Bu3bt69Wr16tDh06qGbNmtYzKomJiXrzzTcVGhqqwMBAhYWFafLkyRmGD9ysevXqKlasmPVsqySlp6dr27ZtatiwoYKDg22eS0lJ0Y4dOxQcHGx9k8zsa0p/f3+98847iomJUevWrVW7dm21b99ea9asyduKkhQYGChJOnHihE353Llz1a1bN4WEhKhOnTp69NFH9emnn+rKlSvWOj169NDatWt1+PBhmyEMN76uqKgoPfLIIwoMDFSjRo00YsQInTx5Mts29ejRwxogu3TpIn9/f5uvqqOjo9W+fXvVrFlTwcHBeumllzKc6R4+fLiCgoL0+++/67nnnlNQUJCeffbZLJd56tQpeXp62gTBa5ycbA+X6enp+vTTT62vKyQkREOHDtXRo0czvI527dpp165devrpp1W7dm099NBDmjZtmtLT023q/vnnn3ruuedUu3ZtNWrUSG+//bbWrl0rf39/m20lM9OmTZPFYtGoUaMytN/FxUVvvfWWtd6N6yezr8EnTZpk04dSzraFrNw4zCA+Pl6PP/64pKv74bXtZdKkSYqJiZG/v7+2b9+eYR6TJ09WQEDALc+cGoahb7/9Vq1atbplu6Sr25Grq6siIiJUpkwZLVq0SIZh2NS59lV+TEyMxo4dq2bNmqlmzZr6+uuv9corr0iSevbsaX0tixYtkpT5+v3mm2/UpUsX1atXz7otjBgx4pbr5nblZD7Hjx9Xp06d1LJlS+3fv1+SdO7cOb3//vsKCwtTYGCgmjVrptGjR+vChQsZ5p/T49L+/fs1ePBghYSEKDAwUK1bt9bcuXNt6qSnpysqKkqtWrVSrVq1VL9+fT366KP6/PPPrXVOnjypN954Qw888ID12NK1a1dt2LAhj2sJZsWZWdyzunbtqk8++UTz58/XoEGDrOWnTp1SbGysunXrpgIFCljLd+/erX379ql///4qW7asChYsqMTERHXp0kVOTk566aWXVL58eW3fvl0ff/yxDh8+rIiIiCyX7+TkpPr162vjxo1KTU2Vi4uL9uzZo9OnT6tBgwZKS0uzeXPZuXOnLl26ZD2jm521a9fql19+0csvv6xChQrps88+04ABA7Ry5UqVK1cu1+vq2ni/ihUr2pQfOHBA7dq1U9myZeXq6qq9e/fqk08+0d9//2197W+99ZbeeOMNHTx4MMNXqunp6XrxxRe1bds2Pf/886pbt64OHz6sSZMmadeuXVq4cGGWZ7/feustLV++XB9//LEiIiJUqVIllShRQpI0depUTZw4Ue3atdPgwYOVnJysyZMn68knn1R0dLQqVKhgnc+VK1fUv39/de3aVb1791ZaWlqW66FOnTr6+uuv9d577+nRRx9VjRo15OrqmmndUaNGacGCBerevbuaN2+uw4cP66OPPtLmzZu1aNEia1ulqx+IhgwZol69emnAgAH69ttvNWHCBJUsWVIdOnSQdDVIdO/eXYUKFdKoUaNUokQJrVixQu+8806W7b0mLS1N8fHxCgwMVOnSpTOtU6ZMGQUEBGjDhg1KT0/PEM5vJSfbQk4EBAQoIiJCI0aMUP/+/dW8eXNJUunSpVWiRAmNHz9ec+fOVVBQkHWa1NRULViwQC1atFCpUqWynf/PP/+sxMREtWzZ8pZtOXr0qOLi4tSyZUuVKFFCHTp00Mcff6wtW7YoODg4Q/2JEyeqTp06evvtt+Xk5KTAwECdOXNGEydO1JtvvqmAgABJWZ+R3b59uwYNGqQ2bdpowIABKlCggI4cOaJNmzbdct3caX/88Yf69Omj0qVLa/78+SpRooQuXryo7t276+jRo+rXr5/8/f31559/KjIyUn/88YdmzZplc3Y6J8elv/76S127dlWZMmU0bNgw+fj4aP369XrvvfeUnJysAQMGSLr6LcnkyZPVv39/1a9fX6mpqfr777919uxZ6/KGDBmi3377TYMGDVKFChV05swZ/fbbbzp16tQdX1/IZwzAxBYuXGj4+fkZu3btyvT5YcOGGSEhIcbly5etZdOmTTOqVatmHDx40Fr24IMPGtWrVzf+/vtvm+nfeOMNo06dOsbhw4dtyqdPn274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AADg3pKjMLt37175+fnJyclJe/fuzbZutWrVctWAbt26qVu3bpk+N3bs2GynHThwoAYOHJir5QEAAODekaMw26FDB8XFxcnLy0sdOnSQxWKRkcmo3dz+aAIAAABwO3IUZr///nuVKFHC+j8AAACQH+QozPr6+mrDhg2qW7eudTwrAAAA4Gg5vgDsueeek6urq2rVqqWGDRuqYcOGCgoKkpub251sHwAAAJClHIfZH3/8URs3btSWLVu0dOlSRUVFqUCBAqpTp4413NauXfu2f2YWAAAAyKkcJ89SpUqpQ4cO6tChgyQpISFB8fHxio+P18KFCzVp0iS5u7tr+/btd6qtAAAAgI08n0YtU6aM6tatq5SUFKWkpOjUqVNKT7fP71MDAAAAOZGrMHvw4EHr2dj4+HidP39eQUFBatCggbp166aaNWveqXYCAAAAGeQ4zD744IM6d+6c6tWrp/r166tHjx4KCAiQs7PznWwfAAAAkCWnnFZMSUmx/u/s7CwnJyc5OeV4cgAAAMDucnxmNi4uTvv27dPmzZsVHx+vzz77TJcvX1a9evUUHBysBg0aKDAwkIALAACAuyZXY2YrV66sypUr66mnnpIk7du3T5s2bdLmzZsVFRUli8WirVu33pGGAgAAADfL82nUEydO6Pfff9fvv/+uvXv36vz58zZDEQAAAIA7LcdnZpOSkhQfH28dZrB//365uLioVq1aatu2rfUXwQAAAIC7JcdhtkmTJnJxcVFgYKBatmyphg0bqm7dunJ3d7+T7QMAAACylOMw++mnn6pevXoqVKjQnWwPAAAAkGM5DrPNmjW7k+0AAAAAco37aAEAAMC0CLMAAAAwLcIsAAAATOu2wuzly5ft1Q4AAAAg13IdZtPT0zVlyhQ1a9ZMQUFBOnjwoCTpww8/1Ndff233BgIAAABZyXWYjYqK0uLFizVkyBC5urpay/38/BQdHW3XxgEAAADZyXWYXbJkid599121b99eTk7XJ/f399fff/9t18YBAAAA2cl1mD127JjKly+fodwwDKWmptqlUQAAAEBO5DrMVqlSRVu3bs1QvnLlSlWvXt0ujQIAAAByIse/AHbNgAEDNHToUB07dkyGYWj16tX6559/FBMTo6lTp96JNgIAAACZyvWZ2bCwMH3wwQf66aefZLFYFBkZqX379umTTz5RkyZN7kQbAQAAgEzl6sxsamqqPvnkE3Xu3FlffPHFnWoTAAAAkCO5OjPr4uKi6dOnKy0t7U61BwAAAMixXA8zCAkJ0ebNm+9EWwAAAIBcyfUFYKGhoZo4caL+/PNPBQQEqGDBgjbPP/TQQ3ZrHAAAAJCdXIfZUaNGSZJmzpyZ4TmLxaI9e/bcdqMAAACAnMh1mN27d++daAcAAACQa7keM3vw4ME70Q4AAAAg13IdZlu2bKkePXpoyZIlunz58p1oEwAAAJAjuQ6zS5YsUY0aNfT++++rSZMmevPNN7Vr16470TYAAAAgW7kOs35+fhoxYoR++uknRUREKDExUU8//bTatm2rmTNn6uTJk3einQAAAEAGuQ6z17i4uOjhhx/WRx99pNdff10HDhzQ+++/r9DQUA0dOlTHjx+3ZzsBAACADHJ9N4NrfvnlFy1cuFCxsbEqWLCgnnvuOT3++OM6fvy4IiMj9eKLLyo6OtqebQUAAABs5DrMzpw5U4sWLdI///yj0NBQvf/++3rggQfk5HT1JG+5cuX0zjvvqHXr1nZvLAAAAHCjXIfZefPmqXPnzurUqZN8fHys5QkJCYqMjFRERITKlCmj0aNH27WhAAAAwM1yHWZXr16dafnp06cVExOjiIgIubm5qWPHjrfdOAAAACA7eb4ADAAAAHA0wiwAAABMizALAAAA08rxmNkBAwZk+/yZM2duuzEAAABAbuQ4zHp4eNzyeV9f39tuEAAAAJBTOQ6zERERd6QBc+fO1fTp05WYmKiqVatq5MiRql+/fqZ1t27dqvHjx+uff/7RxYsXdd9996lr16569tln70jbAAAAkL/l+RfA7CE2NlYRERF66623VLduXc2fP1+9e/fWihUrdN9992WoX6hQIXXv3l3+/v4qWLCgtm3bprfeeksFCxbUk08+6YBXAAAAAEdy6AVgM2fOVOfOndWlSxdVrlxZ4eHhKl26tObNm5dp/Ro1aqhdu3aqWrWqypYtq8cee0xNmzbV1q1b73LLAQAAkB84LMympKRo9+7datq0qU15kyZNtH379hzN47ffftP27dsVHByc6+VbLLf+g/3lZL3TN45D3+Rf7Dv5F32Tv9E3+Ze91rvDhhkkJycrLS1NXl5eNuXe3t5KTEzMdtrQ0FCdPHlSaWlpGjBggLp06ZLr5Xt5ZX9BG+zP07Owo5uAbNA/+Rd9k3/RN/kb/ZN/2bNvHDpmVpIsN0VvwzAylN1s7ty5unDhgnbu3KkJEybo/vvvV7t27XK13KSkszKM7Os4OzuxI9hRcvJ5paWl22Ve9I392at/6Bv7Y9/Jv+ib/I3jWv51q76xWHJ+4tFhYdbT01POzs46ceKETXlSUpK8vb2znbZcuXKSJH9/f504cUKTJk3KdZg1DN0yzML+WOf5G/2Tf9E3+Rd9k7/RP/mXvfrGYWNm3dzcFBAQoLi4OJvyDRs2KCgoKMfzMQxDV65csXfzAAAAYAIOHWbQq1cvDR06VIGBgQoKCtKCBQuUkJCgrl27SpImTJigY8eOady4cZKuDi8oU6aMKlWqJEnatm2bZsyYoe7duzvsNQAAAMBxHBpm27Rpo+TkZEVFRen48ePy8/PTtGnTrL8klpiYqISEBGv99PR0TZw4UYcOHZKzs7PKly+vwYMHW8MvAAAA/l0cfgFYt27d1K1bt0yfGzt2rM3jHj16qEePHnejWQAAADABh/5oAgAAAHA7CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0HB5m586dq7CwMNWsWVOdOnXS1q1bs6y7evVq9erVS40aNVLdunX15JNPat26dXextQAAAMhPHBpmY2NjFRERof79+ysmJkb16tVT7969deTIkUzrb9myRY0bN9a0adO0aNEiNWzYUP3799dvv/12l1sOAACA/MChYXbmzJnq3LmzunTposqVKys8PFylS5fWvHnzMq0fHh6u3r17q1atWqpQoYJee+013X///frhhx/ucssBAACQ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KSlq2LChoqKiMp126tSpatiwoVJSUnLc5hstWrQoX70RJyUl6c0331Tz5s0VGBioJk2a6Pnnn9f27dvvelvS0tI0depUPfLII6pVq5aCg4P1xBNPaOHChbc135v7O7/1wY2uHaey+hs+fLijm5il3377TX379lVISIhq1qypsLAwvfrqqzp58mSe5hcdHa0nn3zS+njWrFlKTExUTEyMVq1addc+lDqqT273fWHTpk3q0aOHgoODVbt2bbVs2VLDhg1TamqqXdqX1frv0aOHRo8ebZdl5IRDb831b9esWTNFREQoPT1dJ06c0Lp16zR69GitWrVKH3/8sVxcMnbPlStX+IGI25CXdX63FC5cWIUL2/933s3Ax8fnri/Tzc0ty+W6ubmpffv2Wrx4sfr375/h57IXLVqkxx57TG5ubrle7pUrV/LU3jtp4MCBSk1N1dixY1WuXDklJSVp48aNOn369F1vy6RJk/TVV1/pjTfeUGBgoM6fP69ffvnltsNKdv2d36xfv976f2xsrCIjI7Vy5Uprmbu7uyOaZSOz96KkpCT16tVLDz74oKZPny4PDw8dOnRIP/zwgy5dupSn5ZQoUcLm8cGDBxUQEKAKFSpIkv766688zTe3ctsn9nqvvp33hT///FO9e/dWjx499MYbb8jd3V379+/XqlWr7rmTZpyZdaBrB9dSpUopICBA/fr1U1RUlH766SctXrxY0tVPg/PmzVP//v1Vp04dffzxx0pLS9PIkSMVFhamWrVqqVWrVvr888+zXdavv/6qkJAQffzxx5Kks2fP6o033lBISIjq1q2rnj17au/evXf8NTtaTtZ5ZmdQz5w5I39/f8XHx0tSnvrgVm7+Ouna2czJkydb++nNN9+0ORv4008/6amnnlL9+vXVsGFD9e3bVwcOHLitdjjCjcMM7D3fm/+unbm91Rmdxx9/XAcOHNCWLVtsyrdu3ar9+/fr8ccflyQtXLhQrVu3Vs2aNfXII49o7ty51rrXtqXY2Fj16NFDNWvW1NKlSzVixAidPXvW2qZJkybZ/bXn1JkzZ7Rt2za9/vrratSokXx9fVWrVi317dtXzZs3t9abOXOmHn30UdWpU0cPPPCARo0apfPnz1ufv3amc82aNWrVqpVq166tl19+WRcuXNDixYsVFhamBg0a6N1331VaWlqW7VmzZo2efvpptW7dWuXKlVO1atXUpUsX9erVy1qnR48eevfddzV69Gg1aNBAjRs31oIFC3ThwgWNGDFCQUFBatGihX788UfrNDf2d3x8fLZ9cOnSJet8mjdvrgULFthpbeeMj4+P9c/Dw0MWi8X62MXFRW+99ZZCQ0NVu3ZtPfroo1q+fLl12piYmEy/NRg4cKDNjxDdKD09XZMnT1ZoaKgCAwP12GOP6aeffrI+n9V2fLPt27fr3Llzeu+991SjRg2VK1dOISEhCg8P13333SdJ6tSpk2bMmGGd5sUXX1SNGjV07tw5SVeHEfj7++vvv/+WZPstTFhYmFatWqWYmBjr2dCePXtKkho0aHBHz5Bm1yeXL19W/fr1M6yf5ORkvfbaa1n21fz589WsWbMMwbJfv34aNmyYpIzvC/Hx8Xr88cetwyy6du2qw4cPZ9rmuLg4+fj4aOjQofLz81P58uUVGhqq0aNH23wQ37Ztm7p3767atWurQYMGev75560fZFNSUvTee+9Zz7Q/9dRT2rVrl6Sr20Vm63/48OHavHmzZs+ebd2/Dh06ZIdeyBphNp8JCQlRtWrVtHr1amvZpEmT9NBDD2nZsmXq3Lmz0tPTVbp0aX344YdasWKFXnrpJX3wwQeKjY3NdJ7x8fF69tlnNXDgQPXv31+GYahPnz5KTEzUtGnTtGjRIgUEBOiZZ57RqVOn7tIrzT8yW+e3kts+yKuNGzdq3759mj17tiZOnKhvv/1WU6ZMsT5/8eJF61CJWbNmyWKx6KWXXrrnPnXn1fr1661/3377re6///4cf7Xs7++vmjVratGiRTblCxcuVK1ateTn56evvvpKH3zwgQYNGqTY2Fi99tprioyMtH4wumb8+PHq0aOHYmNjFRISopEjR6pIkSLWtjnyVwwLFSqkQoUK6bvvvst22ITFYlF4eLiWLVumsWPHatOmTfrvf/9rU+fSpUuaM2eOPvjgA3322WeKj4/XwIED9eOPP2ratGkaN26cFixYoFWrVmW5HG9vb23atOmWX0svXrxYnp6e+vrrr9W9e3eNGjVKr7zyioKCgrR48WI1bdpUQ4cO1cWLFzNMGxQUlG0fzJw5U4GBgYqJidHTTz+tUaNGad++fdm2525JSUlRQECApk6dquXLl+uJJ57Q0KFDtXPnTknSI488orS0NH3//ffWaU6ePKk1a9aoU6dOmc5z9uzZmjlzpoYNG6alS5eqadOmevHFF7V//36bejdux02bNs0wH29vb6Wmpurbb79VVrewDw4O1ubNmyVJhmFo27ZtKlq0qLZt2ybp6vuVj4+PKlWqlGHa6OhoNWvWTK1bt9b69esVHh5u/RCycuVKa5mj3Lx+ctJXycnJ1pMkknT69GmtX79ejz76aIb5p6am6qWXXlKDBg20dOlSLViwQE8++WSGb46u8fHxUWJiYoYP5Dfas2ePnn32WVWpUkULFizQl19+qQcffND6gXPcuHFatWqVxo4dq8WLF+v+++/XCy+8oFOnTqlMmTKZrv/w8HAFBQXpiSeesO5fZcqUyfN6zQnCbD5UqVIlm09a7dq10+OPP65y5crJ19dXrq6uevnll1WrVi2VK1dO7du3V8eOHW2+8rjmu+++U//+/TVq1Cg9/fTTkq6Oofnjjz8UGRmpmjVrqkKFCho2bJiKFi2a7ZvMvezmdX4ruemD2+Hm5qYxY8aoatWqat68uV5++WXNnj3bGlZbtWqlli1bqkKFCqpevbrGjBmjP/7446599ZbfXTtz4u3trXHjxqlIkSJ65513cjx9586dtWrVKusZyPPnz2vlypXWs7JRUVEaPny4WrZsqXLlyqlly5Z65plnMpzJe+aZZ6x17rvvvgxndhw5vMTFxUVjx45VTEyM9UzPxIkTM3xT8+yzz6pRo0bWs22vvPKKvvnmG5s6V65c0ahRo1SjRg01aNBArVq10rZt2zR69GhVqVJFDz74oBo2bKhNmzZl2Z4RI0bo5MmTatKkiR599FG9+eabNmdYr6lWrZpefPFFVahQQX379pW7u7s8PT31xBNPqEKFCnrppZd06tQp/f777xmmdXNzy7YPQkND1a1bN91///3q3bu3PD09rQHM0UqVKqXnn39e1atXV7ly5dSjRw81bdrUeuxxd3dXu3btbD6ELVu2TKVLl1bDhg0znef06dPVu3dvtW3bVpUqVdKQIUNUrVq1DN823bgdlypVKsN86tSpo379+lnP8r/wwgv67LPPdOLECWud4OBgbd26Venp6fr999/l5OSkxx57zBroNm/erAYNGmTazhIlSsjNzU3u7u7WM6TFihWTJHl5eVnLHOXm9XOrvipevLiaNWumZcuWWeexcuVKFS9eXCEhIRnmf+7cOZ09e1YPPvigypcvr8qV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ixYtVLNmzTv4qh0rJ+vc3d1dderU0bRp0+Tr66vk5GR9+OGHNvPJTR/c7J9//slQltXBOyUlReHh4erfv78OHz6sSZMmqXv37nJyclKxYsVUvHhxLViwQD4+Pjpy5IgmTJiQ63Vyt5w9ezbDh4JixYplOd4rO7169dJTTz2lyZMnW78iW7VqldatW2c945CYmKgBAwaobdu2atq0qfXDibOzc64+tAUHB+v+++/XsGHDdP/999uM5xs4cKDee+89FSlSRKGhoUpJSdGvv/6qM2fO2Fx9fzNfX19duHBBGzdutA4lufGrx7spOTlZr7zyijp37ix/f38VLlxYv/76qz777DM99NBDkq5u76mpqZozZ47CwsK0bds263q2t5dffll169ZVUFCQvL29dejQIU2cOFEVKlTI9KKgvMpPfZAb5cuX1+rVq/Xzzz+rWLFimjlzpk6cOJHhGNK+fXuNGzdOX331lcaNG5ftPJ9//nlNmjRJ5cuXV7Vq1bRo0SLt3btX48ePz1Xb1qxZoxUrVqht27aqUKGCDMPQmjVr9NNPP2nMmDHWesHBwZo9e7aKFStm/aASHBysL774wmZIXE74+vrKYrFo7dq1euCBB1SgQIF8c4vDnPbVo48+qn79+unPP//M9qzswYMH9dVXXyksLEwlS5bUP//8o/3792f5owrz58/Xnj179PDDD6t8+fK6fPmyYmJi9Ndff1mHRvXp00ePPvqoRo0apa5du8rV1VXx8fF65JFHVKJECT311FMaN26c9Vj92Wef6dKlS9YP9Vmtf19fX+3cuVOHDh1SoUKFVLx4ceu3nncCYdaB1q1bp6ZNm8rFxUVFixZVtWrV9J///EcdO3bMttOfeuop7d27V4MGDZLFYlHbtm319NNP29xK5UY+Pj76/PPP1aNHD73++uuaMGGCpk2bpg8//FAjR45UcnKyvL29Vb9+fes4s3tVTtf5mDFjNHLkSHXu3FkVK1bUkCFDbK52zm0f3GjQoEEZym688vhGISEhuv/++9WtWzelpKSobdu2GjhwoKSrX8V+8MEHeu+999SuXTtVrFhR//nPf9SjR4/crpa7YvPmzRk+pHXs2FFjx47N9bzq1Kmj6dOna8qUKZo9e7akq2fvpk+frtq1a0uS/v77b504cUKLFy+2ubuAr6+vfvjhh1wtr3Pnzpo4cWKGYThdunSRu7u7pk+frv/+978qVKiQ/Pz8bjnmr27duuratateffVVnTp1SgMGDLD2691WuHBh1a5d2/otTmpqqkqXLq0uXbqoX79+kqTq1atrxIgR+vTTTzVx4kTVr19fr732mvX2QfbUtGlTLV++XFOnTtXZs2fl4+OjRo0aacCAAXa9D3R+6oPcePHFF3Xo0CE9//zzKliwoJ544gm1aNFCZ8+etalXpEgRtWzZ0nqSIjs9e/bUuXPnNHbsWJ08eVKVK1dWVFSU9V6uOVWlShUVLFhQY8eO1dGjR+Xm5qb7779f7733ns2+f+0DYYMGDaxfVwcHB+vzzz9XcHBwrpZZqlQpDRw4UBMmTNCIESPUoUOHPB1T7oSc9lWjRo1UrFgx/fPPP5nexeCaggUL6u+//9bixYt16tQplSxZUt26dVPXrl0zrV+rVi1t27ZNb731lo4fP65ChQqpatWqmjJlinU9V6xYUTNmzNDEiROtx7NatWqpXbt2kqTXX39dhmFo6NChOn/+vAIDA/XZZ59ZL/zKav0/99xzGj58uNq2batLly7p+++/z9HJnryyGPllIBAAG8OHD9eZM2ey/BUqAMhOr169VLlyZf3nP/9xdFOAO4oxswAA3ENOnTqlFStWaNOmTdZbMgL3MoYZAABwD+nUqZNOnz6t119/3a7jjIH8imEGAAAAMC2GGQAAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAgEz16NFDo0ePdnQzACBb3JoLALLh7++f7fN5/UneWzl27Jj++9//at26dbp06ZIqVKig0aNHKzAwMNvpLl26pGbNmsliseinn36Su7v7LZcVHx+vnj17asuWLSpatKi1/NSpU3JxcVGRIkVuOY8ePXqoWrVqCg8Pv/WLAwA74kcTACAb69evt/4fGxuryMhIrVy50lqWk7CYW6dPn9ZTTz2lhg0b6tNPP1WJEiV08OBBm6CZlVWrVqlq1aoyDEOrV69W+/bts61/5cqVLJ8rXrx4bpsOAHcdwwwAIBs+Pj7WPw8PD1ksFpuyZcuWqUWLFgoMDFSrVq0UExNjM72/v7++/PJLvfDCC6pVq5bCwsL0zTffZLvMTz/9VKVLl1ZERIRq1aqlsmXLKiQkROXLl79le6Ojo9W+fXu1b99e0dHRGZ739/fXvHnz1L9/f9WpU0f/+c9/1LNnT0lSgwYN5O/vr+HDh0vKOMxg7ty5atmypWrWrKnGjRvr5ZdfliQNHz5cmzdv1uzZs+Xv7y9/f38dOnRIp0+f1uDBg9WoUSPVqlVLLVu21MKFC2/5GgAgNzgzCwB59O2332rMmDEaMWKEGjdurLVr12rkyJEqXbq0GjVqZK330Ucf6fXXX1d4eLiWLFmiwYMHy8/PT5UrV850vj/88IOaNm2ql19+WVu2bFGpUqX09NNP64knnsi2PQcOHNCOHTs0efJkGYahMWPG6ODBgypXrpxNvUmTJum1117TyJEj5eTkpIceekgDBw7UypUrVaRIkUzPNv/yyy8aPXq0xo0bp6CgIJ0+fVpbt26VJIWHh2v//v2qWrWqNeCWKFFCo0eP1r59+/Tpp5/K09NTBw4c0KVLl3K1jgHgVgizAJBH06dPV8eOHdWtWzdJUsWKFbVjxw7NmDHDJsw+8sgj6tKliyTp1Vdf1YYNGzRnzhyNGjUq0/kePHhQ8+bNU69evdSvXz/t2rVL7733ntzc3NShQ4cs27Nw4UKFhoaqWLFikqRmzZopOjpagwYNsqnXrl07Pf7449bHhw4dkiR5eXllOZQhISFBBQsWVPPmzVWkSBH5+vqqRo0akiQPDw+5urrK3d1dPj4+1mmOHDmi6tWrq2bNmpKksmXLZtl2AMgrhhkAQB79/fffqlu3rk1Z3bp1tW/fPpuyoKAgm8d16tTJUOdGhmEoICBAr732mmrUqKGuXbvqiSee0Lx587KcJi0tTYsXL7YZI9u+fXvFxMQoLS3Npu6tLiLLTOPGjXXfffepRYsWGjJkiJYuXaqLFy9mO81TTz2l2NhYPfbYYxo3bpx+/vnnXC8XAG6FMAsAt8Fisdg8NgwjQ1lOpruRj49PhiEIlSpV0pEjR7KcZv369Tp27JgGDRqkGjVqqEaNGnrttdd09OhRm4vYJKlQoUK3bN/NihQposWLF2vixIny8fFRZGSkHnvsMZ05cybLaR544AGtWbNGzzzzjI4fP65nn31W77//fq6XDQDZIcwCQB5VqlRJ27Ztsynbvn17hiC6Y8cOm8c7d+5UpUqVspxv3bp19c8//9iU7d+/X76+vllOEx0drbZt2yomJsbm79FHH73lRVeurq6SlOEM7s1cXFzUuHFjDR06VEuXLtXhw4e1adMm6zzS09MzTFOiRAl16tRJ48eP18iRI7VgwYJslwEAucWYWQDIoxdeeEGvvvqqatSooZCQEK1Zs0bffvutZs6caVNv5cqVCgwMVL169bRs2TLt2rUr2x8jeOaZZ/TUU0/pk08+UevWrbVr1y599dVXeueddzKtf/LkSa1Zs0ZRUVHy8/Ozea5jx47q27evTp48qRIlSmQ6va+vrywWi9auXasHHnhABQoUUOHChW3qrFmzRgcPHlSDBg1UtGhR/fjjj0pPT1fFihWt89i5c6cOHTqkQoUKqXjx4po0aZICAgJUtWpVpaSkaO3atVle9AYAecWZWQDIoxYtWmjkyJGaPn262rVrp/nz52vMmDFq2LChTb2BAwcqNjbWOoZ1/PjxqlKlSpbzrVWrliZPnqwVK1aoXbt2ioqK0siRI7O8Z2xMTIwKFiyokJCQDM81bNhQhQsX1pIlS7JcXqlSpTRw4EBNmDBBjRs31rvvvpuhjoeHh7799ls988wzatOmjebPn68JEyaoatWqkqTnnntOzs7Oatu2rUJCQnTkyBG5urpq4sSJat++vbp37y4nJydNnDgxy3YAQF7wC2AAcAf5+/trypQpatGihaObAgD3JM7MAgAAwLQIswAAADAthhkAAADAtDgzCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATIswCwAAANMizAIAAMC0CLMAAAAwLcIsAAAATOv/AHzRWN5voPh1AAAAAElFTkSuQmCC", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "import seaborn as sns\n", - "sns.set_style(\"darkgrid\")\n", - "# Create the bar plot\n", - "plt.figure(figsize=(8, 6)) # Adjust figure size if needed\n", - "ax = sns.barplot(data=top_results, x='artist', y='win_rate', palette='pastel')\n", - "ax.set(xlabel='Top 6 Artists', ylabel='Lyre Win Rate', title='Lyre Win Rate for Song Quality / Artist Likeness')\n", - "plt.axhline(y=0.512, ls=\":\")\n", - "plt.show()\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "809784b9", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.15" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/data_viz_notebooks/TayTayAnalysis.ipynb b/data_viz_notebooks/TayTayAnalysis.ipynb deleted file mode 100644 index 4d0b324..0000000 --- a/data_viz_notebooks/TayTayAnalysis.ipynb +++ /dev/null @@ -1,250 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 11, - "id": "7a9859c8", - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import re\n", - "import requests\n", - "from nltk import ngrams\n", - "import matplotlib.pyplot as plt\n", - "import seaborn as sns" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "9d4e1360", - "metadata": {}, - "outputs": [], - "source": [ - "llama_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/taylor_swift_model_ouputs/llama-2-7b-chat-taylor-test-outputs.json\")\n", - "llama_swift_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/taylor_swift_model_ouputs/llama-2-7b-chat-ft_taylor_swift-taylor-test-outputs.json\")\n", - "lyre_outputs = pd.read_json(\"https://raw.githubusercontent.com/Christianfoley/LLMLyricGen/main/data/taylor_swift_model_ouputs/lyre-chat_taylor_swift-checkpoint-10-taylor-test-outputs.json\")" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "id": "8676cefc", - "metadata": {}, - "outputs": [], - "source": [ - "def clean_text(text):\n", - " text = re.sub(r'\\[.*?\\]', '', text)\n", - " return text.replace('\\n',' ').replace('\\r','').replace(\"\\'\", '').lower().replace(\".\", \"\").replace(\"!\", \"\").replace(\",\",\"\").replace(\"?\",\"\").strip()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "1514486a", - "metadata": {}, - "outputs": [], - "source": [ - "master = \"https://raw.githubusercontent.com/irenetrampoline/taylor-swift-lyrics/master/all_tswift_lyrics.txt\"\n", - "req = requests.get(master)\n", - "all_text = req.text.replace('\\n',' ').replace('\\r','').replace(\"\\'\", '').lower().replace(\".\", \"\").replace(\"!\", \"\").replace(\",\",\"\").replace(\"?\",\"\").strip()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "id": "a158a574", - "metadata": {}, - "outputs": [], - "source": [ - "master = \"https://gist.githubusercontent.com/deekayen/4148741/raw/98d35708fa344717d8eee15d11987de6c8e26d7d/1-1000.txt\"\n", - "req = requests.get(master)\n", - "common_words = req.text.lower().split(\"\\n\")\n", - "common_words.append('')\n", - "common_words.append(' ')\n", - "common_words.extend(['didnt','wont','shouldnt','wouldnt','couldnt','cant','im','youre','hes','shes','thats','its','ive'])" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "id": "513ebf77", - "metadata": {}, - "outputs": [], - "source": [ - "# remove common pairings, aka \"of the\"\n", - "def get_ngrams(text, n):\n", - " all_ngrams = set(ngrams(text, n))\n", - " unique_ngrams = []\n", - " for ngram in all_ngrams:\n", - " num_common = 0\n", - " for i in range(n):\n", - " if ngram[i] not in common_words:\n", - " break\n", - " num_common += 1\n", - " if num_common != n:\n", - " unique_ngrams.append(ngram)\n", - " return unique_ngrams" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "id": "7208ba52", - "metadata": {}, - "outputs": [], - "source": [ - "def get_similar_phrases(model_text, n):\n", - " model_text = clean_text(model_text)\n", - " all_text_list = all_text.split(' ')\n", - " if ' ' in all_text_list:\n", - " all_text_list.remove(' ') \n", - " if '' in all_text_list:\n", - " all_text_list.remove('') \n", - " model_text_list = model_text.split(' ')\n", - " if ' ' in model_text_list:\n", - " model_text_list.remove(' ') \n", - " if '' in model_text_list:\n", - " model_text_list.remove('') \n", - " all_ngrams = get_ngrams(all_text_list, n)\n", - " model_ngrams = get_ngrams(model_text_list, n)\n", - " return set(all_ngrams) & set(model_ngrams)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "id": "6714beec", - "metadata": {}, - "outputs": [], - "source": [ - "def generate_ngrams_plot(n):\n", - " lyre_ngrams = lyre_outputs[\"model_output\"].apply(lambda x: get_similar_phrases(x, n)).apply(len)\n", - " llama_ngrams = llama_outputs[\"model_output\"].apply(lambda x: get_similar_phrases(x, n)).apply(len)\n", - " data_lyre = {\n", - " 'song': range(17),\n", - " 'num': lyre_ngrams,\n", - " 'model':'lyre'\n", - " }\n", - " data_llama = {\n", - " 'song': range(17),\n", - " 'num': llama_ngrams,\n", - " 'model':'llama'\n", - " }\n", - " df_lyre = pd.DataFrame(data_lyre)\n", - " df_llama = pd.DataFrame(data_llama)\n", - " df = pd.concat([df_lyre, df_llama], ignore_index=True)\n", - " \n", - " plt.figure(figsize=(8, 6))\n", - " sns.barplot(x='song', y='num', hue='model', data=df)\n", - " plt.xlabel('Song')\n", - " plt.ylabel('Num' + str(n) + '-grams')\n", - " plt.title('Generated' + str(n) + '-grams with existing Taylor lyrics')\n", - " plt.legend(title='Variables')\n", - " print(\"Lyre: \", sum(lyre_ngrams))\n", - " print(\"Llama \", sum(llama_ngrams))" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "id": "53b5f7b4", - "metadata": {}, - "outputs": [], - "source": [ - "lyre_ngrams_counts = []\n", - "llama_swift_ngrams_counts = []\n", - "llama_ngrams_counts = []\n", - "for n in range(3, 7):\n", - " lyre_ngrams = sum(lyre_outputs[\"model_output\"].apply(lambda x: get_similar_phrases(x, n)).apply(len))\n", - " llama_swift_ngrams = sum(llama_swift_outputs[\"model_output\"].apply(lambda x: get_similar_phrases(x, n)).apply(len))\n", - " llama_ngrams = sum(llama_outputs[\"model_output\"].apply(lambda x: get_similar_phrases(x, n)).apply(len))\n", - " lyre_ngrams_counts.append(lyre_ngrams)\n", - " llama_swift_ngrams_counts.append(llama_swift_ngrams)\n", - " llama_ngrams_counts.append(llama_ngrams)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "id": "7ca4fb1f", - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAf0AAAE6CAYAAAAcIYuEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/OQEPoAAAACXBIWXMAAA9hAAAPYQGoP6dpAABW8ElEQVR4nO3dd1wT5x8H8E/CRgUiQwW3JXEwBAeCCFYtjrp366qtAxX3wlFHHUCtUgUHjmKtu646aG2tWuvW1tY9SkUFURFBEEQgud8f/EiNIBJICJDP+/Xi9SLP3T33veRy39xzzz0nEgRBABEREZV7Yl0HQERERCWDSZ+IiEhPMOkTERHpCSZ9IiIiPcGkT0REpCeY9ImIiPQEkz4REZGeYNInIiLSE0z6REREekKrSf/mzZuYOXMm2rVrBxcXF7i4uMDPzw9z5szBlStXtLnqEvfnn38iLCwMKSkpGq87MDAQbdq0eed8mzZtQt++feHh4QEnJye0bt0aEydOxJ07dzQWS2hoKGQyGTp37lzkOmJjYyGTyfL9O3TokMZi1ZY9e/ZAJpMhNja2UPMfOXIEAwcOhLu7Oxo3bowPP/wQO3bs0HKU5d+5c+cgk8lw7tw5Zdlvv/2GsLCwfOeXyWT44osvSiq8AuUXe2Fs2bIFe/bsyVOe+53Kb5o2DRo06K3f5df/3vaZFEVYWBhkMpnG6tPFujT9nqjDUFsVb9++HQsWLECdOnUwePBgODo6AgD+/fdfHDx4EL1798Yvv/yCmjVraiuEEnXp0iWEh4ejR48esLCw0EkMycnJ8PHxQf369WFhYYEHDx5g7dq16Nu3L3bv3o26desWq/4bN27gm2++gY2NjUbiHTRoUJ4fD7Vq1dJI3aXF2rVrERoaiv79+2PEiBEwMjLCv//+i6ysLF2HVuY1atQIO3bswHvvvacs++2337BlyxaMHTtWh5G9W36xF8a2bdsgkUjQs2dPlXI7Ozvs2LGjxI+nc+fOxYsXL5Svjx8/jtWrVyMoKEjleFO1atUSjau027Fjh87eE60k/T/++APz58+Hr68vVqxYAWNjY+U0T09PDBgwAD/++CNMTEy0sXqNePnyJczMzHQdhlrGjRun8rp58+Zo3LgxOnXqhAMHDmD8+PFFrjs7OxszZsxAv379cOvWLSQlJRU3XFSrVg2NGzcudj2l1dWrVxEaGopJkyZh+PDhynJPT88SWX9GRgZMTEwgEolKZH0lrWLFimV2/9F07MbGxjp5L9780fLvv/8CABwdHeHs7Fzi8RRFSR3rBUHAq1evYGpqqtP9VivN+xERETAwMMAXX3yhkvBf17FjR1SpUkWl7MqVK/D390fz5s3h7OyM7t27IyoqSmWe3KbVs2fPYu7cufDw8ICHhwcCAgLw+PHjPOuJiopCv3790LhxY7i5ueGzzz7D9evXVeYJDAyEm5sbbt26hU8//RRubm745JNPAACnTp3CqFGj4OPjA2dnZ3zwwQeYM2cOnj17plw+LCwMX375JQCgbdu2yiat15vuChNH7va1b98eTk5O6NixI/bt2/f2N7oQJBIJAMDAwKBY9axduxbPnz/HxIkTi1WPNoWHh6NPnz5o3rw53N3d0aNHD3z//fd485lSbdq0wciRI3HixAn06NEDLi4u6NChA3bt2pWnzr/++gv9+/eHs7MzvL29sXTpUmRnZxcqni1btsDY2BiDBg0q8jZlZmYiODgYLVu2hKurKwYMGICrV6+iTZs2CAwMVM6X+704efIkZsyYgRYtWsDV1RWZmZm4d+8eZsyYAT8/P7i6uqJVq1bw9/fHrVu3VNaV2+R84MABLFmyBN7e3nBzc4O/vz+ePn2KFy9e4PPPP1d+52bMmIG0tDSVOn788Uf06dMHTZo0gaurK9q2bYsZM2YUuI3jxo3Dhx9+qFLm7+8PmUyGH3/8UVl27do1yGQyHD16VCXe3O9ZYGAgtmzZAgAqTctvXobZt28fOnbsCFdXV3Tt2hXHjh0rzEeBFy9eICQkBG3atIGTkxNatWqFRYsWIT09XTnPnDlz4OzsjKtXryrLFAoFhgwZAi8vLzx58iTf2AHgwYMHmDhxIry9veHk5AQvLy8MGTIEN27cAJCz3965cwfnz59XblvuZb/8mvdzm6bv3LmDSZMmoUmTJvDy8sKMGTOQmpqqsm0pKSmYOXMmmjdvDjc3N4wYMQIPHjzQSDN0YY6hFy9ehEwmw8GDB/Msv2/fPshkMly+fPmt61AoFFi3bh06dOgAJycneHp6Ytq0aXj06JHKfLmtixcuXED//v3h6uqKmTNnFnpbct+jly9f5pk2ePBglf0493LStm3b0LFjRzg7O2Pv3r3KaW++r48fP8bnn38OX19fODk5wdvbG+PGjcPTp0+V27hq1Sq0b98eLi4uaNq0Kbp06YJvv/220PEDWjjTl8vlOHfuHJycnGBnZ1fo5c6ePYthw4bB1dUV8+bNQ6VKlRAVFYWJEyciIyMjT3PW7Nmz0bp1ayxduhTx8fFYsmQJpk6dik2bNinnWbNmDb7++mv07NkTo0aNQlZWFjZs2IABAwbg+++/V/mVmpWVhVGjRqF///4YPnw45HI5AOD+/ftwc3NDnz59UKlSJcTFxSEyMhIff/wxDhw4ACMjI/Tp0wfPnz/Hd999h/DwcNja2gL471dwYePYs2cPZsyYgbZt2yIwMBCpqakIDw9HZmYmxOLC/z6Ty+WQy+V48OABli5dCmtra/Tq1avQy7/pn3/+werVqxEeHo4KFSoUuZ435TZ9GxgYoGHDhhg2bBjatm1b5Pri4uLQr18/2NvbA8hJ2AsXLsTjx48REBCgMu/NmzcREhKC4cOHw8bGBt9//z1mzZqFWrVqoVmzZgBytvuTTz6Bg4MDgoODYWpqiq1bt+Z7YMrPhQsXUK9ePRw+fBirVq3C/fv3YWtri65du2LcuHFv/UH8uhkzZiAqKgrDhg1DixYt8M8//yAgIEClSfV1M2fOROvWrfHll1/i5cuXMDQ0xJMnT2BlZYXJkyejcuXKeP78Ofbu3Yu+ffti7969eS77hIaGwsPDA0FBQYiLi0NISAgmTZoEQ0NDyGQyLFu2DNevX0doaCgqVKiA2bNnA8i5xDVx4kR06tQJAQEBMDExwcOHD3H27NkCt9HLywuHDx/GkydPYGdnh+zsbJw/fx6mpqY4ffo0OnbsCAA4ffo0DA0N0bx583zrGT16NNLT03H48GGVPhOvH4eOHz+OK1euYNy4cTA3N8f69esREBCAn376CTVq1HhrjC9fvsTAgQPx6NEj5Q+SO3fuYMWKFbh9+zY2btwIkUiEWbNm4fLly5gwYQL27NkDCwsLhIeH4/z581i/fn2Bx8Thw4dDoVBg6tSpsLe3R1JSEi5duqTsJxQeHo5x48ahUqVKmDt3LgAUah8aO3YsOnXqhN69e+P27dtYunQpACAoKAhATjLx9/fH1atXERAQgEaNGuHSpUsYNmzYO+sujMIcQ5s2bYqGDRtiy5YteS75bd68Gc7OznBxcXnrOubNm4cdO3Zg4MCBaN26NeLi4rB8+XKcP38ee/bsQeXKlZXzJiQkYOrUqRg2bBgmTpyo1rF18ODB2L17Nw4ePIg+ffooy//55x+cO3cOc+bMUZn/yJEjuHjxIsaMGQMbGxtYW1vnW+/jx4/Rq1cvZGdnK/evpKQknDx5Es+fP4eNjQ3Wr1+P8PBwjBo1Ck2bNkV2djb+/fffPD/g3knQsISEBEEqlQoTJ07MMy07O1vIyspS/ikUCuW0Dh06CN27dxeysrJUlhk5cqTQsmVLQS6XC4IgCLt37xakUqkwb948lfnWrVsnSKVS4cmTJ4IgCMLDhw+Fhg0bCgsWLFCZ78WLF0LLli2F8ePHK8umT58uSKVSYdeuXQVum0KhELKysoS4uDhBKpUKR44cUU5bv369IJVKhQcPHqgsU9g45HK54O3tLfTo0UPlfYmNjRUaNWokvP/++wXG9jonJydBKpUKUqlU8PPzE/75559CL/smuVwu9OnTR5g0aZKybODAgcKHH35Y5DofP34szJ49W4iKihIuXLgg7N+/X+jbt68glUqFnTt3Frne18nlciErK0sIDw8XmjdvrvKevv/++4Kzs7MQFxenLMvIyBCaN28ufP7558qyCRMmCC4uLkJCQoKyLDs7W+jQoUO+n/WbnJycBDc3N6FZs2bC5s2bhTNnzgjLli0TGjRooPJ+vs2dO3cEqVQqLFmyRKX84MGDglQqFaZPn64sy/1eTJs27Z31ZmdnC5mZmYKfn5+wePFiZfnZs2cFqVQqjBw5UmX+RYsWCVKpNM8+PHr0aKF58+bK1xs2bBCkUqmQkpLyzhhed+/ePUEqlQp79+4VBEEQLl68KEilUuHLL78U2rRpo5xv6NChQr9+/fLEe/bsWWXZ/PnzBalUmu96pFKp4OXlJaSmpirLEhIShPr16wsREREFxhgRESHUr19fuHz5skr5Tz/9JEilUuH48ePKspiYGMHd3V0YPXq0cPr0aaF+/fpCaGioynJvxv7s2TNBKpUKGzduLDCODz/8UBg4cGCe8gcPHghSqVTYvXu3smzFihWCVCoV1q1bpzLvvHnzBGdnZ+V34vjx44JUKhW2bt2aZ5ulUqmwYsWKAmN6Xe5++Ob7lKugY2justevX1eW/f333yr7xuvbleuff/7JNyfkLrts2TJl2cCBAwWpVCqcPn26UNvz5rpy6+jWrZtK2dy5cwV3d3fhxYsXyjKpVCo0adJESE5OzlPvm+/rjBkzhEaNGhV4rB45cmSe9RZFid6y17NnTzRq1Ej598033wAA7t27h3///RddunQBkHP9OPfPx8cHCQkJuHv3rkpdb/Zmz+1h+fDhQwDAyZMnkZ2djW7duqnUZ2JigmbNmuH8+fN54mvfvn2essTERMyZMwe+vr5o2LAhGjVqhPfffx8AEB0d/c5tLmwcd+/exZMnT9C5c2eVa7AODg5wc3N753pet337duzYsQNLlixBhQoVMHjw4CL34I+MjMS9e/fUagJ7Fzs7OyxYsAAdO3ZUNlFt3rwZDRs2xFdffVXo5vM3nTlzBp988gmaNGmCBg0aoFGjRlixYgWSk5ORmJioMm+DBg2ULQIAYGJigtq1ayv3HyCnCdbT01Ol46KBgQE6depUqHgEQUBaWhrmzp2LAQMGoEWLFpg4cSIGDhyIgwcP4t69ewByzrRe3zdyW5ly943cM91c7du3h6Fh/o10fn5+ecqys7OxZs0adOrUCU5OTmjYsCGcnJwQExOT7z6cu3/nqlevHgCgdevWecqTk5OVTfy513AnTJiAqKiofC+35admzZpwcHDAmTNnAOSc0UulUnTt2hWxsbG4f/8+MjMz8ccff8DLy6tQdb6Nh4cHKlasqHyde/YVFxdX4HLHjh2Do6MjGjRooPJZeXt7QyQSqRxPatWqhQULFuDIkSMYOXIkmjZt+s6OhVZWVqhZsyY2bNiAyMhIXL9+HQqFoljbmiu/Y+WrV6+U34m37WdvXnIpqsIeQzt37gxra2vlJRog5yy/cuXKBX7nci+R9OjRQ6XcxcUF9erVU+5XuSwtLYvVr2bw4MG4ceMG/vjjDwA5l31++OEH9OjRI09LaIsWLWBpafnOOk+cOAEPDw/ldy0/zs7OuHnzJubNm4fff//9ra1976Lx5n2JRAJTU1OVg2eupUuX4uXLl0hISMCoUaOU5bnXLEJCQhASEpJvvW92HLOyslJ5ndvMlZGRoVJn7969863vzSYdMzMzlYMBkHMw/vTTT/HkyROMHj0aUqkUZmZmEAQBffv2xatXr/Kt+3WFjSN3+/LrGW9jY/POg9LrGjVqBABo3Lgx2rRpAz8/PyxbtgyrV68udB1Azg+oFStWYPLkyTAyMlI2M2ZnZ0OhUCAlJQXGxsYwNTVVq978GBkZoWPHjli6dCnu3btX4M6fn8uXL+Ozzz5D8+bNsWDBAlStWhVGRkY4cuQI1qxZo9wvcr25/wA5+9Drn2lycvJbP4/CsLKyQkJCAry9vVXKfXx88O233+LatWuoVasWZs6cqbzWB+R0wPzuu++QnJyc7/oMDQ3zjR+A8tLS64KDg7FlyxYMHz4czZo1g6WlJUQiEWbPnp3vPvzmQcrIyKjA8levXqFChQpo1qwZVq5cie+++w7Tp09HZmYmHB0d4e/v/85bPD09PfH7778DyEn6LVu2hEwmg42NDU6fPo1atWohIyOj2Em/MJ97fhITE3Hv3j3ld+tNbx6fWrduDRsbGzx9+hSffPLJO/vUiEQibNy4EStXrsT69esRHBwMKysrdOnSBRMmTMhzbFLHu46VycnJ+e5TmrhLR51jqLGxMfr164fIyEhMmzYN2dnZ+PHHHzF06NACL2Pkfk/yu3RiZ2eXJxfl9x1RR9u2beHg4ICtW7eiSZMm2LNnD16+fImPP/44z7yFXVdSUlKePm5vGjlyJMzNzbF//35s374dBgYGaNq0KaZMmaJWp0mNJ30DAwO0aNECp06dUl6jy5V77frNjjW5nc1GjhyJDz74IN9669Spo1YcuXWuWLFC5YzubfLr4Xz79m3cvHkTwcHBKr8ic8/QNBlH7ny5PxJel19ZYVWsWBF169ZFTEyM2ss+ePAAGRkZWLRoERYtWpRnerNmzTB48GDMmjWryPHlpyi9zQ8dOgRDQ0NERESo3BVy5MiRIsdhZWVVrM9DJpMhISEhT7nw/46FuT/4AgICMGDAAOX03LOF3IPw06dPVQ4I2dnZygPdm/J77/bv34/u3btj0qRJKuVJSUkav720Xbt2aNeuHTIzM/HXX38hIiICkydPfmeLlaenJ3bt2oXLly/j8uXLypOCFi1a4PTp03j48CHMzc3h6uqq0XgLSyKRwMTEBIsXL37r9NfNnTsXaWlpcHR0xKJFi9C0adN3nvE5ODgo67979y5+/PFHZZ8ebY4vYGVlpdynXk/8+e276lL3GPrRRx9h3bp12L17N169egW5XI7+/fu/M34AePLkSZ7b4J48eZLnsynu3SxisRgDBgxAaGgopk+fjq1bt8LT0zPfW6ILuy6JRPLOljFDQ0MMHToUQ4cORUpKCk6fPo3Q0FAMGzYMx48fL/QdCFq5ZW/EiBE4ceIE5s6dixUrVijPCN6mbt26qF27Nm7evJnnwFRU3t7eMDQ0xP379/Ntti+M3A/szV+Z27dvzzNv7jxvnjEUNo46derA1tYWBw8exNChQ5XrjouLw6VLl9TqFPm6Z8+e4fbt23B3d1d72QYNGqh0jMy1ePFipKamIigoSGP3mmZlZSEqKgoSiaRI9+qLRCIYGBiotOBkZGRg//79RY7Jw8MDR48exdOnT5VnPXK5PM8dJW/j5+eHkydP4sSJE8pLV0DOveRisVj567x69eqoXr16nuVzOxRGRUWpnGEePnxYrUsgIpEoz3fw+PHjePz4sdbGRTA2Nkbz5s1hYWGBkydP4vr16+9M+iKRCMuXL4dIJFJuu6enJ5YsWYK4uDg0a9bsnceS189iNdEClat169aIiIiAlZVVgR3+AOD777/H/v37sXjxYjRv3hw9evTAjBkzsGrVqkKvr06dOhg9ejR+/vlnlbt8jI2N87RaFVfz5s2xfv16REVFqZytFnY/L4g6x1Ag58y8ffv22Lp1K7KysvD++++/86StRYsWAHJ+3L7e2e/y5cuIjo6Gv79/cTYhX3369EF4eDimTJmCu3fvYsqUKcWqz8fHB/v378e///5bqPFULCws0KFDBzx+/BiLFy9GXFxcocd80ErSb9KkCebMmYOFCxeiZ8+e6Nu3L9577z2IxWIkJCTg559/BgCVJqv58+dj+PDh+Oyzz9CjRw9UqVIFz58/R3R0NK5du4YVK1aoFUP16tUxbtw4fP3113jw4AF8fHxgYWGBp0+f4sqVKzAzM8tzX/ub6tati5o1a2Lp0qUQBAGWlpY4duwYTp06lWdeqVQKAPj222/Ro0cPGBoaok6dOoWOQywWY/z48Zg9ezbGjBmDvn37IiUlBeHh4YVqZktNTcXQoUPRuXNn1K5dGyYmJoiJicGmTZuQmZmJMWPGqMw/aNAgnD9/Ps9tW6+zsLCAh4dHvuVyuTzPtLCwMISHh2PTpk35LpcrKCgI2dnZcHd3h42NDeLj47F582bcuHEDQUFBKk2h586dw+DBgxEQEFDgdVFfX19ERkZi8uTJ6NevH5KTk7Fhw4ZC9W5+m1GjRuHo0aMYMmQIxowZA1NTU2zZsiXf23Xy07NnT+zYsQPz589HUlIS3nvvPZw+fRpbt27Fxx9/DAcHhwKXd3R0ROfOnREZGalsQbtz5w4iIyNRqVKlQp9FtG7dWtlLXyaT4dq1a9iwYYPGBwdZvnw5Hj16BE9PT1StWhUpKSnYtGkTjIyM3trjPpe1tTUcHR1x8uRJeHh4KM9avLy8kJycjOTk5Hfe+gf89z1ct24dfHx8IBaLIZPJirUfAMCQIUPw888/Y+DAgfjkk08gk8mgUCgQHx+PkydP4tNPP4Wrqytu3bqFhQsXokePHso7ZhYtWoRx48Zh48aNyluB33Tz5k0sWLAAHTp0QK1atWBkZISzZ8/i1q1bGDFihMr2HTp0CFFRUahevTpMTEyKPWJcq1at4O7ujpCQELx48QJOTk64dOkSfvjhBwDFOzNW5xiaa8iQIcqe8bl3GLxrHf369cPmzZshFovh4+Oj7L1frVq1t77nxWFhYYFu3bph27ZtcHBwKNSIqQUZP348Tpw4gYEDB2LkyJGQSqVITU3F77//jk8++QT16tWDv78/HB0d4eTkhMqVKyMuLg7ffvstHBwc1PrxrrUR+T766CO4ubnh22+/xcaNG/HkyROIRCJUrVoVbm5u2Lhxo0pnihYtWuD777/HmjVrsHjxYqSkpMDKygr16tXL08GksEaOHIl69eph06ZNOHToEDIzM2FrawsnJyd89NFH71zeyMgIa9aswaJFizBnzhwYGhrC09MTGzduzNOpycPDAyNHjsTevXvx/fffQ6FQKJNfYePI3dFzbyNycHDAyJEjceHChXw7Hr7OxMQE9evXx86dOxEfH4/MzEzY2NigefPmCAsLy/MrMC0trdjXtt6Unp4OkUj0zh8pjo6O2LFjBw4ePIgXL16gQoUKcHZ2xoYNG/Jc/869B/pdsXp6emLx4sVYt24d/P39UaVKFfTt2xeVK1cu8uUHqVSKyMhIhISEYPr06bC0tETXrl3Rvn17fP755+9c3sjICN988w2WLVuGiIgIPH/+HA4ODpg8eTKGDh1aqBiCgoJga2uLXbt2YePGjWjQoAG+/vprDBs2rNBN87NmzYKhoSHWrl2L9PR0NGzYEGFhYVi+fHmhli8sV1dXXL16FV999RWePXsGCwsLODk5YePGjcoROQvi5eWF27dvq1y3t7e3R+3atRETE1OozledO3fGn3/+ia1bt2LlypUQBAG//vprvi0p6jA3N8eWLVuwdu1a7NixA7GxsTA1NUW1atXg5eUFBwcHpKenY8KECahevbryljogp+PlgAED8NVXX8Hd3T3fW89sbW1Rs2ZNbN26VXlveY0aNTB9+nSVcR7Gjh2LhIQEzJ49G2lpaXBwcFCOW1BUYrEYa9asQXBwMNatW4esrCy4u7tjyZIl6Nu3b7EuAalzDM3l4uICBwcHmJqaFrrD3bx581CjRg3s2rULW7duRcWKFdGqVStMnjw5T/O+pnTq1Anbtm1D//791brtLz9VqlTBrl27sGLFCqxbtw7JycmQSCRo0qSJ8vKFh4cHDh8+jO+//x4vXryAra0tvLy8MHr06He2gKkodv9/KnNSU1OFhg0bCps3b9Zovb169RLGjh2r0TpDQkIEHx8fISMjQ6P1lmV//PGHIJVKhf379+s6FCrH9u/fL0ilUuGPP/4o0fXeuHFDkEqlGj8+aVpQUJDg4uIiPHv2TNehqEVrZ/pUel28eBFVqlRRGVyiuF68eKEc8EaTzp07h9GjR5fqIZu16dSpU7h06RKcnJxgYmKCW7duYe3atahdu3a+t+cRFcXBgwfx+PFjSKVSiMVi/PXXX9iwYQOaNWtWpP5ARXH//n3ExcUhNDQUtra2eQZkKy3++usvxMTEYOvWrejXr5/WWhK0RSQIb4xRSkSlxt9//43g4GBER0cjLS0NEokE3t7emDRpUpE7dxK96dixYwgLC8P9+/fx8uVL2Nraol27dsW+XVAdgYGB+OGHH1CvXj3Mnz8fTZo0KZH1qksmk8HMzAw+Pj4ICgrS6CilJYFJn4iISE+U6Ih8REREpDtM+kRERHqCSZ+IiEhPMOkTERHpCSZ9IiIiPcH79F+TmJgK3stARKSfRCLA2rqSrsPQKib91wgCmPSJiKjcYvM+ERGRnmDSJyIi0hNM+kRERHqC1/SJSC8JggCFQg6FQqHrUKgEGRgYFvtRuGUZkz4R6Z3s7Cw8f/4MWVkZug6FSpwIEoktTEzMdB2ITjDpE5FeEQQBiYmPIBaLYWlpAwMDQ4hEIl2HRSVAEAS8ePEcSUkJsLOrrpdn/Ez6RKRXsrOzIAgKWFrawtjYVNfhUAmrWNESz569hFyeDbHYWNfhlDgmfTWJxSKIxdo9K1AoBCgU2h8woCS2BSi57SFSh0ikf2d5BL1v1WHSV4NYLIJEUqFEkn5SUppWE2XOtpiXSPOWQqFAUlI6Ez8RkY4x6ash98z4XHQKUl/KtbKOSmYG8KhnAbFYpPWkLxaL8eujM0jOTNHaeqyMLdC2qqfWt4eIiN6NSb8IUl/KkZyereswNCI5MwVPXyXpOgwi0rE//7yIceP88eOPx1CpUuHGn+/duwv69v0Ifft+rOXoSFN4UYuIqAxYtGgevL2bYsmSxXmmffVVMLy9m2LRonklHxiVKUz6RERlhJ1dFfz668949eq/8QVevXqFI0cOo0qVqjqMjMoKNu8TEZURMll9PHwYh99+OwY/v44AgN9+O4YqVarA3t5BOV9mZiZWrVqOI0d+Rnp6GmSyBhg3bhIaNGiknOfMmZNYvnwZnjx5jEaNnNCxY+c867ty5W+sWROOGzeuw8rKCj4+rTFyZADMzPRzYJvygGf6RERlSKdOXXDo0AHl60OH9uPDD7uqzLNq1QocP34Us2bNw4YNm1G9eg1MmjQWKSnPAQCPHz/CrFnT4OnZEhs3bkGXLt2xZk24Sh3R0f9g0qSx8PV9H99+uw3z5y/G5ct/ITT0S+1vJGkNkz4RURnSvv2HuHLlL8THP8SjR/G4cuVv+Pl1Uk5/+fIl9u3bhdGjx8PTsyXq1KmL6dNnw8TEBAcP/gAA2LdvN+ztHTBu3CTUrFkbfn4d85zpb926CR980B59+36MGjVqwtnZFePHT8VPPx3Cq1evSnSbSXPYvE9EVIZYWVnB07MlfvzxIARBgJdXS1hZWSmnx8XFIjs7Gy4ursoyQ0NDNGjQCDExdwEAMTF30bChk8pANU5OzirruXXrJuLiHuCXX35SluU8pEiB+PiHqF27jpa2kLSJSZ+IqIz58MNuymb2SZOmqUwThNzxMN4cREx4Lcm/e8wMQVCgW7ee6N27f55p7DRYdum0ef/ChQvw9/eHt7c3ZDIZjhw5ojI9MDAQMplM5a9v374q82RmZmLBggXw8PBA48aN4e/vj0ePHpXkZhARlSgPD09kZWUhKysLzZt7qkyrXr0GjIyMcPnyX8qy7Oxs3Lx5A7Vq5Zyd165dF9evX1VZ7to11ddSaX3cvfsvqlevkefPyMhIOxtGWqfTpJ+eng6ZTIY5c+a8dZ5WrVrh5MmTyr+1a9eqTF+0aBF++eUXhIaGYuvWrUhPT8fIkSMhl2tnxDwiIl0zMDDAli3fY8uW72FgYKAyzczMDN2798aqVctx9uxp3L37L0JCFiIjIwOdO3cDAHTr1gtxcbEIC1uG+/dj8PPPP+HHHw+o1DNgwBBcvXoZS5eG4M6dW3jw4D5OnvyNHfnKOJ027/v6+sLX17fAeYyNjWFra5vvtNTUVOzevRtffvklvLy8AABLlixB69atcfr0abRq1UqteErbcxhKWzzFVd62h8qm8rIfVqhQ8a3T/P0DIAgKLFw45/8nVw2wbFkYLCwsAABVq1bFwoVfIixsGfbu3YUGDRphxIgxCAr6QlnHe+85Ijx8LdauXYXRo4cDEGBvXx1t236g7U0rESJR3n2hvOwbBREJ/10A0imZTIaVK1eiXbt2yrLAwEAcOXIERkZGsLCwQLNmzTBx4kRYW1sDAM6cOYNPPvkE58+fh6WlpXK5rl27ol27dhg3bpxWYj1yNUlrw/BamRuinZNEK3XnZ/f9w1odhtfGRIJeNdtrrX4idWVkZCA6+l/Y2FSFsbGJrsOhEpaZ+QpPnz5CvXp1YWqqf49WLtUd+Xx8fNChQwfY29sjNjYWy5cvx5AhQ7Bnzx4YGxvj6dOnMDIyUkn4AGBjY4OnT5+qvb7ExFQU9BPIwEAMiaSC2vUWRVJSGuRyhdbqL8ltAbS/PUSFlZWVCYVCAblcQHY290l9I5cL/3/yZxqMjLJUpolEgLV14Z47UFaV6qTfqdN/955KpVI4OTmhTZs2OH78OPz8/N66XFEbLwQBBSb9klaaYtGE8rY9VDZxPySg9B3vS0qZGpzHzs4O9vb2iImJAZBzRp+VlYXnz5+rzJeYmAgbGxsdREhERFR6lamkn5SUhPj4eNjZ2QEAnJycYGRkhFOnTinnefLkCe7cuQM3NzddhUlERFQq6bR5Py0tDffv31e+jo2NxY0bN2BpaQlLS0uEh4fDz88Ptra2iIuLQ2hoKCQSibKzX6VKldCrVy+EhIRAIpHA0tISISEhkEqlyt78RERElEOnSf/q1asYPHiw8nVQUBAAoEePHpg3bx5u376Nffv2ITU1Fba2tvDw8EBoaCgqVvzvVpWZM2fC0NAQEyZMQEZGBjw9PREcHJzn3lUiIiJ9p9Ok7+HhgVu3br11+oYNG95Zh4mJCT7//HN8/vnnmgyNiIio3ClT1/SJiIio6Er1LXtERCVJLBZBLC65YdkUCgEKhR7eN0Y6w6RPRISchC+RVCjxpJ+UlFboxB8QMAKOjjKMHz9Zy5FRecWkT0SE/87yz0WnIPWl9h/YVcnMAB71LCAWi3i2TyWGSZ+I6DWpL+Vae7aGLmVlZfGRuMSkT0RU1kRGrsOxY0ewadMOlfJPPx0ILy9vDBvmj0WL5uHFi1Q0bOiEXbt2wMjICLt2HUBCwhOEhYXi/PmzEIvFcHFxxfjxU1Ctmr2OtoZKEnvvExGVMR9+2BUxMXdx48Y1Zdk//9zBnTu30LFjZ2XZxYsXEBNzF6GhK/Hll6HIyMjA2LH+MDMzw8qV67Bq1XqYmZlj8uSxyMrKym9VVM4w6RMRlTF2dlXQvHkLHDp0QFkWFbUfjRu7w8GhurLMzMwMgYGfo27deqhb9z0cOXIYYrEIgYGfo16991C7dh3MnDkXjx8/wqVLf+hiU6iEsXmfiKgM6tKlB4KCvsDYsRNhYGCAn3/+CQEBE1TmqVu3nsp1/Fu3biIuLhZ+fj4q82VmZiIuLrYkwiYdY9InIiqDWrZsBWNjY5w4cQzGxsbIyspE69ZtVeYxMzNTeS0ICkil9TF37sI89VlZSbQaL5UOTPpERGWQoaEhOnT4EFFRB2BkZIy2bf1gampa4DJSaX38+usvkEgkqFChYoHzUvnEpE9E9JpKZiXzsC5NrKdLl+4YOLAPAGDVqnc/q8TPryO2bv0OgYGTMWyYP2xt7fD48SP89tsxfPzxINjZVSl2TFS6MekTEeG/IXE96lmU+DqLqkaNmnBycsHz58/RqJHTO+c3NTXFypVrsXp1GGbNmor09HTY2NiiSZPmqFChQpHjoLKDSZ+ICP8NiVuax94PD1+r8loQBDx7lohu3XrmmXfWrHn51mFtbYPZs+erFSeVH0z6RET/V5YegJOU9Aw//RSFp08T0KlTV12HQ2UEkz4RURnUpYsfrKysMHXqLFhYlNwlCSrbmPSJiMqgkycv6joEKoM4Ih8REZGeYNInIiLSE0z6REREeoJJn4iISE8w6RMREekJ9t4nIvo/sVhUqgfnISounSb9CxcuYMOGDbh69SoSEhKwcuVKtGvXDgCQlZWFr7/+GidOnMCDBw9QsWJFeHl5YfLkyahS5b/xoQcNGoTz58+r1NupUyeEhoaW6LYQUdkmFotQWWIOkbjkGkAFhQLPktILnfgDAkbA0VGG8eMno3fvLujb9yP07fuxlqOk8kSnST89PR0ymQw9e/bE2LFjVaZlZGTg+vXrGDVqFOrXr4+UlBQsXrwYo0aNwp49e1Tm7du3L8aNG6d8/a4nTRERvUksFkEkFiPt78NQpCVpf30VJKjg2h5isYhn+1RidJr0fX194evrm++0SpUqITIyUqVs9uzZ6NOnDx4+fAh7e3tluampKWxtbbUaKxHpB0VaEuQpCboOg0grytQ1/RcvXkAkEuUZcvLAgQPYv38/bGxs4OPjgzFjxqBiRfWfFS0quUt5hVLa4imu8rY9VDaV1/1w+/bNiIo6gIcP42BhYQkvr1YYPXoczM3NAQBRUQewYsVSfP75AoSHh+LJk8fw9GyJWbPm4/jxX7FhQwRevHiB9u07Yty4yTAwyHn07+HDUdi5cxvu378HMzMzuLs3xfjxkyGRVNbl5habSJR3Xyiv+8brykzSf/XqFb766it07txZJaF36dIF1atXh42NDe7cuYOlS5fi5s2beVoJCsPaupImQy4WiaR8PeayvG0PlV0ZGRl49kwMAwMRDA3/u35vYKCbm5nUWa9IJIJYDGXcYvF/22BoaIDJk6ehWjV7PHwYhyVLgrFmTRimTZuhnDcjIwO7d+/AwoXBSE9PQ2DgVMyePRUVK1ZCaGgY4uJiMWPGVDRu7IYPPmgPAFAosjFy5GjUqlULSUnP8PXXS7F48XyEhoZp+J0oGQqFCGKxGBJJBb28FFwmkn5WVhYmTpwIQRAwb948lWl9+/ZV/i+VSlGrVi306tUL165dQ6NGjdRaT2JiKoQCLq0ZGIhLLHklJaVBLldorf6S3BZA+9tDVFhZWZlQKBSQywVkZ+t+n5TLFYWOQxAEKBRQzq9Q/LcNvXt/pJzPzq4aPvvMH0uXBmHSpOmvzZuNyZMD4eBQHQDQunUbHD4chf37f4a5uTlq1KgNN7emuHjxAt5//wMAQMeO/z3Br0oVe4wfPwXDhw9BSsoLZStCWSKXC1AoFEhKSoORUZbKNJGodJ38aUOpT/pZWVmYMGECYmNj8e23376z2b5Ro0YwMjLCvXv31E76goACk35JK02xaEJ52x4qm8rrfvjnnxexadM3iIm5i7S0NMjlcmRmvsLLly9hZmYGIKf/U27CB4DKla1Rtaq9SvKuXLkykpL+68h4+/ZNfPPNWty5cxspKSkQhJwfGY8fP0KdOnVLaOs0r7Qd70tKqU76uQn/3r172LRpEyQSyTuXuXPnDrKystixj4j0xqNH8ZgyZTy6d++JYcNGwcLCApcv/4Xg4AXIzs5WzmdomPeQ/2aZSCRSJvaXL19i0qQANGvWAnPmLICVlQSPHz/CpEkByM7OylMXlX46TfppaWm4f/++8nVsbCxu3LgBS0tL2NnZYdy4cbh+/ToiIiIgl8uRkJDTo9bS0hLGxsa4f/8+9u/fD19fX0gkEkRHRyM4OBgNGzaEu7u7rjaLiKhE3bx5HXJ5NgICJkL8/3EGjh79pdj13rsXg+TkZPj7B6BKlarKdVHZpdOkf/XqVQwePFj5OigoCADQo0cPBAQE4OjRowCAbt26qSy3adMmeHh4wMjICGfPnsV3332HtLQ0VKtWDb6+vggICFD2PCUiUoe4wrtbFEvbehwcqkMul2PXrh1o2bIVrlz5Gz/8sOfdC75DlSpVYWRkhN27d6Bbt164ezcaGzeu10DEpCs6TfoeHh64devWW6cXNA0AqlWrhs2bN2s6LCLSQwqFAEGhQAXX9iW2TkGh0MjAPI6OMowdOxFbtnyLiIhwuLq6Y+TIMVi4cG6x6pVIJJg5cy7Wrl2FXbt2QCqtjzFjJiAwcFKxYybdEAmCPnZlyN/TpwX33jc0zOnxfuRqEpLTs98+YzFYmRuinZMESUlpWu1ZnLstu+8fxtNX2ht9zMZEgl4122t9e4gKKysrE4mJ8bC2rgYjI2OVaRx7v/wr6PMXiQAbG/beJyLSC0zCVN7x0bpERER6gkmfiIhIT6id9E+cOIGLFy8qX2/ZsgXdunXD5MmT8fz5c40GR0RERJqjdtJfsmQJ0tLSAOT0rg8ODoavry8ePHiA4OBgjQdIREREmqF2R77Y2FjUq1cPAPDzzz/j/fffx6RJk3Dt2jWMGDFC4wESERGRZqh9pm9kZISMjAwAwOnTp9GyZUsAOaPkvXjxQrPRERERkcaofabv7u6OoKAguLu748qVK/j6668BADExMahataqm4yMiIiINUftMf86cOTA0NMThw4cxd+5cVKlSBUBOB79WrVppPEAiopKS+3z6kvoryYGAiIAinOnb29sjIiIiT/nMmTM1EhARkS6IxSJIJObKB9aUhJznuqcXekCggIARcHSUYfz4yejduwv69v0Ifft+rOUoS4fXtx0AMjIysGDB57hw4TzS09Pw44/HUKlS+R5NTxOKPCJfYmIiEhMToVCoDq1av379YgdFRFTScobgFePXR2eQnJmi9fVZGVugbVVPiMUijgJYCIsXL1F5DPCPPx7E33//hTVrNsDS0gqpqSno2PF9REZugaOjTIeRlm5qJ/2rV68iMDAQ0dHRyB22P+f5ywJEIhFu3Lih8SCJiEpKcmaKVp9HQUVjYWGp8jouLha1a9dB3brvAQDi4x/qIqwyR+2kP2PGDNSuXRuLFi2CtbU1RCJekyIi0rXt2zcjKuoAHj6Mg4WFJby8WmH06HEwNzcHAERFHcCKFUvx+ecLEB4eiidPHsPTsyVmzZqP48d/xYYNEXjx4gXat++IceMmKx9PfvhwFHbu3Ib79+/BzMwM7u5NMX78ZEgkld8ZU0pKCkJDv8SFC2eRnv4SdnZ2GDRoKD78sCtmzZoKGxtbTJw4DQCwfPlSfP/9NmzatAN169ZDdnY2OnZsg4ULQ+Dh4anSvB8QMAJ//fUnAMDbuykaN3ZXvh46dAAAoHFjd4SHr9X4+1zWFek+/fDwcNSqVUsb8RARURGIxWJMmDAVVatWQ3z8QyxdGoxVq1ZgypRA5TwZGRnYtWs75s9fjPT0dMyaNRWzZk1FxYqVsGTJcjx8GIfZs6fBxaUx2rb1AwBkZWVh2DB/1KxZC0lJSQgLW4ZFi+bhq69WvDOm9etXIybmX3z11QpYWlohNvYBXr16BQBwc2uC/fv3Kuf9668/YGVlhb/++hN169bDzZvXkZn5Cs7OrnnqXbx4CVavDsfdu9FYtOhLGBkZIS4uFsOHD8HXX69CnTp1YWRkVNy3tFxSO+l7enri5s2bTPpERKXI6x367O0dMGzYKCxdGqSS9LOzszFlygw4OFQHALRu3RaHD0dh//6fYW5ujjp16sLNrSn+/POiMul37txNubyDQ3VMmDAFw4cPQXp6urIV4W0eP34ER0cZ6tdvCACoVs1eOc3NrSmWL1+K5ORkiMVi3L37L4YOHY5Ll/5Az559cOnSH5DJGuS7DgsLS5iamsLQ0BDW1jYAoBwp1tLSUllGeamd9BcuXIjAwEDcuXMHjo6OKh0rAKBt27YaC46IiArnzz8vYtOmbxATcxdpaWmQy+XIzHyFly9fwszMDABgamqqTPgAULmyNapWtVdJrJUrV0ZS0n99Gm7fvolvvlmLO3duIyUlBYKQ03n78eNHqFOnboExde/eG7NnT8Pt27fQvLkHWrVqrTxzr1u3HiwtLfHXX3/A0NAQ770nhbe3L3bt2gEAuHTpDzRu7K6ZN4eU1E76ly5dwh9//IETJ07kmcaOfEREJe/Ro3hMmTIe3bv3xLBho2BhYYHLl/9CcPACZGdnK+d78yQtv7Kcjtk5if3ly5eYNCkAzZq1wJw5C2BlJcHjx48waVIAsrOz3hmXp2dL7Np1EGfOnMTFi+cxfvxo9OzZBwEBEyASieDq6oZLl/6AoaER3NyaoG7delAo5IiO/gdXrlxGnz4fFfOdoTepnfQXLVqEbt26YfTo0bCxYRMKEZGu3bx5HXJ5NgICJirHGTh69Jdi13vvXgySk5Ph7x+AKlWqKtelDolEgk6duqBTpy5wcWmMVatWICBgAoD/rusbGhph2DB/iEQiuLi4Ydu275CZ+QouLnmv579N7jV8uVzxjjn1m9pJPykpCZ988gkTPhGVS1bGFmVuPQ4O1SGXy7Fr1w60bNkKV678jR9+2FPseqtUqQojIyPs3r0D3br1wt270di4cX2hl1+/fg1ksvqoU6ceMjMzcfr0SdSqVVs5Pfe6voGBAVxdG/+/rAlWrvwaUqkMFSpULPS6rKwkMDExwblzp2FnZwdjYxNUrFj45fWF2knfz88P586dQ82aNbURDxGRTigUAhQKBdpW9SzBdSo0MjCPo6MMY8dOxJYt3yIiIhyuru4YOXIMFi6cW6x6JRIJZs6ci7VrV2HXrh2QSutjzJgJCAycVKjlDQ0NERGxEvHxD2FiYgpX18aYP3+xcnrOdX0rVK1aTZng3dzcIZfL0bhxE7ViNTQ0xIQJUxEZuQ4bNkTAxaUxb9nLh0jIHWGnkFavXo1vv/0WrVu3hlQqzXM9aPDgwRoNsCQ9fZqKgt4NQ0MxJJIKOHI1Ccnp2W+fsRiszA3RzkmCpKQ0ZGdrr5kqd1t23z+s1YFIbEwk6FWzvda3h6iwsrIykZgYD2vrajAyMlaZljMqX8mNPZLzQ4Oj8ZWkgj5/kQiwsSnfQ/mqfab//fffw9zcHOfPn8f58+dVpolEojKd9IlIvzEJU3mndtI/evSoxlZ+4cIFbNiwAVevXkVCQgJWrlyJdu3aKacLgoDw8HDs2LEDKSkpcHV1xZw5c+Do6KicJzMzEyEhITh48CBevXqFFi1aYN68eWX+Mb8GBtp96Ie26yei8m/JksX4+ecf853m59cRU6fyQWylTZEfuKMJ6enpkMlk6NmzJ8aOHZtn+rp16xAZGYng4GDUrl0bq1evxtChQ/HTTz8pO2gsWrQIx44dQ2hoKKysrBAcHIyRI0diz549ymEkyxITo5zbZSwszHQdChFRgYYN88dHHw3Kd1qFChVKOBoqjCIl/UePHuHXX39FfHw8srJU79WcMWNGoevx9fWFr69vvtMEQcCmTZvg7+8PP7+ckaFCQkLg5eWFgwcPon///khNTcXu3bvx5ZdfwsvLCwCwZMkStG7dGqdPn0arVq2Ksnk6ZWwghkgkRtrfh6FI0961dkObmjCTemmtfiIq/ySSyoUag59KD7WT/pkzZzBq1ChUr14dd+/ehaOjI+Li4iAIAho2bKixwGJjY5GQkABvb29lmbGxMZo1a4ZLly6hf//+uHr1KrKystCyZUvlPFWqVIGjoyMuXbqkdtIvTc8OUqQlQZ6SoLX6xRUkWqv7bUrT+0v6K3c/VLMPM5UT/z0dNu8xSR+OUWon/aVLl2Lo0KEYP3483NzcEBYWhsqVK2PKlCkaPbNOSMhJeNbW1irlNjY2ePgw5xGKT58+hZGRESwtLfPM8/TpU7XXaW1dvntt6pJEwqY+Kh3kcjmSkh5DLs+EoSEvo+mbzEw5xGIxbGws9PKhPGon/ejoaCxbtixnYUNDZGRkoEKFChg/fjxGjx6Njz/++B01qOfNR/cW5td5UX/BJyYWfMuegYGYyauIkpLSOFIWlRrGxuZ4/vwZ5HIBxsYmfES4nhAEBZKTk2BoaIzk5JcQiTJUpotE5f/kT+2kb25ujszMTACAnZ0d7t+/r+xN//pDGorL1tYWQM7ZvJ2dnbI8MTFRORqgjY0NsrKy8Pz5c5Wz/cTERLi5uam9TkFAgUmfiofvLZUWFhY516FfvNBevxkqnUQi8f8/f5FeHpPUTvqurq74888/8d5778HX1xchISG4ffs2fvnlF7i6Fn6c5HepXr06bG1tcerUKWVfgczMTFy4cAFTpkwBADg5OcHIyAinTp1Cp06dAABPnjzBnTt3MHXqVI3FQkTli0gkgqWlNSpVkkAu185AW1Q6GRoa6XXLjtpJf8aMGcrnFo8dOxbp6emIiopCrVq11Oq5D+Q8//j+/fvK17Gxsbhx4wYsLS1hb2+PwYMHIyIiArVr10atWrUQEREBU1NTdO7cGQBQqVIl9OrVCyEhIZBIJLC0tERISAikUqmyNz8R0duIxWKIxcbvnpGonFAr6cvlcsTHx0MmkwEAzMzMMG/evCKv/OrVqyoj+AUFBQEAevTogeDgYAwfPhyvXr3C/Pnz8fz5c7i6uuKbb75ReYjCzJkz/z/m8gRkZGTA09MTwcHBZfIefSIiIm1Se+x9Z2dnREVFoUaNGtqKSWdKw9j7NSqbwOM9C6Se3q7VW/aMqklRwbU9x94nIvo/fRh7X+2xWKVSKWJjY7URCxEREWmR2kl/4sSJCAkJwbFjx/DkyRO8ePFC5Y+IiIhKJ7U78g0bNgwAMGrUKJUekIIgQCQS4caNG5qLjoiIiDRG7aS/adMmbcRBREREWqZ20m/evLk24iAiIiItUzvp37x5M99ykUgEExMT2Nvbw9iY970SERGVNmon/e7duxc4mpGhoSE6deqEL774AiYmJsUKjoiIiDRH7aQfHh6Or776Cp999hlcXFwgCAKuXLmCyMhIBAQEIDs7G0uXLsXXX3+N6dOnayNmIiIiKgK1k/6aNWswa9Yslcfo1q9fH1WrVsXy5cuxa9cumJubIzg4mEmfiIioFFH7Pv3bt2/D3t4+T7m9vT1u374NIOdHQEKC9kaTIyIiIvWpnfTr1q2LdevWKR+vCwBZWVlYt24d6tatCwB4/PgxrK2tNRclERERFZvazftz5szBqFGj4OvrC5lMBpFIhFu3bkEulyMiIgIA8ODBA3z88ccaD5aIiIiKTu2k7+7ujqNHj2L//v2IiYmBIAho3749OnfurHz6Xffu3TUdJxERERWT2kkfACpUqICPPvpI07EQERGRFql9Tf917u7uePDggaZiISIiIi0qVtIXCnr4PBEREZUqxUr6REREVHYUK+l37doVFSpU0FQsREREpEVF6siXa/78+ZqKg4iIiLSsSEn/zJkzOHPmDBITE6FQKFSmBQUFaSQwIiIi0qwiPXBn5cqVcHJygq2tbYFP3CMiIqLSQ+2kv337dgQFBXEAHiIiojJG7Y58WVlZcHd310YsREREpEVqJ/3evXvjwIED2oiFiIiItEjt5v1Xr15h586dOHPmDGQyGQwNVauYMWOGxoIDgDZt2iAuLi5P+ccff4y5c+ciMDAQe/fuVZnm6uqKnTt3ajQOIiKisk7tpH/r1i3Ur18fAHD79m2Vadro1Ldr1y7I5XLl6zt37mDo0KHo0KGDsqxVq1Yqdw0YGRlpPA4iIqKyTu2k/91332kjjreqXLmyyuu1a9eiZs2aaN68ubLM2NgYtra2JRoXERFRWVOswXlKWmZmJvbv34+hQ4eqtCqcP38enp6esLCwQLNmzTBx4kRYW1urXT/vPtQuvr95icWiErntVRAEKBR8VgZRQfThGFWmkv6RI0eQmpqKHj16KMt8fHzQoUMH2NvbIzY2FsuXL8eQIUOwZ88eGBsbq1W/tXUlTYdM/yeRcLjm/CgEAeISONKU1HqIqHQrU0l/9+7d8PHxQZUqVZRlnTp1Uv4vlUrh5OSENm3a4Pjx4/Dz81Or/sTEVBT04EADAzGTVxElJaVBLle8e0Y9krs//froDJIzU7S2HitjC7St6snPgOgdRKLyf/JXZpJ+XFwcTp8+jbCwsALns7Ozg729PWJiYtRehyCgwKRPxcP3Nn/JmSl4+iqpRNbFz4BIv5WZR+vu2bMH1tbWaN26dYHzJSUlIT4+HnZ2diUTGBERURlRpDP9x48f448//sCzZ8/yPHBn8ODBGgnsdQqFAnv27EH37t1VxgVIS0tDeHg4/Pz8YGtri7i4OISGhkIikaBdu3Yaj4OIiKgsUzvp7969G3PnzoWRkREkEonKNJFIpJWkf/r0aTx8+BC9evVSKTcwMMDt27exb98+pKamwtbWFh4eHggNDUXFihU1HgcREVFZpnbSX7FiBcaMGYORI0dCLC6ZqwPe3t64detWnnJTU1Ns2LChRGIgIiIq69TO2hkZGfjwww9LLOETERGRZqiduXv16oWffvpJG7EQERGRFqndvD958mSMHDkSv//+O6RSqdYfuENERESaoXbSX7NmDU6ePIk6derkmVYSw4kSERFR0aid9Ddu3IjFixejZ8+e2oiHiIiItETta/rGxsZwd3fXRixERESkRWon/cGDB2Pz5s3aiIWIiIi0SO3m/cuXL+Ps2bM4duwYHB0d83TkCw8P11hwREREpDlqJ30LCwu1n15HREREuqd20g8KCtJGHERERKRlHFaPiIhIT6h9pt+mTZsC78f/9ddfixUQERERaYfaSX/IkCEqr7Ozs3H9+nWcPHkSn332mcYCIyIiIs0qdtLPtWXLFly9erXYAREREZF2aOyavo+PDw4fPqyp6oiIiEjDNJb0f/rpJ1hZWWmqOiIiItIwtZv3u3fvrtKRTxAEPH36FM+ePcPcuXM1GhwRERFpjtpJv127diqvRSIRKleujObNm6NevXoaC4yIiIg0S+2kHxAQoI04iIiISMs4OA8REZGeKPSZfv369QsclAfIaeq/fv16sYMiIiIizSt00i/o6XmXLl3C5s2bIQiCRoIiIiIizSt00n+zAx8AREdHY9myZTh27Bi6dOmC8ePHazQ4ojeJxSKIxQW3OGmCQiFAoeCPWCIqX9TuyAcAjx8/RlhYGPbt2wdvb2/s27cPUqlU07EhLCwsTwuDjY0NTp06BSDndsHw8HDs2LEDKSkpcHV1xZw5c+Do6KjxWEj3xGIRJJIKJZb0k5LSmPiJqFxRK+mnpqZizZo12Lx5Mxo0aICNGzeiadOm2ooNAODo6IjIyEjlawMDA+X/69atQ2RkJIKDg1G7dm2sXr0aQ4cOxU8//YSKFStqNS4qebln+eeiU5D6Uq619VQyM4BHPQuIxSImfSIqVwqd9NetW4f169fDxsYGS5cuzbe5XxsMDAxga2ubp1wQBGzatAn+/v7w8/MDAISEhMDLywsHDx5E//79SyQ+KnmpL+VITs/WdRhERGVOoZP+0qVLYWpqipo1a2Lfvn3Yt29fvvMV1OGvKO7duwdvb28YGxvD1dUVkyZNQo0aNRAbG4uEhAR4e3sr5zU2NkazZs1w6dKlIiX9d9ycQMVUFt/fshhzQcrb9hBpkj58Pwqd9N8cfrckuLi4ICQkBLVr10ZiYiJWr16N/v374+DBg0hISAAAWFtbqyxjY2ODhw8fFml91taVih0z5U8iqaDrENRWFmMuSHnbHiJSX6GTfnBwsDbjyJevr6/K68aNG+ODDz7Avn374OrqCgB5fogU57bBxMRUFLS4gYGYB84iSkpKg1yuKFYdJf3+ayLmgpS37SEq60Si8n/yV6Te+7pibm4OqVSKmJgYZZ+Cp0+fws7OTjlPYmIibGxsilS/IKDApE/FUxbf27IYc0HK2/YQkXrK1DC8mZmZiI6Ohq2tLapXrw5bW1vl7Xu50y9cuAA3NzcdRklERFQ6leoz/ZCQELz//vuoVq0anj17htWrV+PFixfo0aMHRCIRBg8ejIiICNSuXRu1atVCREQETE1N0blzZ12HTkREVOqU6qT/6NEjTJo0CcnJyZBIJGjcuDF27twJBwcHAMDw4cPx6tUrzJ8/H8+fP4erqyu++eYb3qNPRESUj1Kd9ENDQwucLhKJMHbsWIwdO7aEIiIiIiq7ytQ1fSIiIio6Jn0iIiI9Uaqb94mItI1PbiR9wqRPRHor58mN5hCLtd/oqVAokJSUzsRPOsWkT0R6K+csX4xfH51BcmaK1tZjZWyBtlU9+eRG0jkmfSLSe8mZKXj6KknXYRBpHTvyERER6QkmfSIiIj3BpE9ERKQnmPSJiIj0BJM+ERGRnmDSJyIi0hNM+kRERHqC9+kTEZFOcSjkksOkT0REOsOhkEsWkz4REekMh0IuWUz6RESkcxwKuWSwIx8REZGeYNInIiLSE0z6REREeoJJn4iISE8w6RMREekJJn0iIiI9Uapv2YuIiMDPP/+Mf//9F6ampnBzc8OUKVNQt25d5TyBgYHYu3evynKurq7YuXNnSYdLRERUqpXqpH/+/HkMGDAAzs7OkMvlCA0NxWeffYZDhw7B3NxcOV+rVq0QFBSkfG1kZKSLcImIiEq1Up30N2zYoPI6KCgInp6euHbtGpo1a6YsNzY2hq2tbUmHR0REVKaU6qT/ptTUVACApaWlSvn58+fh6ekJCwsLNGvWDBMnToS1tbXa9Yu0/7wHvVYW39+yGHNBytv2lEX8DHTvbZ+BPnw2ZSbpC4KAoKAgNGnSBFKpVFnu4+ODDh06wN7eHrGxsVi+fDmGDBmCPXv2wNjYWK11WFtX0nTY9H8SSQVdh6C2shhzQcrb9pRF/Ax0T98/gzKT9L/44gvcvn0bW7duVSnv1KmT8n+pVAonJye0adMGx48fh5+fn1rrSExMhVDAcxgMDMR6v8MUVVJSGuRyRbHqKOn3XxMxF6S8bU9ZxM9A90rTZyASlf+TvzKR9BcsWICjR49i8+bNqFq1aoHz2tnZwd7eHjExMWqvRxBQYNKn4ilr762BgXbvaNV2/fkpa59BecTPQPf0+TMo1UlfEAQsWLAAv/zyC7777jvUqFHjncskJSUhPj4ednZ2JRAhlUcmRiIIggIWFma6DoWISKNKddKfP38+Dh48iFWrVqFChQpISEgAAFSqVAmmpqZIS0tDeHg4/Pz8YGtri7i4OISGhkIikaBdu3Y6jp7KKmMDMUQiMdL+PgxFmvYe9WloUxNmUi+t1U9E9KZSnfS3bdsGABg0aJBKeVBQEHr27AkDAwPcvn0b+/btQ2pqKmxtbeHh4YHQ0FBUrFhRFyFTOaJIS4I8JUFr9YsrSLRWNxFRfkp10r9161aB001NTfPcy09ERET549j7REREeoJJn4iISE+U6uZ9Iip9xGIRxGLtD12mUAhQKPT43ioiLWDSJ6JCE4tFkEgqlFjST0pKY+In0iAmfSIqtNyz/HPRKUh9KdfaeiqZGcCjngXEYhGTPpEGMekTkdpSX8qRnJ6t6zCISE3syEdERKQnmPSJiIj0BJM+ERGRnmDSJyIi0hNM+kRERHqCSZ+IiEhPMOkTERHpCSZ9IiIiPcGkT0REpCeY9ImIiPQEkz4REZGe4Nj7RERlDB9vTEXFpE9EVIbw8cZUHEz6RERlCB9vTMXBpE9EVAbx8cZUFOzIR0REpCeY9ImIiPQEkz4REZGeKDdJf8uWLWjTpg2cnZ3Rs2dPXLx4UdchERERlSrlIulHRUUhKCgIo0aNwr59+9CkSRMMHz4cDx8+1HVoRFQMBgZiGBpq78/AoFwcAokKrVz03o+MjESvXr3Qp08fAMCsWbNw8uRJbNu2DZMnT9ZxdESkLhMjEQRBAQsLM12HQlSulPmkn5mZiWvXrmHEiBEq5S1btsSlS5fUqkssBoRC3I5qZW4AbZ0gVDTNqVhcyQYw0N7HI65gBQCwNpHAUGSgtfVYGlv8t04NvWfafP8BfgaFoe3PoHIFQ4hEYmREX4Ti1QutrcfAwg4m1RvyM8hHJdOc90PbrSG59ZeGz0Ck/fGOdE4kCIVJc6XX48eP4ePjg23btsHd3V1ZvmbNGuzduxeHDx/WYXRERESlR7m5oCV64yeaIAh5yoiIiPRZmU/6EokEBgYGePr0qUp5YmIibGxsdBQVERFR6VPmk76xsTEaNWqEU6dOqZSfPn0abm5uOoqKiIio9CnzHfkAYOjQoZg2bRqcnJzg5uaGHTt2ID4+Hv3799d1aERERKVGuUj6nTp1QlJSElatWoUnT55AKpVi7dq1cHBw0HVoREREpUaZ771PREREhVPmr+kTERFR4TDpExER6QkmfSIiIj3BpE9ERKQnmPTLsK1bt6JLly5wd3eHu7s7+vXrh99++03XYemtiIgIyGQyLFq0SNeh6JWwsDDIZDKVv5YtW+o6LL3z+PFjTJkyBR4eHnB1dUW3bt1w9epVXYdFbygXt+zpq6pVq2LKlCmoWbMmAGDfvn0YM2YM9u7dC0dHRx1Hp18uX76MHTt2QCaT6ToUveTo6IjIyEjlawMD7T24hfJ6/vw5PvroI3h4eGDdunWoXLkyHjx4AAsLi3cvTCWKSb8Ma9OmjcrriRMnYtu2bfjrr7+Y9EtQWloapk6dioULF2L16tW6DkcvGRgYwNbWVtdh6K1169ahatWqCAoKUpZVr15dhxHR27B5v5yQy+U4dOgQ0tPTOfxwCfviiy/g6+sLLy8vXYeit+7duwdvb2+0adMGEydOxIMHD3Qdkl45evQonJycMG7cOHh6eqJ79+7YuXOnrsOifPBMv4y7desW+vfvj1evXsHc3BwrV67Ee++9p+uw9MahQ4dw/fp17Nq1S9eh6C0XFxeEhISgdu3aSExMxOrVq9G/f38cPHgQEolE1+HphQcPHmDbtm0YOnQo/P39cfnyZSxcuBDGxsbo3r27rsOj1zDpl3F16tTBvn37kJKSgp9//hnTp0/H5s2bmfhLQHx8PBYtWoRvvvkGJiYmug5Hb/n6+qq8bty4MT744APs27cPQ4cO1VFU+kUQBDg5OWHSpEkAgIYNG+Kff/7Btm3bmPRLGSb9Ms7Y2Bi1atUCADg7O+PKlSvYtGkTvvjiCx1HVv5du3YNiYmJ6Nmzp7JMLpfjwoUL2LJlC65cucIOZTpgbm4OqVSKmJgYXYeiN2xtbVGvXj2Vsrp16+Lw4cM6iojehkm/nBEEAZmZmboOQy+0aNECBw4cUCmbMWMG6tati+HDhzPh60hmZiaio6PRpEkTXYeiN9zd3XH37l2VspiYGD70rBRi0i/Dli1bBh8fH1StWhVpaWmIiorC+fPnsX79el2HphcqVqwIqVSqUmZubg4rK6s85aQ9ISEheP/991GtWjU8e/YMq1evxosXL9CjRw9dh6Y3hgwZgo8++ghr1qxBx44dcfnyZezcuZMtjqUQk34Z9vTpU0ybNg1PnjxBpUqVIJPJsH79eg5MQnrl0aNHmDRpEpKTkyGRSNC4cWPs3LmTZ5klyMXFBeHh4Vi2bBlWrlyJ6tWrY+bMmejatauuQ6M38NG6REREeoL36RMREekJJn0iIiI9waRPRESkJ5j0iYiI9ASTPhERkZ5g0iciItITTPpERER6gkmfiIhITzDpE1GpsWfPHjRt2lTXYRCVW0z6RGoKDAyETCbD2rVrVcqPHDkCmUymo6iIiN6NSZ+oCExMTLBu3To8f/5c6+viUxOLLysrS9chEJUKTPpEReDl5QUbGxtERESoveyqVavg6ekJNzc3zJo1C1999RW6deumnB4YGIjRo0cjIiIC3t7e6NChAwDghx9+QM+ePeHm5oaWLVti8uTJSExMVC537tw5yGQy/P777+jevTtcXFwwePBgJCYm4rfffkPHjh3h7u6OSZMm4eXLl2+NL7eJ/ffff0fHjh3h5uaGzz77DE+ePFHOM2jQICxatEhludGjRyMwMFD5uk2bNli1ahWmTZsGNzc3vP/++zhy5AiePXuGUaNGwc3NDV26dMGVK1fyxHDkyBG0b98ezs7OGDp0KOLj41WmHz16FD179oSzszPatm2L8PBwZGdnK6fLZDJs27YNo0aNQuPGjbF69ep3fSxEeoFJn6gIxGIxJk2ahM2bN+PRo0eFXm7//v1Ys2YNpkyZgj179qBatWrYtm1bnvnOnDmD6OhoREZGYs2aNQByzlbHjx+P/fv3Y+XKlYiNjVVJsrnCw8Px+eefY/v27Xj06BEmTJiATZs2YenSpVi7di1OnTqF7777rsA4MzIy8M033+DLL7/E5s2bER8fj5CQkEJvZ65vv/0W7u7u2Lt3L3x9fTFt2jRMmzYNXbt2xZ49e1CzZk1Mnz4drz/3KyMjA6tXr0ZwcDC2bduGFy9eYOLEicrpv//+O6ZOnYpBgwYhKioKX3zxBfbs2aN8n3KFhYWhbdu2OHDgAHr16qV27ETlEZM+URF98MEHaNCgAVasWFHoZTZv3ozevXujV69eqFOnDgICAiCVSvPMZ25ujoULF8LR0VE5vXfv3vD19UWNGjXQuHFjzJo1CydOnEBaWprKshMmTECTJk3QsGFD9O7dG+fPn8e8efPQsGFDNG3aFO3bt8e5c+cKjDMrKwvz58+Hs7MzGjVqhAEDBuDs2bOF3s5cPj4+6N+/P2rXro0xY8YgLS0Nzs7O6NixI+rUqYPhw4cjOjoaT58+VVn3nDlz4ObmBicnJwQHB+PSpUu4fPkyAGDNmjUYMWIEevTogRo1aqBly5YYP348tm/frrLuzp07o3fv3qhRowYfs0v0f4a6DoCoLJsyZQqGDBmCTz/9NM80Nzc35f9dunTBF198gbt37+Ljjz9Wmc/FxSVPQpVKpTA2NlYpu379OsLCwnDz5k0kJycrz47j4+Px3nvvKed7vTOhtbU1zMzMUKNGDWWZjY1Nvk3qrzMzM0PNmjWVr+3s7FQuJRTW67HY2Ngot+31+AAgMTERtra2AABDQ0M4OTkp56lXrx4sLCwQHR0NFxcXXLt2DVeuXFE5s5fL5Xj16hVevnwJMzMzAFCpg4hyMOkTFUOzZs3g7e2NZcuWoWfPnirT9u3bp/y/YsWKb63j9abtXLmJK1d6ejo+/fRTtGzZEkuWLIFEIkF8fDw+++yzPJ3UDA3/+1qLRCKV17llCoWiwO3Kb5nX43zzNQCVa+pviwUAjIyM8pS9WVdueX5lCoUCY8eOhZ+fX555TExMlP+bm5vnmU6k75j0iYpp8uTJ6N69O2rXrq1SXqtWrTzz1qlTB1euXEH37t2VZVevXn3nOv79918kJSVhypQpqFatWqGX05bKlSsjISFB+Voul+POnTvw8PAodt3Z2dm4evUqXFxcAORse0pKCurWrQsAaNiwIe7evZvv+0tEBeM1faJikslk6NKlCzZv3vzOeQcOHIhdu3Zh7969iImJwapVq3Dr1q18z2xfZ29vDyMjI3z33Xd48OABfv31V6xatUpTm6C2Fi1a4LfffsPx48cRHR2N+fPnIyUlRSN1GxkZYcGCBfj7779x7do1zJw5E40bN1b+CBgzZgx++OEHhIWF4c6dO4iOjkZUVBRCQ0M1sn6i8oxJn0gDxo8fn28z/Zu6du2KESNGICQkBD169EBsbCx69Oih0iydn8qVKyM4OBg//fQTOnXqhHXr1mH69OmaCl9tvXr1Qvfu3TF9+nQMGjQI1atX18hZPgCYmppi+PDhmDx5Mvr16wcTExMsW7ZMOb1Vq1ZYs2YNTp06hd69e6Nv376IjIxkZz2iQhAJhTlSEZHWDB06FDY2NliyZImuQyGico7X9IlK0MuXL7F9+3Z4e3tDLBbj0KFDOH36NCIjI3UdGhHpAZ7pE5WgjIwM+Pv74/r168jMzESdOnUwatSofHuiExFpGpM+ERGRnmBHPiIiIj3BpE9ERKQnmPSJiIj0BJM+ERGRnmDSJyIi0hNM+kRERHqCSZ+IiEhPMOkTERHpif8B6KEA30+pe4oAAAAASUVORK5CYII=", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - } - ], - "source": [ - "sns.set_style(\"darkgrid\")\n", - "\n", - "data_lyre = {\n", - " 'count': range(3, 7),\n", - " 'num':lyre_ngrams_counts,\n", - " 'model':'lyre'\n", - "}\n", - "data_llama = {\n", - " 'count': range(3, 7),\n", - " 'num': llama_ngrams_counts,\n", - " 'model':'llama'\n", - "}\n", - "\n", - "data_llama_swift = {\n", - " 'count': range(3, 7),\n", - " 'num': llama_swift_ngrams_counts,\n", - " 'model':'llama_swift'\n", - "}\n", - "\n", - "df_lyre = pd.DataFrame(data_lyre)\n", - "df_llama = pd.DataFrame(data_llama)\n", - "df_llama_swift = pd.DataFrame(data_llama_swift)\n", - "df = pd.concat([df_lyre, df_llama, df_llama_swift], ignore_index=True)\n", - "\n", - "plt.figure(figsize=(5, 3))\n", - "sns.barplot(x='count', y='num', hue='model', data=df, palette='pastel')\n", - "plt.xlabel('N-gram number')\n", - "plt.ylabel('Num n-grams')\n", - "plt.title('Generated 3, 4, 5, and 6-grams with existing Taylor lyrics')\n", - "plt.legend(title='Model')" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.15" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/scrape_lyrics/.DS_Store b/generate_prompts/scrape_lyrics/.DS_Store similarity index 100% rename from scrape_lyrics/.DS_Store rename to generate_prompts/scrape_lyrics/.DS_Store diff --git a/scrape_lyrics/1000_songs_no_annotation.csv b/generate_prompts/scrape_lyrics/1000_songs_no_annotation.csv similarity index 100% rename from scrape_lyrics/1000_songs_no_annotation.csv rename to generate_prompts/scrape_lyrics/1000_songs_no_annotation.csv diff --git a/scrape_lyrics/Get song info.ipynb b/generate_prompts/scrape_lyrics/Get song info.ipynb similarity index 100% rename from scrape_lyrics/Get song info.ipynb rename to generate_prompts/scrape_lyrics/Get song info.ipynb diff --git a/scrape_lyrics/TS_finetune_data_generation.ipynb b/generate_prompts/scrape_lyrics/TS_finetune_data_generation.ipynb similarity index 100% rename from scrape_lyrics/TS_finetune_data_generation.ipynb rename to generate_prompts/scrape_lyrics/TS_finetune_data_generation.ipynb diff --git a/scrape_lyrics/fix_schema.ipynb b/generate_prompts/scrape_lyrics/fix_schema.ipynb similarity index 100% rename from scrape_lyrics/fix_schema.ipynb rename to generate_prompts/scrape_lyrics/fix_schema.ipynb diff --git a/scrape_lyrics/get_song_lyrics.ipynb b/generate_prompts/scrape_lyrics/get_song_lyrics.ipynb similarity index 100% rename from scrape_lyrics/get_song_lyrics.ipynb rename to generate_prompts/scrape_lyrics/get_song_lyrics.ipynb diff --git a/scrape_lyrics/modern_songs.csv b/generate_prompts/scrape_lyrics/modern_songs.csv similarity index 100% rename from scrape_lyrics/modern_songs.csv rename to generate_prompts/scrape_lyrics/modern_songs.csv diff --git a/scrape_lyrics/taylor_swift_test.csv b/generate_prompts/scrape_lyrics/taylor_swift_test.csv similarity index 100% rename from scrape_lyrics/taylor_swift_test.csv rename to generate_prompts/scrape_lyrics/taylor_swift_test.csv diff --git a/scrape_lyrics/taylor_swift_training.csv b/generate_prompts/scrape_lyrics/taylor_swift_training.csv similarity index 100% rename from scrape_lyrics/taylor_swift_training.csv rename to generate_prompts/scrape_lyrics/taylor_swift_training.csv diff --git a/scrape_lyrics/top_96_artists.csv b/generate_prompts/scrape_lyrics/top_96_artists.csv similarity index 100% rename from scrape_lyrics/top_96_artists.csv rename to generate_prompts/scrape_lyrics/top_96_artists.csv diff --git a/training_curves/create_training_visualizations.ipynb b/visualization_notebooks/create_training_visualizations.ipynb similarity index 99% rename from training_curves/create_training_visualizations.ipynb rename to visualization_notebooks/create_training_visualizations.ipynb index d4f3b77..00d314e 100644 --- a/training_curves/create_training_visualizations.ipynb +++ b/visualization_notebooks/create_training_visualizations.ipynb @@ -9,7 +9,10 @@ "import pandas as pd\n", "import numpy as np\n", "import seaborn as sns\n", - "import matplotlib.pyplot as plt" + "import matplotlib.pyplot as plt\n", + "\n", + "import sys\n", + "sys.path.insert(0, \"../training_curves\")" ] }, { diff --git a/mt_bench/generate_mt_bench_plots.ipynb b/visualization_notebooks/generate_mt_bench_plots.ipynb similarity index 99% rename from mt_bench/generate_mt_bench_plots.ipynb rename to visualization_notebooks/generate_mt_bench_plots.ipynb index 246f086..db49c4d 100644 --- a/mt_bench/generate_mt_bench_plots.ipynb +++ b/visualization_notebooks/generate_mt_bench_plots.ipynb @@ -57,6 +57,16 @@ "!pip install nbformat" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import sys\n", + "sys.path.insert(\"../data/mt_bench\")" + ] + }, { "cell_type": "code", "execution_count": 2,