{ "cells": [ { "cell_type": "code", "execution_count": 76, "id": "5255aa75", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np\n", "import json" ] }, { "cell_type": "code", "execution_count": 77, "id": "7c71524c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(13640, 7)\n" ] } ], "source": [ "songs_df = pd.read_csv('final_cleaned.csv')\n", "print(df.shape)" ] }, { "cell_type": "code", "execution_count": 78, "id": "135fbb72", "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", "
idlyricsannotationartistartist_idsongprompts
04575103[Chorus: Ed Sheeran]\\nOh, I been on for a thou...“1000 Nights” is a collaboration between Ed Sh...Ed Sheeran124181000 NightsWrite me a song called 1000 Nights with the fo...
13541694[Verse 1]\\nI will always remember\\nThe day you...In “2002,” Anne-Marie reminisces about falling...Ed Sheeran124182002Write me a song called 2002 with the following...
27120781[Verse 1]\\nI had a bad week\\nSpent the evening...In an upbeat switch of tone, “2step” is Ed She...Ed Sheeran124182stepWrite me a song called 2step with the followin...
37921365[Verse 1: Ed Sheeran]\\nI had a bad week\\nSpent...“2step (Remix)” is the fifth single from Ed Sh...Ed Sheeran124182step (Remix)Write me a song called 2step (Remix) with the ...
4493576[Verse 1]\\nI think I took too much\\nI'm addict...Ed mentions in the Part 2 of his tour diary th...Ed Sheeran12418AddictedWrite me a song called Addicted with the follo...
\n", "
" ], "text/plain": [ " id lyrics \\\n", "0 4575103 [Chorus: Ed Sheeran]\\nOh, I been on for a thou... \n", "1 3541694 [Verse 1]\\nI will always remember\\nThe day you... \n", "2 7120781 [Verse 1]\\nI had a bad week\\nSpent the evening... \n", "3 7921365 [Verse 1: Ed Sheeran]\\nI had a bad week\\nSpent... \n", "4 493576 [Verse 1]\\nI think I took too much\\nI'm addict... \n", "\n", " annotation artist artist_id \\\n", "0 “1000 Nights” is a collaboration between Ed Sh... Ed Sheeran 12418 \n", "1 In “2002,” Anne-Marie reminisces about falling... Ed Sheeran 12418 \n", "2 In an upbeat switch of tone, “2step” is Ed She... Ed Sheeran 12418 \n", "3 “2step (Remix)” is the fifth single from Ed Sh... Ed Sheeran 12418 \n", "4 Ed mentions in the Part 2 of his tour diary th... Ed Sheeran 12418 \n", "\n", " song prompts \n", "0 1000 Nights Write me a song called 1000 Nights with the fo... \n", "1 2002 Write me a song called 2002 with the following... \n", "2 2step Write me a song called 2step with the followin... \n", "3 2step (Remix) Write me a song called 2step (Remix) with the ... \n", "4 Addicted Write me a song called Addicted with the follo... " ] }, "execution_count": 78, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.head()" ] }, { "cell_type": "code", "execution_count": 79, "id": "1930d705", "metadata": {}, "outputs": [], "source": [ "def create_prompts_table(data, pre_text, post_text):\n", " pre_prompt = pre_text\n", " main_prompt = data['annotation']\n", " post_prompt = post_text\n", " full_prompt = pre_prompt + main_prompt + post_prompt\n", " return full_prompt" ] }, { "cell_type": "code", "execution_count": 80, "id": "5dfbcf8e", "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", "
prompts
0Write me a song called 1000 Nights with the fo...
1Write me a song called 2002 with the following...
2Write me a song called 2step with the followin...
3Write me a song called 2step (Remix) with the ...
4Write me a song called Addicted with the follo...
\n", "
" ], "text/plain": [ " prompts\n", "0 Write me a song called 1000 Nights with the fo...\n", "1 Write me a song called 2002 with the following...\n", "2 Write me a song called 2step with the followin...\n", "3 Write me a song called 2step (Remix) with the ...\n", "4 Write me a song called Addicted with the follo..." ] }, "execution_count": 80, "metadata": {}, "output_type": "execute_result" } ], "source": [ "#create a sampel prompts table\n", "pre = pd.DataFrame([\"Write me a song called \"] * songs_df.shape[0])[0] + songs_df['song'] + ' with the following description: '\n", "post = pd.DataFrame([\" Make sure the lyrics are different from the original song.\"] * songs_df.shape[0])[0]\n", "prompt = create_prompts_table(songs_df, pre, post)\n", "prompts_df = pd.DataFrame({'prompts': prompt})\n", "prompts_df.head()" ] }, { "cell_type": "code", "execution_count": 81, "id": "b27f985d", "metadata": { "scrolled": true }, "outputs": [ { "data": { "text/plain": [ "'Write me a song called 1000 Nights with the following description: “1000 Nights” is a collaboration between Ed Sheeran, Meek Mill, and A Boogie wit da Hoodie that appears on Ed’s No.6 Collaborations Project. On the track, the artists discuss touring the world and boast about the perks of being rich and famous.\\nThis songs marks the first time any of these artists have collaborated. Make sure the lyrics are different from the original song.'" ] }, "execution_count": 81, "metadata": {}, "output_type": "execute_result" } ], "source": [ "prompts_df['prompts'][0]" ] }, { "cell_type": "code", "execution_count": 82, "id": "c2df4b51", "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", "
idlyricsannotationartistartist_idsongprompts
04575103[Chorus: Ed Sheeran]\\nOh, I been on for a thou...“1000 Nights” is a collaboration between Ed Sh...Ed Sheeran124181000 NightsWrite me a song called 1000 Nights with the fo...
13541694[Verse 1]\\nI will always remember\\nThe day you...In “2002,” Anne-Marie reminisces about falling...Ed Sheeran124182002Write me a song called 2002 with the following...
27120781[Verse 1]\\nI had a bad week\\nSpent the evening...In an upbeat switch of tone, “2step” is Ed She...Ed Sheeran124182stepWrite me a song called 2step with the followin...
37921365[Verse 1: Ed Sheeran]\\nI had a bad week\\nSpent...“2step (Remix)” is the fifth single from Ed Sh...Ed Sheeran124182step (Remix)Write me a song called 2step (Remix) with the ...
4493576[Verse 1]\\nI think I took too much\\nI'm addict...Ed mentions in the Part 2 of his tour diary th...Ed Sheeran12418AddictedWrite me a song called Addicted with the follo...
\n", "
" ], "text/plain": [ " id lyrics \\\n", "0 4575103 [Chorus: Ed Sheeran]\\nOh, I been on for a thou... \n", "1 3541694 [Verse 1]\\nI will always remember\\nThe day you... \n", "2 7120781 [Verse 1]\\nI had a bad week\\nSpent the evening... \n", "3 7921365 [Verse 1: Ed Sheeran]\\nI had a bad week\\nSpent... \n", "4 493576 [Verse 1]\\nI think I took too much\\nI'm addict... \n", "\n", " annotation artist artist_id \\\n", "0 “1000 Nights” is a collaboration between Ed Sh... Ed Sheeran 12418 \n", "1 In “2002,” Anne-Marie reminisces about falling... Ed Sheeran 12418 \n", "2 In an upbeat switch of tone, “2step” is Ed She... Ed Sheeran 12418 \n", "3 “2step (Remix)” is the fifth single from Ed Sh... Ed Sheeran 12418 \n", "4 Ed mentions in the Part 2 of his tour diary th... Ed Sheeran 12418 \n", "\n", " song prompts \n", "0 1000 Nights Write me a song called 1000 Nights with the fo... \n", "1 2002 Write me a song called 2002 with the following... \n", "2 2step Write me a song called 2step with the followin... \n", "3 2step (Remix) Write me a song called 2step (Remix) with the ... \n", "4 Addicted Write me a song called Addicted with the follo... " ] }, "execution_count": 82, "metadata": {}, "output_type": "execute_result" } ], "source": [ "songs_df[\"prompts\"] = prompts_df[\"prompts\"]\n", "songs_df.head()" ] }, { "cell_type": "code", "execution_count": 83, "id": "4e58304c", "metadata": {}, "outputs": [], "source": [ "def convert_table_to_conversation(data):\n", " result = []\n", " for i in range(data.shape[0]):\n", " row = data.loc[i]\n", " outer_dict = {}\n", " outer_dict[\"id\"] = i\n", " outer_dict[\"conversations\"] = []\n", " conversations = outer_dict[\"conversations\"]\n", " conversations.append({\"from\":\"human\", \"value\":row[\"prompts\"]})\n", " conversations.append({\"from\":\"gpt\", \"value\":row[\"lyrics\"]})\n", " result.append(outer_dict)\n", " return result" ] }, { "cell_type": "code", "execution_count": 84, "id": "3cb9b412", "metadata": {}, "outputs": [], "source": [ "convo = convert_table_to_conversation(songs_df)\n", "convo_json = json.dumps(convo, indent=2)" ] }, { "cell_type": "code", "execution_count": 85, "id": "4f21636f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "[\n", " {\n", " \"id\": 0,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called 1000 Nights with the following description: \\u201c1000 Nights\\u201d is a collaboration between Ed Sheeran, Meek Mill, and A Boogie wit da Hoodie that appears on Ed\\u2019s No.6 Collaborations Project. On the track, the artists discuss touring the world and boast about the perks of being rich and famous.\\nThis songs marks the first time any of these artists have collaborated. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Chorus: Ed Sheeran]\\nOh, I been on for a thousand nights\\nNew York to London, different city every day, yeah\\nPlayin' on, playin' on, puttin' up 50 thousand lights\\nOh, I've been gone so long, gettin' up and gettin' faded\\nSo I'm on, keepin' on, stayin' up for a thousand nights\\n[Verse 1: Meek Mill]\\nThis the type of shit we used to dream of (Yeah, yeah)\\nBad bitch look like Mona Lisa (Mona Lisa)\\nFlippin' off a yacht in Ibiza (Splash, water)\\nClear port, hasta la vista\\nDo it all again when we touchdown, everything bust down\\nTeacher said I would lose, I be like, \\\"What now?\\\"\\nI started makin' moves, they showin' me love now\\nLit like a light bulb 'cause, bitch, I'm the plug now\\nAnd now you know we poppin', we bubble like soda poppin'\\nI see it, I like it, I wake up, pull up, and go and cop it\\nThe millions get wired, them Benny hunnids still go in pocket\\nI party with Ed Sheeran, my homies still hold a rocket\\n'Cause I'm so hood, it don't make no sense\\nStill remember the times I couldn't pay my rent\\nNow, I walk in a stadiums, tell 'em, \\\"Play my shit\\\"\\nAnd they gon' sing like this\\n[Chorus: Ed Sheeran]\\nOh, I been on for a thousand nights\\nNew York to London, different city every day, yeah\\nPlayin' on, playin' on, puttin' up 50 thousand lights\\nOh, I've been gone so long, gettin' up and gettin' faded\\nSo I'm on, keepin' on, stayin' up for a thousand nights [Verse 2: Ed Sheeran]\\nLast night, I played a show at a stadium in Atlanta\\nHusband and wives, daddies and daughters with the cameras\\nI never thought it would get this big, but why does it matter?\\nEverything is already part of a plan\\nI remember, damn, me and my man inside of this Splitter van\\n200 a night, end of 2010\\nStayin' up in every city's Holiday Inn\\nIf it wasn't there, then I was at the couch of a friend's\\nWetherspoon's was an easy option to get a cheaper lunch and\\n\\u00a32 pint, the waitress maybe leave her number\\nOn to the next town, but now it's to the next continent (Woo)\\nAnd I don't think it's gonna be stoppin' anytime soon\\nBirds eye view, pay my dues for a two-mile queue\\nDon't need to read reviews if you can't do the things I do\\nOh, let me invite you to my world\\n[Chorus: Ed Sheeran]\\nOh, I been on for a thousand nights\\nNew York to London, different city every day, yeah\\nPlayin' on, playin' on, puttin' up 50 thousand lights\\nOh, I've been gone so long, gettin' up and gettin' faded (\\nGettin' faded\\n)\\nSo I'm on, keepin' on, stayin' up for a thousand nights\\n[Verse 3: A Boogie wit da Hoodie]\\nMmm, I'm so faded, yeah\\nI don't even know how much I made this year\\nI'm so used to bein' on some player shit\\nCheated on my girlfriend with a famous bitch\\nHoodie on pull up, just like the Reaper, yeah\\nI do this on the regular, make you seem unfair\\nSt. Laurent, Gucci sweater, the red and green Moncler\\nMe and Meek and Ed Sheeran just like the Beatles, yeah\\nFrom her head to her toe, she know she be flee, oh yeah\\nEveryday, I be seein' her and Ceiline, oh yeah\\nShe wanna come closer, but I don't see us there\\nI'm not a regular person\\n, I be low-key, oh yeah\\nFrom New York out to London\\nShe was, she was with me all the time\\nAnd I've been on the road, so long she couldn't call my line\\nAnd now she got her ass and titties done for a thousand likes [Chorus: Ed Sheeran]\\nOh, I been on for a thousand nights\\nNew York to London, different city every day, yeah\\nPlayin' on, playin' on, puttin' up 50 thousand lights\\nOh, I've been gone so long, gettin' up and gettin' faded\\nSo I'm on, keepin' on, stayin' up for a thousand nights\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 1,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called 2002 with the following description: In \\u201c2002,\\u201d Anne-Marie reminisces about falling in love as an 11-year-old and all the songs that soundtracked that romance. She had some help from Ed Sheeran to write this track.\\nDuring the song\\u2019s chorus, she references six songs released in the late 1990s and early 2000s, like Jay-Z\\u2019s \\u201c99 Problems,\\u201d Nelly\\u2019s \\u201cRide wit Me,\\u201d NSYNC\\u2019s \\u201cBye Bye Bye\\u201d and Britney Spears' \\u201c\\u2026Baby One More Time.\\u201d\\nThe \\u201c99 Problems\\u201d reference is actually a misnomer, however, as Jay-Z didn\\u2019t write that song until 2003. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nI will always remember\\nThe day you kissed my lips\\nLight as a feather\\nAnd it went just like this\\nNo, it's never been better than the summer\\nOf 2002 (Ooh)\\n[Verse 2]\\nWe were only eleven\\nBut acting like grown-ups\\nLike we are in the present\\nDrinking from plastic cups\\nSinging, \\\"Love is forever and ever\\\"\\nWell, I guess that was true (Ooh)\\n[Pre-Chorus]\\nDancin' on the hood in the middle of the woods\\nOn an old Mustang where we sang\\nSongs with all our childhood friends\\nAnd it went like this, say\\n[Chorus]\\nOops, I got 99 problems, singin' \\\"bye, bye, bye\\\"\\nHold up, if you wanna go and take a ride with me\\nBetter hit me, baby, one more time, uh\\nPaint a picture for you and me\\nOn the days when we were young, uh\\nSingin' at the top of both our lungs [Verse 3]\\nNow we're under the covers\\nFast forward to eighteen\\nWe are more than lovers\\nYeah, we are all we need\\nWhen we're holdin' each other\\nI'm taken back to 2002 (Ooh)\\nYeah\\n[Pre-Chorus]\\nDancin' on the hood in the middle of the woods\\nOn an old Mustang where we sang\\nSongs with all our childhood friends\\nAnd it went like this, say\\n[Chorus]\\nOops, I got 99 problems, singin' \\\"bye, bye, bye\\\"\\nHold up, if you wanna go and take a ride with me\\nBetter hit me, baby, one more time, uh\\nPaint a picture for you and me\\nOn the days when we were young, uh\\nSingin' at the top of both our lungs\\nOn the day we fell in love\\n[Post-Chorus]\\nOoh, ooh\\nOn the day we fell in love\\nOoh, ooh [Bridge]\\nDancin' on the hood in the middle of the woods\\nOn an old Mustang where we sang\\nSongs with all our childhood friends\\nOh, now\\n[Chorus]\\nOops, I got 99 problems, singin' \\\"bye, bye, bye\\\"\\nHold up, if you wanna go and take a ride with me\\nBetter hit me, baby, one more time\\nPaint a picture for you and me\\nOn the days when we were young\\nSingin' at the top of both our lungs\\nOn the day we fell in love\\n[Post-Chorus]\\nOoh, ooh\\nOn the day we fell in love\\nOoh, ooh\\nOn the day we fell in love\\nOoh, ooh\\nOn the day we fell in love\\nOoh, ooh\\nOn the day we fell in love, love, love\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 2,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called 2step with the following description: In an upbeat switch of tone, \\u201c2step\\u201d is Ed Sheeran\\u2019s take on a pop-rap song.\\nThe song is reminiscent of Sheeran\\u2019s 2017 track \\u201cEraser\\u201d with its rap-esque flow. Sheeran discusses his attitude towards life\\u2019s pace, and his own struggles with the stress of his life. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nI had a bad week\\nSpent the evening pretending it wasn't that deep\\nYou could see in my eyes that it was taking over\\nI guess I was just blind and caught up in the moment\\nYou know you take all of my stress right down\\nHelp me get it off my chest and out\\nInto the ether with the rest of this mess that just keeps us depressed\\nWe forget that we're here right now\\n[Pre-Chorus]\\n'Cause we're livin' life at a different pace\\nStuck in a constant race\\nKeep the pressure on, you're bound to break\\nSomething's gotta change\\nWe should just be cancelling all our plans and not give a damn\\nIf we're missin' out on what the people think is right\\nSeein' through a picture behind the screen and forget to be\\nLose the conversation for the message that you'll never read\\nI think maybe you and me\\nOh, we should head out to the place where the music plays\\nAnd then\\n[Chorus]\\nWe'll go all night\\nTwo-steppin' with the woman I love\\nAll my troubles turn to nothin' when I'm in your eyes, electrified\\nWe'll keep turnin' up and go all night\\nOh, we had dips and falls in our time\\nBut we know what it feels to be low then up, alone, then loved\\nAnd all we need is us to go all [Post-Chorus]\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us\\n[Verse 2]\\nWhat do you reckon, is it just me?\\nWords are weapons and occasionally they cut deep\\nCrisis of confidence, it tends to come when I feel the dark and I open my heart\\nIf you don't see it, you should trust me\\nI feel like I got nothin' left right now\\nExcept this beauty in her dress right now\\nShe got me feelin' like the best and the rest are just less than she needs\\nSo we press play and step to the beat\\n[Pre-Chorus]\\n'Cause we're livin' life at a different pace\\nStuck in a constant race\\nKeep the pressure on, you're bound to break\\nSomething's gotta change\\nWe should just be cancelling all our plans and not give a damn\\nHead out to the place where it plays and\\n[Chorus]\\nWe'll go all night\\nTwo-steppin' with the woman I love\\nAll my troubles turn to nothin' when I'm in your eyes, electrified\\nWe'll keep turnin' up and go all night\\nOh, we had dips and falls in our time\\nBut we know what it feels to be low then up, alone and loved\\nAnd all we need is us to go all [Post-Chorus]\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us to go all night\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us to go all night\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 3,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called 2step (Remix) with the following description: \\u201c2step (Remix)\\u201d is the fifth single from Ed Sheeran\\u2019s = album and enlists help from rap artist Lil Baby.\\nThe song was announced in conjunction with a music video that had been filmed one year prior in Kyiv, Ukraine, before the Russian invasion in 2022. Sheeran wrote on Instagram:\\nWe filmed the 2step video last year in Kyiv and although it was my first time there, I quickly loved the people and the place. There was no sign of the horror that was to come to Ukraine and my heart goes out to everyone there. The video comes out on Friday this week and proceeds from the YouTube streams will go to the DEC\\u2019s Ukraine appeal x Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Ed Sheeran]\\nI had a bad week\\nSpent the evening pretending it wasn't that deep\\nYou could see in my eyes that it was taking over\\nI guess I was just blind and caught up in the moment\\nYou know you take all of my stress right down\\nHelp me get it off my chest and out\\nInto the ether with the rest of this mess that just keeps us depressed\\nWe forget that we're here right now\\n[Pre-Chorus: Ed Sheeran]\\n'Cause we're livin' life at a different pace\\nStuck in a constant race\\nKeep the pressure on, you're bound to break\\nSomething's gotta change\\nWe should just be cancelling all our plans and not give a damn\\nIf we're missin' out on what the people think is right\\nSeein' through a picture behind the screen and forget to be\\nLose the conversation for the message that you'll never read\\nI think maybe you and me\\nOh, we should head out to the place where the music plays\\nAnd then\\n[Chorus: Ed Sheeran]\\nWe'll go all night\\nTwo-steppin' with the woman I love\\nAll my troubles turn to nothin' when I'm in your eyes, electrified\\nWe'll keep turnin' up and go all night\\nOh, we had dips and falls in our time\\nBut we know what it feels to be low then up, alone, then loved\\nAnd all we need is us to go all [Post-Chorus: Ed Sheeran & \\nLil Baby\\n]\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us (\\nBaby\\n)\\n[Verse 2: Lil Baby]\\nSun comin' up when we walk out, we lost the track of time\\nEverything that I'd been dealin' with ain't even crossed my mind\\nI don't see nobody in here but us, for real, for you, I'm blind\\nWe go anywhere, don't take much for us to catch a vibe\\nCome here, I need to tell you somethin', let me whisper in your ear\\nDo whatever to get you there, I'll put you on a Lear, yeah\\nPrivate island for a month straight, they'll think you disappeared\\nLamb truck'll look good on you, I'm coppin' you that Urus\\nI think I'm 'bout ready to make love in this club\\nOnly thing I need is my drink and my drugs\\nI done got on ten and forgot where I was\\nSome parts I don't like, but this part I love\\nOnly me and my guys\\nI been havin' me a good time, you can see it all in my eyes\\nTwo-steppin' with shawty, got her rockin' side to side\\nYou should let me know when you get ready to ride 'cause\\n[Chorus: Ed Sheeran, \\nLil Baby\\n, \\nBoth\\n]\\nWe'll go all night\\nTwo-steppin' with the woman I love (\\nI love\\n)\\nAll my troubles turn to nothin' when I'm in your eyes, electrified\\nWe'll keep turnin' up and go \\nall night\\nOh, we had dips and falls in our time\\nBut we know what it feels to be low then up, alone, then loved\\nAnd all we need is us to go all (\\nAll night\\n) [Post-Chorus: Ed Sheeran]\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us to go all night\\nNight, night\\nTwo-steppin' with the woman I love\\nNight, yeah\\nAll we need is us to go all night\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 4,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Addicted with the following description: Ed mentions in the Part 2 of his tour diary that he did this song when he was 12 years old, and the \\u201csinging is dreadful, the song-writing is dreadful, the guitar playing is dreadful\\u201d\\nYou can watch the video here!\\nhttp://youtu.be/LQ6s7-SJDV0 Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nI think I took too much\\nI'm addicted to your touch\\nBut I'm crying\\nIn shame again\\n[Hook 1]\\nAnd now I'm high as a kite\\nAnd I know I might be gone\\nWhen you get home\\n[Verse 2]\\nOh well, we've come this far\\nYou're my Venus\\nAnd I'm your Mars\\nAnd we've passed the moon and stars\\nAnd I'm gone\\n[Hook 2]\\nBut now I'm high as a kite\\nAnd I know I might be gone\\nWhen you get home\\nI'm high as a kite\\nAnd I know I'm almost gone\\nWhen you get home [Outro]\\nSo please come home\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 5,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called A Different Way with the following description: DJ Snake premiered this single during a historic livestream where he became the first artist to perform on top of Paris' Arc de Triomphe. This is Snake\\u2019s first solo single following the release of his debut album, Encore. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Lauv]\\nCould you believe? I could be different\\nI'll be the difference, I'll lift you high\\nAnd I understand your hesitation\\nMy reputation, it's no surprise\\n[Pre-Chorus: Lauv]\\nSo let me redefine you\\nAnd you can see the tide move\\nJust like tears in the eyes do\\nAnd when you're feeling alone\\nOh, baby, I'll be right here\\nBetween the sea and silence\\nSo breathe easy my dear\\nYou can find sunshine in the rain\\n[Chorus: Lauv]\\nI will come running when you call my name\\nEven a broken heart can beat again\\nForget about the one who caused you pain\\nI swear I'll love you in a different way\\n[Drop]\\n[Verse 2: Lauv]\\nI know that love is so unforgiving\\nYou've been a victim too many times\\nAnd I'll be the thread, hold you together\\nI'll be forever, will you be mine? [Pre-Chorus: Lauv]\\nSo let me redefine you\\nAnd you can see the tide move\\nJust like tears in the eyes do\\nAnd when you're feeling alone\\nOh, baby, I'll be right here\\nBetween the sea and silence\\nSo breathe easy my dear\\nYou can find sunshine in the rain\\n[Chorus: Lauv]\\nI will come running when you call my name\\nEven a broken heart can beat again\\nForget about the one who caused you pain\\nI swear I'll love you in a different way\\n[Post-Chorus: Lauv]\\nHey, hey, hey\\nI swear I'll love you in a different way\\nHey, hey, hey\\nI swear I'll love you in a different way\\n[Drop]\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 6,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Afire Love with the following description: Ed wrote this song about his grandfather\\u2019s death, and how he wished he\\u2019d known him better.\\nIn \\u201cSupermarket Flowers\\u201d, Ed talks about the death of his grandmother. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nThings were all good yesterday\\nAnd then the devil took your memory\\nAnd if you fell to your death today\\nI hope that Heaven is your restin' place\\nI heard the doctors put your chest in pain\\nBut then that could've been the medicine\\nAnd now you're lyin' in the bed again\\nEither way, I'll cry with the rest of them\\n[Pre-Chorus]\\nAnd my father told me, \\\"Son\\nIt's not his fault he doesn't know your face\\nAnd you're not the only one\\\"\\nAlthough my grandma used to say\\nThat he used to sing\\n[Chorus]\\nDarlin', hold me in your arms the way you did last night\\nAnd we'll lie inside for a little while here, oh\\nI could look into your eyes until the sun comes up\\nAnd we're wrapped in light, in life and love\\nPut your open lips on mine and slowly let them shut\\nFor they're designed to be together, oh\\nWith your body next to mine, our hearts will beat as one\\nAnd we're set alight, we're afire love [Post-Chorus]\\nLove, love\\n[Verse 2]\\nAnd things were all good yesterday\\nBut then the devil took your breath away\\nAnd now, we're left here in the pain\\nBlack suit, black tie, standin' in the rain\\nAnd now, my family is one again\\nStapled together with the strangers and a friend\\nCame to my mind, I should paint it with a pen\\nSix years old, I remember when\\n[Pre-Chorus]\\nMy father told me, \\\"Son\\nIt's not his fault he doesn't know your face\\nAnd you're not the only one\\\"\\nAlthough my grandma used to say\\nThat he used to sing\\n[Chorus]\\nDarlin', hold me in your arms the way you did last night\\nAnd we'll lie inside for a little while here, oh\\nI could look into your eyes until the sun comes up\\nAnd we're wrapped in light, in life and love\\nPut your open lips on mine and slowly let them shut\\nFor they're designed to be together, oh\\nWith your body next to mine, our hearts will beat as one\\nAnd we're set alight, we're afire love [Post-Chorus]\\n(Ah-ooh) Love, love\\n(Ah-ooh) See the love, the love, the love, the love\\n(Ah-ooh) See the love, the love, the love, the love\\n(Ah-ooh) See the love, the love, the love, the love\\n[Bridge]\\nAnd my father and all of my family\\nRise from their seats to sing \\\"Hallelujah\\\"\\nAnd my brother and all of my family\\nRise from their seats to sing \\\"Hallelujah\\\"\\nAnd my brother and all of my family\\nRise from their seats to sing \\\"Hallelujah\\\"\\n(And all my brothers and my sisters, yeah)\\nAnd my father and all of my family (Ah)\\nRise from their seats to sing \\\"Hallelujah\\\"\\n[Outro]\\n(Ah-ooh)\\n(Ah-ooh) See the love, the love, the love, the love\\n(Ah-ooh) See the love, the love, the love, the love\\n(Ah-ooh) See the love, the love, the love, the love\\n(Ah-ooh, ah-ooh)\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 7,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Afterglow with the following description: \\u201cAfterglow\\u201d is the first solo single released by English singer and songwriter Ed Sheeran since the release of Divide in 2017. It is confirmed that \\u201cAfterglow\\u201d will not be featured on his upcoming albums.\\nThe song is an acoustic mellow ballad about his wife, Cherry Seaborn Sheeran. In the song, Ed talks about living the moment with her who he wants to live all the days out with. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\n(One, two)\\n[Verse 1]\\nStop the clocks, it's amazing\\nYou should see the way the light dances off your hair\\nA million colours of hazel, golden, and red\\nSaturday morning is fading\\nThe sun's reflected by the coffee in your hand\\nMy eyes are caught in your gaze all over again\\n[Pre-Chorus]\\nWe were love-drunk, waiting on a miracle\\nTryna find ourselves in the winter snow\\nSo alone in love like the world had disappeared\\nOh, I won't be silent and I won't let go\\nI will hold on tighter 'til the afterglow\\nAnd we'll burn so bright 'til the darkness softly clears\\n[Chorus]\\nOh, I will hold on to the afterglow\\nOh, I will hold on to the afterglow\\n[Verse 2]\\nThe weather outside's changing\\nThe leaves are buried under six inches of white\\nThe radio is playing Iron & Wine\\nThis is a new dimension\\nThis is a level where we're losing track of time\\nI'm holding nothing against it, except you and I [Pre-Chorus]\\nWe were love-drunk, waiting on a miracle\\nTryna find ourselves in the winter snow\\nSo alone in love like the world had disappeared\\nOh, I won't be silent and I won't let go\\nI will hold on tighter 'til the afterglow\\nAnd we'll burn so bright 'til the darkness softly clears\\n[Chorus]\\nOh, I will hold on to the afterglow\\nOh, I will hold on to the afterglow\\nOh, I will hold on to the afterglow\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 8,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called All About It with the following description: \\u201cAll About It\\u201d is Hoodie Allen\\u2019s single from his debut full length album, People Keep Talking. Hoodie teamed up with his good friend Ed Sheeran to create this hit after a Taylor Swift concert. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro: Ed Sheeran]\\nOh-oh-oh-oh-oh, no oh-oh-oh-oh\\nSaid I'm all about it\\n[Chorus: Hoodie Allen]\\n'Cause I got soul and I won't quit\\nAnd your dad don't like it when I talk my shit\\n'Cause I'm all about it baby\\nI'm all about it baby\\nStaying up late just to pass the time\\nAnd your parents don\\u2019t like it when you out getting high\\nBut I'm all about it baby\\nI'm all about it baby\\n[Verse 1: Ed Sheeran]\\nI'm not a rapper just a singer with a game plan\\nI play guitar no need to worry 'bout my Drake hand\\n80,000 people in front of the stage, damn\\nWaiting for the sun to shine just to rock these Ray Bans\\nI just wanna leak shit (what?)\\nNot literally leak shit\\nWanna push the music through the speakers\\nDouble shot glass, I'm in the back of the pub\\nMy mate Jason at the bar screaming \\\"Who want what?\\\"\\nNow, please be warned\\nThat every song I feature on has capacity to be reborn\\nI said that anything can happen when I pick up a pen\\nBut now I'm all about love so won't you say it again\\nI said I used to be the shy type\\nBackpack on my back on public transport sort of guy type\\nNow I'm in the limelight\\nTryna get my mind right\\nBody clock is in the clouds so often guess it's high time\\nHoodie sing the line like [Chorus: Hoodie Allen]\\n'Cause I got soul and I won't quit\\nAnd your dad don't like it when I talk my shit\\n'Cause I'm all about it baby\\nI'm all about it baby\\nStaying up late just to pass the time\\nAnd your parents don\\u2019t like it when you out getting high\\nBut I'm all about it baby\\nI'm all about it baby\\n[Verse 2: Hoodie Allen]\\nI'm not a singer, I just rap pretty\\nSo now my fan base is full of Megan's and Ashley's\\nAnd they're wondering if there's room for them to get in my bus\\nAnd I'm like, \\\"Naturally, baby, let me find a spot in the front\\\"\\nFor you, and for your friends\\nYou can be mine, we can pretend\\nOh, typical rapper actin' a typical fashion\\nI'm doing something that's different\\nI'm tryin' to Paula my patent\\nThe young prince of Manhattan, now everybody believe it\\nAdrien Broner the way I'm ducking and weaving\\nWe go together like interceptions and Revis\\nShe said the only rapper she lovin' is Yeezus\\n[Bridge: Hoodie Allen]\\nOne for the money\\nTwo people since the beginning\\nThree million records get sold and now everybody is winning\\nI'm Larry David plus Miles Davis\\nSo, everybody hating and fuck it, I hardly blame 'em [Chorus: Hoodie Allen]\\n'Cause I got soul and I won't quit\\nAnd your dad don't like it when I talk my shit\\n'Cause I'm all about it baby\\nI'm all about it baby\\nStaying up late just to pass the time\\nAnd your parents don\\u2019t like it when you out getting high\\nBut I'm all about it baby\\nI'm all about it baby\\n[Outro: Ed Sheeran]\\nAnd they don't know anything about us\\nOr anything about us\\nOr anything about it\\nNo, no, no\\nAnd they don't know anything about us\\nOr anything about us\\nOr anything about it\\nNo, no, no\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 9,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called (All Along The) Watchtower with the following description: A collaboration between Dagenham based grime artist Devlin and singer-songwriter Ed Sheeran. Samples Jimi Hendrix\\u2019s cover of Bob Dylan\\u2019s \\u201cAll Along The Watchtower\\u201d.\\n Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro: Ed Sheeran]\\n\\\"There must be some way out of here,\\\"\\nSaid the joker to the thief\\nThere's too much confusion\\nMmm I can't get no relief\\nThis is Monday, drink more wine\\nCome man dig my earth\\nNone will never lone the line\\nNo one out of this earth\\n[Verse 1: Devlin]\\nYeah\\nI see jokers on my left, thieves upon my right\\nYou\\u2019d find me in the middle if I picked a different life\\nBefore my name started tripling in size\\nBut I\\u2019m still showing signs all attributed to mine\\nIn the pitch black, it\\u2019s too cold\\nI\\u2019m all alone take me back to the roads\\nI had to roam to get here and I\\u2019ll hitch back\\nGet a cab to my mother\\u2019s house\\nSee my old man and grab a six pack\\nTell my brother I love him\\nAnd give him something that will see him through the hard times\\nWhat\\u2019s a brother for?\\nWhen I\\u2019m sick of this life I see\\nIt has to be my family who lift me off the floor\\nMake sense of all the madness in a world full of money\\nFull of tears, full of war\\nI was a ploughman and worked from the earth up\\nSave your wine for the entrepreneurs [Hook: Ed Sheeran & (Devlin in brackets)]\\nWell all along the watchtower\\nPrinces kept the view\\nWhile all the women came and went\\nBarefoot servants, too, yeah\\nOutside in the cold distance\\nA wildcat did growl (Like a ground man I worked from the earth up)\\nTwo riders were approaching\\nAnd the wind begins to howl (Cause your world is the same as mine)\\n[Verse 2: Devlin]\\nPour more blood in your cup\\nTake a sip full of sin and let your taste buds savour the buzz\\nThe flavour of an ill-mannered \\nnature\\nThat lingers on as animals in all of us\\nTrying to fight for the right to live a life\\nBut some will never win though\\nThat\\u2019s why they live a lie\\nI don\\u2019t think I\\u2019ll ever win\\nAll of this is anything\\nWhen I die I hope a brother\\u2019s at my side\\nThere\\u2019s no trap door, or get out clause\\nThe world can be your oyster or a set of jail doors\\nYou\\u2019ve seen mine, I think it\\u2019s time I see yours\\nI bet you that we\\u2019ve been scarred by the same swords\\nSo we are not so unalike\\nApart from the fact I live my life in the light and now I\\u2019m trapped in it\\nThe way I feel within a few years time\\nI might have a couple kids and just forget I ever wrote lyrics [Hook: Ed Sheeran]\\nWell all along the watchtower\\nPrinces kept the view\\nWhile all the women came and went\\nBarefoot servants, too, yeah\\nOutside in the cold distance\\nA wildcat did growl\\nTwo riders were approaching\\nAnd the wind begins to howl\\n[Verse 3: Devlin]\\nTake away the treasure of a man\\nConvinced that he holds heaven in his hands\\nEven though I ain\\u2019t religious I\\u2019m a little superstitious\\nMaybe there is a promised land\\nBut will I make it or not is a different matter\\nI\\u2019ve been a joker, I\\u2019ve been a thief\\n, I\\u2019ve been a rapper\\nI\\u2019ve been the only enemy that I can never beat\\nGive me a piece of mind upon a platinum platter\\n[Hook: Ed Sheeran]\\nWell all along the watchtower\\nPrinces kept the view (whoa)\\nWhile all the women came and went\\nBarefoot servants, too, yeah\\nOutside in the cold distance\\nA wildcat did growl\\nTwo riders were approaching\\nAnd the wind began to howl\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 10,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Amsterdam (Sweet Mary Jane) with the following description: When Ed Sheeran was performing at Forest Hills Stadium, Queens, New York on May 29, 2015, he revealed a new song called \\u201cSweet Mary Jane\\u201d\\nhttps://www.youtube.com/watch?v=kO5-CLNJxCo Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nI woke up early looking out my window\\nAt the Amsterdam sky\\nOh baby I was high last night\\nCaf\\u00e9 clouds and red lights\\nWhen I gotcha in mind\\nYou slowed down time\\nOh baby I was out of my mind\\nSing a song cover and hold me tight\\n[Pre-Hook]\\nI drill you deep into my chest\\nThat\\u2019s where it feels the best\\nYou can remove all the scars\\nStop them from breaking my heart\\nBeen on a hurting spree\\nThat brought out the worst in me\\nCause I don't want to be alone\\n[Hook]\\nCause everyday that I'm breathing I think you are the one\\nI love the way that your sweet words just roll off of my tongue\\nFeel the flame of your wisdom and fill up my lungs\\nSweet Mary Jane won\\u2019t you sing me another song\\n[Verse 2]\\nCaf\\u00e9 clouds and shooting stars are floating across the sky\\nOh baby what a beautiful sight\\nBut we're only satellites\\nOh di ba di ba oh la lights\\nOh baby I am so damn high\\nHave you seen my eyes [Pre-Hook]\\nWith the beat beat of my heart\\nYou take me back to the start\\nWhere everything began\\nHolding you inside my hands\\nBetween my fingers and thumb\\nI seal you in with my tongue\\nCause I don't want to be alone\\n[Hook]\\nCause everyday that I'm breathing I think you are the one\\nI love the way that your sweet words just roll off of my tongue\\nFeel the flame of your wisdom and fill up my lungs\\nSweet Mary Jane won\\u2019t you sing me another song\\n[Break]\\nNa na na na na Sweet Mary Jane\\nNa na na na na Sweet Mary Jane\\nNa na na na na Sweet Mary Jane\\nNa na na na na Sing another song\\n[Bridge]\\nMary Jane\\nI've been hoping alone\\nMary Jane\\nSince you came along\\nMary Jane\\nI'm almost home\\nMary Jane\\nSing another song [Hook]\\nCause everyday that I'm breathing I think you are the one\\nI love the way that your sweet words just roll off of my tongue\\nFeel the flame of your wisdom and fill up my lungs\\nSweet Mary Jane won't you sing me another song\\n[Hook]\\nCause everyday that I\\u2019m breathing, sweet mary jane\\nI love the sound of your sweet words, sweet mary jane\\nFeel the flame of your wisdom and fill up my lungs\\nSweet Mary Jane won\\u2019t you sing me another song\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 11,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Antisocial with the following description: \\u201cAntisocial\\u201d marks the first collaboration between Ed Sheeran and Travis Scott and the sixth single for Ed\\u2019s No.6 Collaborations Project. It was first teased via an Instagram post by engineer Tre Nagella on October 31, 2018. The track introspectively delves into their \\u201cantisocial\\u201d personalities and describe their desire for keeping their lives private. The music video directed by Dave Meyers debuted on July 12, 2019.\\nBetween March and its eventual release, the song suffered from multiple leaks, originally under the name \\u201cDon\\u2019t Touch Me.\\u201d These earlier versions of the song featured an extended outro that was cut from the final release; Travis could also be heard on the chorus. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro: Grandmaster Flash]\\nAll you cool people, you better leave now\\n'Cause it's about to happen\\n[Verse 1: Ed Sheeran & \\nTravis Scott\\n]\\nFriday night and I'm ridin' solo (\\nYeah\\n)\\nWhen I touch down, keep it on the low-low (\\nIt's lit!\\n)\\nI don't mess with your energy (\\nNah\\n), no photos (\\nAyy\\n)\\nSo antisocial, but I don't care (\\nAyy\\n)\\nDon't give a damn, I'm gonna smoke here (\\nAyy, pop it\\n)\\nGot a bottle in my hand, bring more though (\\nAyy, pop it, pop it\\n)\\nGot my hat low, don't talk to me (\\nStraight up!\\n)\\n[Pre-Chorus: Ed Sheeran & \\nTravis Scott\\n]\\nI've been down, give me some space\\nYou don't know what's in my brain\\nMusic loud, easin' my pain\\nYeah, yeah, yeah, yeah\\n[Chorus: Ed Sheeran & \\nTravis Scott\\n]\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night (\\nStraight up\\n)\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night, yeah [Verse 2: Travis Scott & \\nEd Sheeran\\n]\\nI need room, I need room\\nWhere you standin' way too close\\nYou might catch fumes, might catch fumes\\nWhen I zoom (Pew), when I zoom\\nPass out, wake up by myself right past noon\\nRight past noon, then I'm doomed\\nOccupied and movin' dolo\\n (Ooh, yeah)\\nHennessy's drownin' all of my issues (Drown)\\nRight before I leave, she give me more than just a \\\"miss you\\\" (Yeah)\\nThat thing got more back, just like my engine, I can hit it\\n(In the boy) Seen a vision in the boy, then we committed (It's lit!)\\n[Pre-Chorus: Travis Scott]\\nI've been lost out inner space\\nYou left me right in my place\\nI put you down on my name\\nYeah, yeah, yeah, yeah\\n[Chorus: Ed Sheeran & \\nTravis Scott\\n]\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night (\\nStraight up\\n)\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night [Outro: Travis Scott]\\nDon't touch me, yeah\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 12,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Antisocial (Demo) with the following description: \\u201cAntisocial\\u201d is a collaborative effort between Ed Sheeran and Travis Scott that appears on Ed\\u2019s 2019 No.6 Collaborations Project. Prior its release, the song suffered multiple leaks in different iterations, with this initial demo leaking in March 2019. This demo notably features an extended chopped outro that was removed from the final as Travis wasn\\u2019t fond of it, as well as a less-developed instrumental.\\nAn alternate demo with a slightly different outro and Travis on the chorus (see the annotations) leaked online on July 12, 2020. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro: Grandmaster Flash]\\nAll you cool people better leave now\\n'Cause it's about to happen\\n[Verse 1: Ed Sheeran & \\nTravis Scott\\n]\\nFriday night and I'm ridin' solo (\\nYeah\\n)\\nWhen I touch down, keep it on the low-low (\\nIt's lit\\n)\\nI don't mess with your energy (\\nNah\\n), no photos (\\nAyy\\n)\\nSo antisocial, but I don't care (\\nAyy\\n)\\nDon't give a damn, I'm gonna smoke here (\\nAyy\\n, \\npop it\\n)\\nGot a bottle in my hand, bring more though (\\nAyy\\n, \\npop it, pop it\\n)\\nGot my hat low, don't talk to me (\\nStraight up\\n)\\n[Pre-Chorus: Ed Sheeran]\\nI've been down, give me some space\\nYou don't know what's in my brain\\nMusic loud, easin' my pain\\nYeah, yeah, yeah, yeah\\n[Chorus: Ed Sheeran & Travis Scott, \\nEd Sheeran\\n, \\nTravis Scott\\n]\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night, yeah\\n (\\nStraight up\\n)\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night, yeah [Verse 2: Travis Scott]\\nI need room, I need room\\nWhere you standin' way too close\\nYou might catch fumes, might catch fumes\\nWhen I zoom (Pew), when I zoom (Pew)\\nPass out, wake up by myself right past noon (Yeah)\\nRight past noon, then I'm doomed\\nOccupied by movin' dolla (Ooh, yeah)\\nHennessy's drownin' all of my issues (Drown)\\nRight before I leave, she give me more than just a \\\"miss you\\\" (Yeah)\\nThat thing got more back, just like my engine, I can hit it (In the boy)\\nSeen a vision in the boy, then we committed (It's lit)\\n[Pre-Chorus: Travis Scott]\\nI've been lost out inner space\\nYou left me right in my place\\nI put you down on my name\\nYeah, yeah, yeah, yeah\\n[Chorus: Ed Sheeran & Travis Scott, \\nEd Sheeran\\n, \\nTravis Scott\\n]\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night, yeah\\n (\\nStraight up\\n)\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nOn something, on something\\nOn something, I wanna riot\\nDon't touch me, don't touch me\\nDon't touch me, I came to vibe, yeah\\nWon't let nothing come in between me and the night, yeah [Segue: Travis Scott]\\nDon't touch me, yeah\\n[Chopped Segment: Travis Scott & \\nEd Sheeran\\n]\\nI need, I need, I need, I need\\nI need, I need, I need, I need room (Yah, drank)\\nI need, I need, I need room, I-I-I-I need\\nDon't give a damn, don't give a damn, I'm gonna smoke here\\n (Yeah)\\nI need, I need, I need room, I-I-I-I need\\nSo antisocial, but I don't care\\n (Yeah)\\nI need, I need, I need room, I-I-I-I need (Yah)\\nSo antisocial\\n (It's lit)\\n[Outro: Travis Scott]\\nAhh, yeah, yeah, yeah\\nOoh, woah\\nYeah, ooh, woah\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 13,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Anywhere / Your Song / For You (Medley) (Live at the BRITs) with the following description: \\u201cAnywhere / Your Song / For You\\u201d is a medley performed by Rita Ora at the 2018 Brit Awards on January 21st, 2018, with guest vocals from Liam Payne on the song \\u201cFor You\\u201d. The audio from the performance was officially released on iTunes after the performance aired.Expand Share Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"Your Song\\n[Verse 1]\\nI woke up with a fear this morning\\nBut I can taste you on the tip of my tongue\\nAlarm without no warning\\nYou\\u2019re by my side and we\\u2019ve got smoke in our lungs\\n[Pre-Chorus 1]\\nLast night we were way up, kissing in the back of the cab\\nAnd then you say, \\u201cLove, baby, let\\u2019s go back to my flat\\u201d\\nAnd when we wake up, never had a feeling like that\\nI got a reason, so man, put that record on again\\n[Chorus]\\nI don\\u2019t wanna hear sad songs anymore (oh)\\nI only wanna hear love songs\\nI found my heart up in this place tonight\\nDon\\u2019t wanna sing mad songs anymore\\nOnly wanna sing your song\\n\\u2019Cause your song\\u2019s got me feeling like I\\u2019m\\n[Post-Chorus]\\nI\\u2019m in love, I\\u2019m in love, I\\u2019m in love\\nYeah, you know, your song\\u2019s got me feeling like I\\u2019m Anywhere\\n[Intro]\\nTime, time, time, time..\\n[Verse 1]\\nTime flies by when the night is young\\nDaylight shines on an undisclosed location, location\\nBloodshot eyes looking for the sun\\nParadise delivered and we call it a vacation, vacation\\n[Pre-Chorus]\\nYou're painting me a dream that I\\nWanna belong in, wanna belong in\\n[Chorus]\\nOver the hills and far away\\nA million miles from L.A\\nJust anywhere away with you\\nI know we've got to get away\\nSomeplace where no one knows our name\\nWe'll find the start to something new\\nJust take me anywhere, take me anywhere\\nAnywhere away with you\\nJust take me anywhere, take me anywhere\\nAnywhere away with you [Post-Chorus]\\nFun, little less fun\\nLittle less, over, over, over, over, me\\nOh, fun, little less fun\\n(You take take me anywhere you wanna) Little less, over, over, over, over, me\\n[Bridge]\\nTake me anywhere\\nOh, anywhere\\nAnywhere away with you\\n[Post-Chorus]\\nFun, little less fun\\nLittle less, over, over, over, over, me\\n[Chorus]\\nTake me anywhere\\nOver the hills and far away\\nA million miles from L.A\\nJust anywhere away with you\\nI know we've got to get away\\nSomeplace where no one knows our name\\nOh, We'll find the start to something new\\nJust take me anywhere, take me anywhere\\nAnywhere away with you For You (feat. Liam Payne)\\n[Verse 1: Liam Payne]\\nSkin to skin\\nBreathe me in\\nFeel with your kiss on me\\nLips are made of ecstasy\\nI'll be yours for a thousand lives (for a thousand lives)\\n[Pre-Chorus: Liam Payne & Rita Ora]\\nI'm free as a bird when I'm flying in your cage (so lost)\\nI'm diving in deep and I'm riding with no brake\\nAnd I'm bleeding in love, you're swimming in my veins\\nYou've got me now (now now)\\n[Chorus: Liam Payne & Rita Ora]\\nBeen waiting for a lifetime for ya\\nBeen breaking for a lifetime for ya\\nWasn't looking for love 'til I found you (Ooh na-na, yea)\\nFor love, 'til I found you (oh)\\nBeen waiting for a lifetime for ya (oh, been waiting for love)\\nBeen breaking for a lifetime for ya\\nWasn't looking for love 'til I found you\\n(Ooh na-na, yea)\\nFor love, 'til I found you (oh)\\nOoh\\nWasn't looking for love 'til I found you (come on)\\nWasn't looking for love 'til I found you, oh\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 14,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Autumn Leaves with the following description: Ed Sheeran wrote this song about a dear friend that had passed away, and it is a bonus song on his debut album +. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nAnother day, another life\\nPasses by, just like mine\\nIt's not complicated (Oh)\\nAnother mind, another soul\\nAnother body to grow old\\nIt's not complicated\\n[Pre-Chorus]\\nAnd do you ever wonder if the stars shine out for you?\\n[Chorus]\\nFloat down like autumn leaves\\nHush now, close your eyes before the sleep\\nAnd you're miles away\\nAnd yesterday, you were here with me\\n[Verse 2]\\nOh, another tear, another cry\\nAnother place for us to die\\nIt's not complicated\\nAnother life that's gone to waste\\nAnother light lost from your face\\nIt's complicated\\n[Pre-Chorus]\\nIs it that it's over or do birds still sing for you? [Chorus]\\nFloat down like autumn leaves\\nAnd hush now, close your eyes before the sleep\\nAnd you're miles away\\nAnd yesterday, you were here with me\\n[Bridge]\\nOoh, how I miss you\\nMy symphony played the song that carried you out\\nAnd, ooh how I miss you\\nAnd I, I miss you and I wish you'd stay\\n[Pre-Chorus]\\nDo you ever wonder if the stars shine out for you?\\n[Chorus]\\nFloat down like autumn leaves\\nHush now, close your eyes before the sleep\\nAnd you're miles away\\nAnd yesterday, you were here with me\\n[Outro]\\nMmm, mmm, mmm, mmm\\nTouch down like a seven-four-seven\\nWe'll stay out and we'll live forever now\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 15,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Back At Home with the following description: \\u201cBack At Home\\u201d is an unreleased song by Ed Sheeran, which sees him spend quality time with his girlfriend rather than ruining the night at a party.\\nThough the song surfaced in its entirety on a leaking forum on January 31, 2021, it is unknown whether or not the song will see an official release. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nSaturday, me and my girlfriend are at a party in the West End\\nAnd I don't really know nobody here either\\nMaybe we should've stayed home\\nAnd turned down the lights so low\\nOpen up a [?] Bordeaux, mmm\\nAnd put on a jam so slow, so slow\\n[Pre-Chorus]\\nShe said, \\\"All the girls here are beautiful\\\"\\nBut baby, no one around comes close to you\\nAnd that's the honest truth\\nWhy are we even here?\\n'Cause all the boys got their eyes on you\\nFor the same reason that my eyes are too\\nAnd that's when she made her move\\nAnd whispered in my ear and said\\n[Chorus]\\nHey, let's leave this party (Hey-ey-ey-ey)\\nBack to my apartment (Hey-ey-ey-ey)\\nThere's no one here that I know\\nSo take my hand, I want to go\\nAnd get this party started back at home\\n[Verse 2]\\nI'm still here with my best friend and I'm not\\nDisappointed that the party\\nWe just can't fit in with the West End crowd\\nCan't even hear their conversations, so\\nBaby, let's hit the road and open up a [?] Margot, mmm\\nAnd put on a jam so slow, so slow [Pre-Chorus]\\nShe said, \\\"All the girls here are beautiful\\\"\\nBut baby, no one around comes close to you\\nAnd that's the honest truth\\nWhy are we even here?\\n'Cause all the boys got their eyes on you\\nFor the same reason that my eyes are too\\nAnd that's when she made her move\\nAnd whispered in my ear and said\\n[Chorus]\\nHey, let's leave this party (Hey-ey-ey-ey)\\nBack to my apartment (Hey-ey-ey-ey)\\nThere's no one here that I know\\nSo take my hand, I want to go\\nAnd get this party started back at home\\n[Post-Chorus]\\nCome on and get it started, yeah\\nCome on and get it started, no love (Mmm)\\nCome on and get it started, yeah\\nCome on and get it started, mmm\\n[Bridge]\\nTurned down the lights so low\\nAnd put on a jam so slow, so slow\\n'Cause all the people are beautiful\\nBut baby, no one around comes close to you\\nAnd that's the honest truth\\nWhisper in my ear, hey [Chorus]\\nHey, let's leave this party (Party, hey-ey-ey-ey)\\nBack to my apartment (Apartment, hey-ey-ey-ey)\\nThere's no one here that I know\\nSo take my hand, I want to go\\nAnd get this party started back at home\\n[Post-Chorus]\\nCome on and get it started, yeah\\nCome on and get it started, no love (Back at home)\\nCome on and get it (Back at home)\\n[Outro]\\nThere's no one here that I know\\nSo take my hand, I want to go\\nAnd get this party started back at home\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 16,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Bad Habits with the following description: On \\u201cBad Habits,\\u201d Ed Sheeran reflects on past habits of constant drinking and late night partying and what these actions tend to lead to. No matter how pure Ed\\u2019s intentions are at the start, the night brings out a different side of him that garners darker results.\\nThe vampire costume seen in the music video reflects the dark side of him and displays the \\u2018bad habits\\u2019 he carries with himself.\\nWith each song on this album representing a specific moment in his life, Ed noted that \\u201cBad Habits\\u201d derives from his desire to be fully present as a new father. Specifically, he wanted to curb habits of partying and drinking so that he could be ready to take his then-pregnant wife to the hospital whenever her water broke. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\n(One, two, three, four)\\nOoh, ooh\\n[Verse 1]\\nEvery time you come around, you know I can't say no\\nEvery time the sun goes down, I let you take control\\nI can feel the paradise before my world implodes\\nAnd tonight had something wonderful\\n[Chorus]\\nMy bad habits lead to late nights endin' alone\\nConversations with a stranger I barely know\\nSwearin' this'll be the last, but it probably won't\\nI got nothin' left to lose, or use, or do\\nMy bad habits lead to wide eyes starin' at space\\nAnd I know I lose control of the things that I say\\nYeah, I was lookin' for a way out, now I can't escape\\nNothin' happens after two, it's tru\\u0435, it's true\\nMy bad habits lead to you\\n[Post-Chorus]\\nOoh-ooh, ooh-ooh\\nMy bad habits lead to you\\nOoh-ooh, ooh-ooh\\nMy bad habits l\\u0435ad to you [Verse 2]\\nEvery pure intention ends when the good times start\\nFallin' over everything to reach the first time's spark\\nIt started under neon lights and then it all got dark\\nI only know how to go too far\\n[Chorus]\\nMy bad habits lead to late nights endin' alone\\nConversations with a stranger I barely know\\nSwearin' this'll be the last, but it probably won't\\nI got nothin' left to lose, or use, or do\\nMy bad habits lead to wide eyes starin' at space\\nAnd I know I lose control of the things that I say\\nYeah, I was lookin' for a way out, now I can't escape\\nNothin' happens after two, it's true, it's true\\nMy bad habits lead to you\\n[Post-Chorus]\\nOoh-ooh, ooh-ooh\\nMy bad habits lead to you\\nOoh-ooh, ooh-ooh\\n[Bridge]\\nWe took the long way 'round\\nAnd burned till the fun ran out, now [Chorus]\\nMy bad habits lead to late nights endin' alone\\nConversations with a stranger I barely know\\nSwearin' this'll be the last, but it probably won't\\nI got nothin' left to lose, or use, or do\\nMy bad habits lead to wide eyes starin' at space\\nAnd I know I lose control of the things that I say\\nYeah, I was lookin' for a way out, now I can't escape\\nNothin' happens after two, it's true, it's true\\nMy bad habits lead to you\\n[Post-Chorus]\\nOoh-ooh, ooh-ooh\\nMy bad habits lead to you\\nOoh-ooh, ooh-ooh\\nMy bad habits lead to you\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 17,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Bam Bam with the following description: Coming months after her breakup with Shawn Mendes, \\u201cBam Bam\\u201d is Camila Cabello\\u2019s anthem about moving on and accepting inevitability in losing a partner. Things change, and one can\\u2019t dwell on that for too long.\\nThe track was inspired by a saying of her mother, \\u201cAs\\u00ed e' la vida\\u201d (English: \\u201cThat\\u2019s how life is\\u201d). This saying is referenced in the chorus.\\nFeaturing \\u201cSouth of the Border\\u201d collaborator Ed Sheeran, \\u201cBam Bam\\u201d is the second promotional single for Camila Cabello\\u2019s third studio album, Familia.\\nBeginning February 21, 2022 when she first announced the song, Cabello teased multiple parts on TikTok. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Camila Cabello]\\nYou said you hated the ocean, but you're surfin' now\\nI said I'd love you for life, but I just sold our house\\nWe were kids at the start, I guess we're grown-ups now, mmm\\nCouldn't ever imagine even havin' doubts\\nBut not everything works out, no\\n[Pre-Chorus: Camila Cabello]\\nNow I'm out dancin' with strangers\\nYou could be casually datin'\\nDamn, it's all changin' so fast\\n[Chorus: Camila Cabello]\\nAs\\u00ed e' la vida, s\\u00ed\\nYeah, that's just life, baby\\nYeah, love came around and it knocked me down\\nBut I'm back on my feet\\nAs\\u00ed e' la vida, s\\u00ed\\nYeah, that's just life, baby\\nI was barely standin', but now I'm dancin'\\nHe's all over me (Goza)\\n[Post-Chorus: Camila Cabello]\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam (As\\u00ed e' la vida)\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam [Verse 2: Ed Sheeran]\\nIt's been a hell of a year, thank God we made it out\\nYeah, we were ridin' a wave and trying not to drown\\nAnd on the surface, I held it together\\nBut underneath, I sorta came unwound\\nWhere would I be? You're all that I need\\nMy world, baby, you hold me down\\nYou always hold me down\\n[Pre-Chorus: Ed Sheeran, \\nEd Sheeran & Camila Cabello\\n]\\nWell, I've been the \\nbreaker and broken\\nEvery mis\\ntake turned to moments\\nWouldn't take anything back\\n[Chorus: Both, \\nCamila Cabello\\n & \\nEd Sheeran\\n]\\nAs\\u00ed e' la vida, s\\u00ed (\\nAs\\u00ed e'\\n)\\nYeah, that's just life, baby\\nYeah, love came around and it knocked me down\\nBut I'm back on my feet\\nAs\\u00ed e' la vida, s\\u00ed\\nYeah, that's just life, baby\\nI was barely standin', but now I'm dancin'\\nShe's all over me\\n (\\nHe's all over me\\n)\\n[Post-Chorus: Camila Cabello & Ed Sheeran, \\nCamila Cabello\\n]\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam (\\nAh\\u00ed, ah\\u00ed\\n)\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam, bam-bam\\nBa-da, bam-bam-bam-bam\\n(\\n\\u00a1P\\u00f3nganle az\\u00facar, mi gente!\\n) [Bridge: Camila Cabello & \\nEd Sheeran\\n]\\nY sigue bailando, hey\\nY sigue bailando, a-ha\\n(\\nKeep dancin', yeah\\n)\\nY sigue bailando\\n(\\nKeep dancin', yeah\\n)\\nY sigue bailando (\\nHey\\n), a-ha (\\nHay amor en todos lados\\n)\\nY sigue bailando (\\nKeep dancin', yeah\\n) (\\nSigue, sigue, sigue bailando\\n)\\nY sigue bailando (\\nHey\\n) (\\nHay amor en todos lados\\n)\\nY sigue bailando, woah (\\nSigue, sigue, sigue bailando\\n)\\n[Chorus: Camila Cabello, \\nCamila Cabello & Ed Sheeran\\n]\\nAs\\u00ed e' la vida, s\\u00ed\\nYeah, that's just life, baby\\nYeah, love \\ncame around\\n and it \\nknocked me down\\nBut I'm back on my feet\\nAs\\u00ed e' la vida, s\\u00ed\\nYeah, \\nthat's just life, baby\\nI was barely standin', but now I'm dancin'\\nShe's all over me\\n (\\nHey, hey\\n)\\n[Outro: Camila Cabello & \\nEd Sheeran\\n]\\nNow I, now I'm dancin' (\\nKeep dancin', yeah\\n)\\nNow I, now I'm dancin' (\\nKeep dancin', yeah\\n)\\nNow I, now I'm dancin' (\\nKeep dancin', yeah\\n)\\n(Ba-da, bam, bam, bam, bam, bam, bam)\\nAnd now I'm dancin' (\\nKeep dancin', yeah\\n)\\nNow I'm dancin' (\\nKeep dancin', yeah, yeah, yeah, yeah\\n)\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 18,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Barcelona with the following description: \\u201cBarcelona\\u201d is an ode to the great Spanish city\\u2019s vibrant history and culture. Ed makes reference to historic sites such as La Ramblas and the La Sagrada Familia, as well as Spain\\u2019s most popular export, Sangria. He performs most of the third verse in Spanish. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nWell, get up, up on the dancefloor tonight\\nI've got two left feet\\n and a bottle of red wine\\nMaking me feel like the beat and the bassline\\nAre in my blood, both hands up on her waistline\\nGet on up, baby, dance to the rhythm of the music\\nDon't care what the DJ chooses\\nGet lost in the rhythm of me\\nPlace don't close until we wanna leave it\\n[Pre-Chorus]\\nAnd you and I, we're flying on an aeroplane tonight\\nWe're going somewhere where the sun is shining bright\\nJust close your eyes\\nAnd let's pretend we're dancing in the street\\n[Chorus]\\nIn Barcelona\\nBarcelona\\nBarcelona\\nBarcelona\\n[Verse 2]\\nWell, get up, up on the dancefloor, move, it's a Saturday night\\nI fell in love with the sparkle in the moonlight\\nReflected in your beautiful eyes\\nI guess that is destiny doing it right\\nAnd dance like they do in the Mediterranean\\nSpin you around me again and again, and\\nYou're like something that God has sent me\\nI want you, baby, solamente [Pre-Chorus]\\nAnd you and I, we're flying on an aeroplane tonight\\nWe're going somewhere where the sun is shining bright\\nJust close your eyes\\nAnd let's pretend we're dancing in the street\\n[Chorus]\\nIn Barcelona\\nBarcelona\\nBarcelona\\nBarcelona\\nBarcelona\\nBarcelona\\nOh, Barcelona\\nSo let's pretend we're dancing in the street\\nIn Barcelona\\n[Outro]\\nLas Ramblas, I'll meet you\\nWe'll dance around La Sagrada Familia (Barcelona)\\nDrinking Sangr\\u00eda\\nMi ni\\u00f1a, te amo, mi cari\\u00f1o (Barcelona)\\nMamacita, rica\\nS\\u00ed, t\\u00fa, te adoro, se\\u00f1orita (Barcelona)\\nNosotros, vivir la vida\\nCome on, let's be free in Barcelona\\nLas Ramblas, I'll meet you\\nCome on and dance with me in Barcelona\\nDrinking Sangr\\u00eda\\nI just want to be in Barcelona\\nMamacita, rica\\nFeel that summer breeze in Barcelona\\nNosotros, viva la vida\\nSiempre vida, Barcelona\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 19,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Beautiful People with the following description: \\u201cBeautiful People\\u201d is the third promotional single from Ed Sheeran\\u2019s No.6 Collaborations Project. The track is about remaining true to yourself and not trying to become one of those so-called \\u201cbeautiful people\\u201d obsessed with material things and stature.\\nIt opens with pretty vocal harmonies: \\u201cWe are, we are, we are\\u201d floats over a winsome melody and handclap-enhanced rhythms. Sheeran and Khalid each sing a verse about uncomfortable social situations, where a person can feel \\u201csurrounded but still alone.\\u201d \\u201cWe don\\u2019t fit in well/We are just ourselves.\\\"\\nSheeran shared a short clip via Instagram on June 27, 2019, letting fans know that the video will drop at 3 a.m. ET Friday, three hours after the song\\u2019s midnight release. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro: Ed Sheeran]\\nWe are, we are, we are\\n[Verse 1: Ed Sheeran]\\nL.A. on a Saturday night in the summer\\nSundown and they all come out\\nLamborghinis and their rented Hummers\\nThe party's on, so they're headin' downtown ('Round here)\\nEverybody's lookin' for a come up\\nAnd they wanna know what you're about\\nMe in the middle with the one I love and\\nWe're just tryna figure everything out\\n[Pre-Chorus: Ed Sheeran]\\nWe don't fit in well 'cause we are just ourselves\\nI could use some help gettin' out of this conversation, yeah\\nYou look stunning, dear, so don't ask that question here\\nThis is my only fear: that we become\\n[Chorus: Ed Sheeran]\\nBeautiful people\\nDrop top, designer clothes\\nFront row at fashion shows\\n\\\"What d'you do?\\\" and \\\"Who d'you know?\\\"\\nInside the world of beautiful people\\nChampagne and rolled-up notes\\nPrenups and broken homes\\nSurrounded, but still alone\\nLet's leave the party [Post-Chorus: Ed Sheeran]\\nThat's not who we are (We are, we are, we are)\\nWe are not beautiful\\nYeah, that's not who we are (We are, we are, we are)\\nWe are not beautiful (Beautiful)\\n[Verse 2: Khalid]\\nL.A., mmm\\nDrove for hours last night and we made it nowhere (Nowhere, nowhere)\\nI see stars in your eyes when we're halfway there (All night)\\nI'm not fazed by all them lights and flashin' cameras\\n'Cause with my arms around you, there's no need to care\\n[Pre-Chorus: Khalid]\\nWe don't fit in well, we are just ourselves\\nI could use some help gettin' out of this conversation, yeah\\nYou look stunning, dear, so don't ask that question here\\nThis is my only fear: that we become\\n[Chorus: Ed Sheeran]\\nBeautiful people\\nDrop top, designer clothes\\nFront row at fashion shows\\n\\\"What d'you do?\\\" and \\\"Who d'you know?\\\"\\nInside the world of beautiful people\\nChampagne and rolled-up notes\\nPrenups and broken homes\\nSurrounded, but still alone\\nLet's leave the party [Post-Chorus: Ed Sheeran, \\nBoth\\n, \\nKhalid\\n]\\nThat's not who \\nwe are\\n (We are, we are, we are)\\nWe are not beautiful, \\nyeah\\nYeah, that's not who \\nwe are\\n (We are, we are, we are)\\nWe are not beautiful (Beautiful)\\n[Outro: Ed Sheeran]\\nWe are, we are, we are\\nWe are not beautiful\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 20,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Beautiful People (Acoustic) with the following description: \\u201cBeautiful People (Acoustic)\\u201d is a completely solo rendition of Ed Sheeran\\u2019s 2019 single \\u201cBeautiful People,\\u201d which features Khalid.\\nThis song takes after the original, with the same lines about mocking the rich people, but having a significant other that focuses on being rich.\\nSheeran surprised fans just a day before this rendition\\u2019s release on social media:\\nThe acoustic version of Beautiful People is out now everywhere. Link in bio to buy it and stream it. Tell your mum x\\n Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nL.A. on a Saturday night in the summer\\nSundown and they all come out\\nLamborghinis and their rented Hummers\\nThe party's on, so they're headin' downtown\\nEverybody's lookin' for a come up\\nAnd they wanna know what you're about\\nMe in the middle with the one I love and\\nWe're just tryna figure everything out\\n[Pre-Chorus]\\nWe don't fit in well 'cause we are just ourselves\\nI could use some help gettin' out of this conversation, yeah\\nYou look stunning, dear, so don't ask that question here\\nThis is my only fear: that we become\\n[Chorus]\\nBeautiful people\\nDrop top, designer clothes\\nFront row at fashion shows\\n\\\"What d'you do?\\\" and \\\"Who d'you know?\\\"\\nInside the world of beautiful people\\nChampagne and rolled-up notes\\nPrenups and broken homes\\nSurrounded, but still alone\\nLet's leave the party [Post-Chorus]\\nThat's not who we are (We are, we are, we are)\\nWe are not beautiful\\nYeah, that's not who we are (We are, we are, we are)\\nWe are not beautiful\\n[Verse 2]\\nMmm, L.A. drove for hours last night and we made it nowhere\\nI see stars in your eyes when we're halfway there\\nI'm not fazed by all them lights and flashin' cameras\\n'Cause with my arms around you, there's no need to care\\n[Pre-Chorus]\\nWe don't fit in well, cause we are just ourselves\\nI could use some help gettin' out of this conversation, yeah\\nYou look stunning, dear, so don't ask that question here\\nThis is my only fear: that we become\\n[Chorus]\\nBeautiful people\\nDrop top, designer clothes\\nFront row at fashion shows\\n\\\"What d'you do?\\\" and \\\"Who d'you know?\\\"\\nInside the world of beautiful people\\nChampagne and rolled-up notes\\nPrenups and broken homes\\nSurrounded, but still alone\\nLet's leave the party [Post-Chorus]\\nThat's not who we are (We are, we are, we are)\\nWe are not beautiful, yeah\\nYeah, that's not who we are (We are, we are, we are)\\nWe are not beautiful\\n[Outro]\\nWe are, we are, we are\\nWe are not beautiful\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 21,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called B\\u0119d\\u0119 raperem with the following description: Lu\\u017any kawa\\u0142ek od Czeskiego zapowiadaj\\u0105cy serie takich\\u017ce numer\\u00f3w.\\nZNAJDZIECIE NAS R\\u00d3WNIE\\u017b NA INSTAGRAMIE!\\n\\nRap Genius dla Pocz\\u0105tkuj\\u0105cych?\\nJak korzysta\\u0107 z Rap Genius?Jak tworzy\\u0107 w\\u0142asne adnotacje?Expand Share Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Refren]\\nUbzdura\\u0142em sobie \\u017ce b\\u0119d\\u0119 artyst\\u0105\\nLecz to wszystko chyba by\\u0142o jak\\u0105\\u015b fikcj\\u0105\\nPis jo\\u0142 dzi\\u015b m\\u00f3wi\\u0119 jak eldoka\\nI wcale nie licz\\u0119 \\u017ce ktokolwiek to pokocha\\nUbzdura\\u0142em sobie \\u017ce b\\u0119d\\u0119 raperem\\n\\u017be nied\\u0142ugo Bentleym sobie wjad\\u0119 na teren\\nZrobi\\u0119 karier\\u0119 jak Fifty czy 2pac\\nI b\\u0119d\\u0119 liczy\\u0142 zyski na ods\\u0142uchach\\n[Zwrotka 1]\\nZn\\u00f3w mnie niesie wyobra\\u017ania\\n\\u017be ca\\u0142a sala pe\\u0142na i ka\\u017cdy zaczyna klaska\\u0107\\nMarzenie si\\u0119 spe\\u0142nia i nie ko\\u0144czy na owacjach\\nBardzo fajnie \\u017ce pasja wyci\\u0105gn\\u0119\\u0142a z bagna mnie\\nA to bangla nie? i to ka\\u017cda wie\\nGdy si\\u0119 w majka dr\\u0119\\nPrawda jest niestety inna\\nWi\\u0119c wieszam na grze Psy jak Bogus\\u0142aw Linda\\nNagle widzisz \\u017ce to nie takie \\u0142atwe\\nW jednej chwili toniesz i chia\\u0142by\\u015b cho\\u0107by tratw\\u0119\\nPrzez to S.O.S. piszesz capsem\\nWyczuwasz frustracj\\u0119? bo zmarnowa\\u0142em szans\\u0119\\nJe\\u015bli mia\\u0142em j\\u0105 w og\\u00f3le\\nOstrzegali mnie \\u017ce too late\\nJa widzia\\u0142em czeski rulezzzz\\nChcia\\u0142em gra\\u0107 o pe\\u0142n\\u0105 pul\\u0119 [Refren]\\n[Zwrotka 2]\\nJe\\u017cd\\u017c\\u0119 po tych bitwach jak jebany idiota\\nPrzegram i zaraz mam plany si\\u0119 wycofa\\u0107\\nAle to nie takie \\u0142atwe\\nKiedy jara mnie to jak sajfer na \\u0142awce\\nAdrenalina jak w klatce na walce\\nJak m\\u00f3j cz\\u0142owiek Hajduk - spajder z Newcastle\\nNie zwa\\u017cam na akcent, sorry Zenon Martyniuk\\nOdpada na starcie ten kto zero ma rym\\u00f3w\\nMa\\u0142olaty chc\\u0105 imponowa\\u0107 i na wolno pizga\\u0107\\nA \\u0142atwiej wyrwa\\u0107 tu dup\\u0119 na HIV ni\\u017c na fristajl\\nTe\\u017c mi g\\u0142upio jak znajomi fristajluj\\u0105\\n[Refren]\\n[Tekst i adnotacje na Rap Genius Polska]\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 22,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called \\u200bbe my forever with the following description: \\u201cBe My Forever\\u201d is a beautiful and cheerful tune, sung by American singer-songwriter Christina Perri and featuring British singer-songwriter Ed Sheeran. It is the third song off of Perri\\u2019s sophomore studio album, Head Or Heart. \\u201cBe My Forever\\u201d is the only feature on the album. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Christina Perri \\nwith Ed Sheeran\\n]\\nWe're on top of the world\\nWe're on top of the world now darling, so don't let go\\nCan I call you mine?\\nSo can I call you mine now, darling?\\nFor a whole life time\\nMy heart finally trusts my mind\\nAnd I know somehow it's right\\n[Chorus: Christina Perri & Ed Sheeran]\\nAnd oh, we got time\\nYeah\\nSo darling just say you'll stay right by my side\\nAnd oh, we got love\\nYeah\\nSo darling just swear you'll stand right by my side\\n[Verse 2: Christina Perri & Ed Sheeran]\\nWe're on top of the world\\nWe're on top of the world\\nNow darling so don't let go, mmm\\nI've got something to say\\nYou're perfect in every way\\nI'm gonna shout it out\\nI'm gonna tell you now\\n'Cause I know somehow it's right [Chorus: Christina Perri & Ed Sheeran]\\nAnd oh, we got time\\nYeah\\nSo darling just say you'll stay right by my side\\nAnd oh, we got love\\nYeah\\nSo darling just swear you'll stand right by my side\\n[Hook: Christina Perri & Ed Sheeran]\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\n[Verse 3: Christina Perri & Ed Sheeran]\\nYou're my bright blue sky\\nYou're the sun in my eyes\\nOh baby, you're my life\\nYou're the reason why\\nWe're on top of the world\\nWe're on top of the world now darling, so don't let go\\n(One, two, three, four)\\n[Chorus: Christina Perri & Ed Sheeran]\\nAnd oh, we got time\\nYeah\\nSo darling just say you'll stay right by my side\\nAnd oh, we got love\\nYeah\\nSo darling just swear you'll stand right by my side [Hook: Both]\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\\n[Outro: Christina Perri, \\nEd Sheeran\\n, \\nBoth\\n]\\nWill you love me forever?\\nI'll love you forever\\nBe my forever\\nBe my forever\\nBe my forever\\nBe my forever\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 23,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Be Like You with the following description: Ed\\u2019s girlfriend just left him and to see why, he put himself in her shoes and saw why she left. Now, he needs to convince her to come back. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\nOne, two, three\\n[Verse 1]\\nUnhappy days\\nThat left us on the floor\\nAnd you squeeze me\\nTill you're not feeling sure\\nEverything will brighten up, if we go to Brighton I'll\\nTake you along the pier\\nEverything will lighten up, and if you feel too frightened I'll\\nMake things disappear\\n, dear\\n[Pre-Chorus]\\nDarling don't be nervous\\nI'll understand if you let me go\\nI did this on purpose\\nNow\\n, 'cause when I'm missing you\\n[Chorus 1]\\nI'll stop eating food and I'll squeeze into a dress\\nSo I can be like you and then I'll see your bitterness\\nAnd why you're leaving too\\n, maybe I'll put you to a test\\nAnd say that I love you, I think that I love you\\n[Verse 2]\\nSunny days\\nThat left my skin dark red\\nAnd you breathe me\\nTill these thoughts leave my head\\nIf it gets too complicated I'll give up and be frustrated;\\nCan you see what's wrong?\\nIf you feel like you've been jaded, and this love's too overrated;\\nSee what's going on [Pre-Chorus]\\nAnd darling don't be nervous\\nI'll understand if you let me go\\nI did this on purpose\\nNow\\n, 'cause when I'm missing you\\n[Chorus 1]\\nI'll stop eating food and I'll squeeze into a dress\\nSo I can be like you and then I'll see your bitterness\\nAnd why you're leaving too\\n, maybe I'll put you to a test\\nAnd say that I love you, I think that I love you\\n[Bridge]\\nTake me back to live at home\\nTake me back to Albert Road\\n[Chorus 2]\\n'Cause when I'm missing you\\nI'll stop eating food and I'll squeeze into your dress\\nSo I can feel like you and then I'll see your bitterness\\nAnd why you left too\\n, I thought I\\u2019d put you to a test\\nAnd say that I love you, I think that I love you\\nAnd I'll stop eating food and I'll squeeze into your dress\\nSo I can feel like you and then I'll see your bitterness\\nAnd why you left me too, I thought I\\u2019d put you to a test\\nAnd say that I love you, now it seems you loved me too\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 24,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Best Part of Me with the following description: \\u201cBest Part of Me\\u201d is the fourth single off of Ed Sheeran\\u2019s 2019 No. 6 Collaborations Project, released alongside \\u201cBLOW\\u201d one week before the album release.\\nThe track ignites a soft vibe, where both singers talk about a love that is causing anxiety. They are simply unsure why their partner loves them. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Ed Sheeran]\\nMy lungs are black, my heart is pure\\nMy hands are scarred from nights before\\nAnd my hair is thin and falling out of all the wrong places\\nI am a little insecure\\nMy eyes are crossed, but they're still blue\\nI bite my nails and tell the truth\\nI go from thin to overweight, day to day, it fluctuates\\nMy skin is inked, but faded too\\n[Pre-Chorus: Ed Sheeran]\\nBut she loves me, she loves me\\nWhy the hell does she love me\\nWhen she could have anyone else?\\nOh, you love me, you love me\\nWhy the hell do you love me?\\n'Cause I don't even love myself\\n[Chorus: Ed Sheeran \\nwith YEBBA\\n]\\nBaby, the best part of me is you\\nAnd lately, everything's making sense too\\nOh, \\nbaby, I'm so in love with you\\n[Verse 2: YEBBA]\\nI overthink and still forget\\nI lose my phone and place my bets\\nAnd I never catch the train on time\\nAlways thirty minutes behind\\nYour worries ain't seen nothin' yet [Pre-Chorus: YEBBA]\\nBut you love me, you love me\\nWhy the hell you love me so\\nWhen you could have anyone else?\\nYeah, yeah, he loves me, he loves me\\nAnd I bet he never lets me go\\nAnd shows me how to love myself\\n[Chorus: Ed Sheeran & YEBBA]\\n'Cause, baby, the best part of me is you\\nOh, lately, everything's making sense too\\nBaby, I'm so in love with you\\n[Bridge: YEBBA]\\nWith you\\nDa-dum, da-dum, da-dum, da-dum\\n[Chorus: Both, \\nEd Sheeran\\n, & \\nYEBBA\\n]\\nBaby, the best part of me is you (Whoa)\\nLately, everything's making sense too\\nOh, baby, I'm so in love with you (\\nOh\\n)\\nBaby, I'm so in love with you (\\nYeah, yeah\\n)\\nOh, baby, I'm so in love with you\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 25,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Bibia Be Ye Ye with the following description: In an interview with BBC Radio 1Xtra, Ed said that he had the most fun writing this song with Ghanaian star Fuse ODG.\\nI wrote a song in Twi, the Ghanaian dialect in Ghana, at Fuse\\u2019s house with all his mates. That was probably the most fun experience because like\\u2026being in the studio with someone like Fuse is just a party the whole time.\\nThey wrote several other songs but only this made it on the album. Ed played a portion live on French television: \\n\\n\\n Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\nBibia be ye ye\\n[Verse 1]\\nI lost my shoes last night, I don't know where I put my keys\\nI was tired and fell asleep beneath an oak tree\\nI bet my mother's proud of me\\nFrom each scar upon my knuckle and each graze upon my knee\\nAnd all I know\\nIs I got a cab and then threw up upon his car seat\\nHe kicked me out and then I walked in the rain\\nI tell myself in every way I won't be doing this again\\nAnd tomorrow's a brand new day\\n[Chorus]\\nSomeone told me, \\\"Always say what's on your mind\\\"\\nAnd I am only being honest with you, I\\nI get lonely and make mistakes from time to time\\nSe enioma enko ye,\\n \\nbibia be ye ye\\n[Post-Chorus]\\nBibia be ye ye, ye ye, ye ye\\nBibia be ye ye\\n[Verse 2]\\nI remember less and less and mostly things that I regret\\nIn my phone are several texts from girls I've never met\\nAnd in the pocket of my jeans are only coins and broken dreams\\nMy heart is breaking at the seams and I'm coming apart now\\nNow things are looking up, I'll find my shoes right next to the oak tree\\nAnd I'll get a bus straight into town and spend the afternoon\\nLooking around for the things that I left on the ground\\nAnd say you're with me, tomorrow's a brand new day [Chorus]\\nSomeone told me, \\\"Always say what's on your mind\\\"\\nAnd I am only being honest with you, I\\nI get lonely and make mistakes from time to time\\nSe enioma enko ye,\\n \\nbibia be ye ye\\n[Post-Chorus]\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye (Be ye ye)\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye (Be ye ye)\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye (Be ye ye)\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye (Be ye ye)\\n[Chorus]\\nSomeone told me, \\\"Always say what's on your mind\\\"\\nAnd I am only being honest with you, I\\nI get lonely and make mistakes from time to time\\nSe enioma enko ye,\\n \\nbibia be ye ye\\n[Post-Chorus]\\nBibia be ye ye, ye ye, ye ye\\nBibia be ye ye\\nWo nooma\\n (\\nBe ye ye\\n)\\nWo nooma maaaa ye\\n (\\nBe ye ye\\n; bibia be ye ye, ye ye ye ye)\\nWo nooma\\n (\\nBe ye ye\\n)\\nBibia be ye ye [Outro]\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye (Be ye ye)\\nWo nooma (Be ye ye)\\nWo nooma maaaa ye\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 26,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Bloodstream with the following description: \\nReleased as a promotional single in the week leading up to the release of Ed\\u2019s second studio album, and it eventually became the album\\u2019s fourth radio single.\\nThe song was also the first single from Rudimental\\u2019s second album We the Generation (2015). Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\nNa-na-na-na\\nMmm\\n[Verse 1]\\nI've been spinnin' now for time\\nCouple women by my side\\nI got sinnin' on my mind\\nSippin' on red wine\\nI've been sittin' here for ages\\nRippin' out the pages\\nHow'd I get so faded?\\nHow'd I get so faded?\\n[Pre-Chorus]\\nOh, no, no, don't leave me lonely now\\nIf you loved me, how'd you never learn?\\nOoh, coloured crimson in my eyes\\nOne or two could free my mind\\n[Chorus]\\nThis is how it ends\\nI feel the chemicals burn in my bloodstream\\nFading out again\\nI feel the chemicals burn in my bloodstream\\nSo tell me when it kicks in [Post-Chorus]\\nWell, tell me when it kicks in\\n[Verse 2]\\nI've been lookin' for a lover\\nThought I'd find her in a bottle\\nGod, make me another one\\nI'll be feeling this tomorrow\\nLord, forgive me for the things I've done\\nI was never meant to hurt no one\\nAnd I saw scars upon a broken-hearted lover\\n[Pre-Chorus]\\nOh, no, no, don't leave me lonely now\\nIf you loved me, how'd you never learn?\\nOoh, coloured crimson in my eyes\\nOne or two could free my mind\\n[Chorus]\\nThis is how it ends\\nI feel the chemicals burn in my bloodstream\\nFading out again\\nI feel the chemicals burn in my bloodstream\\nSo tell me when it kicks in\\n[Post-Chorus]\\nWell, tell me when it kicks in\\nTell me when it kicks in [Bridge]\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind\\nCallin' out across the line\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (And I saw scars upon her)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (Brokenhearted)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (And I saw scars upon her)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (Brokenhearted)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (And I saw scars upon her)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (Brokenhearted)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (And I saw scars upon her)\\nAll the voices in my mind (Tell me when it kicks in)\\nCallin' out across the line (Brokenhearted) [Outro]\\nSo, tell me when it kicks in\\nAnd I saw scars upon her\\nTell me when it kicks in\\nBrokenhearted\\nAnd tell me when it kicks in\\nAnd I saw scars upon her\\nTell me when it kicks in\\nBrokenhearted\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 27,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called BLOW with the following description: \\u201cBLOW\\u201d is the fifth single off of Ed Sheeran\\u2019s 2019 No. 6 Collaborations Project, released alongside \\u201cBest Part Of Me\\u201d one week before the album release.\\nThe song takes a rock feel, and all three artists use the track to sing about a woman that drives them crazy and makes them want to take things to another level. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Ed Sheeran]\\nI'm feelin' like a bullet jumpin' out a gun\\nI'm feelin' like a winner, I feel like the one\\nYou're doing somethin' to me, you're doing somethin' strange\\nWell, jump back, talk to me, woman\\nYou make me wanna make a baby, baby, uh\\n[Verse 2: Chris Stapleton]\\nSupernatural woman, supernatural freak\\nDon't know what you're doin', got me feelin' weak\\nOh, I wanna call you fever, baby, you can set a fire on me\\nHot damn, pop it like a pistol, mama\\nYou got me down on my knees, begging please\\n[Chorus: Chris Stapleton]\\nI'm comin', baby\\nI'm gunnin' for you, yeah\\nLocked, loaded, shoot my shot tonight\\nI'm comin', baby\\nI'm gunnin' for you\\nPull my trigger, let me blow your mind\\n[Verse 3: Bruno Mars]\\nYou red leather rocket, you little foxy queen\\nEverybody's watching, pretty little thing\\nBaby, tell me, what's your fantasy?\\nCome closer, let's talk about it\\nYou want white lines in a limousine\\nWhipped cream, and everything in between, yeah [Chorus: Bruno Mars]\\nI'm comin', baby\\nI'm gunnin' for you, yeah\\nLocked, loaded, shoot my shot tonight\\nI'm comin', baby\\nI'm gunnin' for you\\nPull my trigger, let me blow your mind\\nI'm comin', baby\\n[Guitar Solo: Bruno Mars]\\n[Chorus: Ed Sheeran]\\nI'm comin', baby\\nI'm gunnin' for you, yeah\\nLocked, loaded, shoot my shot tonight\\nI'm comin', baby\\nI'm gunnin' for you\\nPull my trigger, let me blow your mind\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 28,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Butterfly with the following description: \\u201cButterfly\\u201d is a currently unreleased collaboration between Kendrick Lamar and Ed Sheeran that was supposedly recorded during the DAMN. era of Kendrick\\u2019s career.\\nThe title likely references Kendrick\\u2019s March 2015 album To Pimp A Butterfly, which discussed social justice themes and was uplifting to the African American community. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"Lyrics from Snippets\\n[Pre-Chorus: Ed Sheeran]\\n...always right\\nAnd love your mother, she's the reason why we're both alive\\n[Chorus: Ed Sheeran]\\nThat's right, my little butterfly, butterfly, you got a long way to go\\nDarling, just take it slow\\n[Verse: Kendrick Lamar]\\n...wonder if there's only a frame\\nIt's what's inside, that heart following love in those veins\\nI still see Johnny...\\nMy little brotha, we evolve, we evolve like\\n[Chorus: Ed Sheeran]\\nButterfly, butterfly, you got a long way to go\\nDarling, just take it slow\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 29,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Can\\u2019t See Straight with the following description: \\u201cCan\\u2019t See Straight\\u201d serves as the first single off Jamie Lawson\\u2019s album titled \\u201cHappy Accidents\\u201d.\\nThe single features british superstar Ed Sheeran who also signed Jamie in his label back in 2016. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\nOh oh oh oh-oh-oh\\nOh oh oh oh-oh-oh oh\\n[Verse 1]\\nShooting stars shining down on your face\\nDancing in the moonlight with you\\nYou keep me calm when I'm a certain disgrace\\nYou keep me on my toes with your moves\\n[Pre-Chorus 1]\\nAnd you pulled me inside out and outside in\\nGive my heart palpitations, keep my pulse racing\\n[Chorus]\\nOh and I can't see straight when I'm thinking 'bout you\\nYeah you make my head spin with the things that you do\\nI feel dizzy when you tell me you love me too\\nI can't see straight when I'm thinking 'bout you\\n[Verse 2]\\nYou're making magic got me under your spell\\nGirl you got the music in you\\nI'm falling for you and I know you can tell\\n'Cause you're reciprocating it too [Pre-Chorus 2]\\nYou turned me upside down and downside up\\nGive me an education, how to fall in love\\n[Chorus]\\nOh and I can't see straight when I'm thinking 'bout you\\nYeah, you make my head spin with the things that you do\\nI feel dizzy when you tell me you love me too\\nI can't see straight when I'm thinking 'bout you\\n[Bridge]\\nOh no, sing it to me now\\nAnd I'm head over heels and heels over head\\nYou're the only explanation for my discombobulation, baby\\n[Chorus]\\nI can't see straight when I'm thinking 'bout you\\nYeah you make my head spin with the things that you do\\nI feel dizzy when you tell me you love me too\\nI can't see straight when I'm thinking 'bout you\\n[Outro]\\nI feel dizzy when you tell me you love me too\\nI can't see straight when I'm thinking 'bout you\\nNo I can't see straight when I'm thinking 'bout you\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 30,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Castle on the Hill with the following description: \\u201cCastle on the Hill\\u201d is a guitar-driven pop song that pays homage to Ed Sheeran\\u2019s upbringing in the English countryside town of Framlingham, Suffolk. The song was produced by pop maestro Benny Blanco and described on iTunes as a \\u201clife-affirming pop rocket.\\u201d\\nThe song was released in tandem with the more electro-poppy \\u201cShape Of You.\\u201d Together, the two songs were the first release from his upcoming third album, \\u00f7 (Divide), following in the mathematical footsteps of his + (Plus) and x (Multiply) albums. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nWhen I was six years old, I broke my leg\\nI was runnin' from my brother and his friends\\nAnd tasted the sweet perfume of the mountain grass I rolled down\\nI was younger then, take me back to when I\\n[Pre-Chorus]\\nFound my heart and broke it here\\nMade friends and lost them through the years\\nAnd I've not seen the roaring fields in so long, I know I've grown\\nBut I can't wait to go home\\n[Chorus]\\nI'm on my way\\nDrivin' at ninety down those country lanes\\nSingin' to \\\"Tiny Dancer\\\"\\nAnd I miss the way you make me feel and it's real\\nWe watched the sunset over the castle on the hill\\n[Verse 2]\\nFifteen years old and smoking hand-rolled cigarettes\\nRunnin' from the law through the backfields and gettin' drunk with my friends\\nHad my first kiss on a Friday night, I don't reckon that I did it right\\nBut I was younger then, take me back to when\\n[Pre-Chorus]\\nWe found weekend jobs, when we got paid\\nWe'd buy cheap spirits and drink them straight\\nMe and my friends have not thrown up in so long, oh, how we've grown\\nBut I can't wait to go home [Chorus]\\nI'm on my way\\nDrivin' at ninety down those country lanes\\nSingin' to \\\"Tiny Dancer\\\"\\nAnd I miss the way you make me feel and it's real\\nWe watched the sunset over the castle on the hill\\nOver the castle on the hill\\nOver the castle on the hill\\n[Bridge]\\nOne friend left to sell clothes\\nOne works down by the coast\\nOne had two kids but lives alone\\nOne's brother overdosed\\nOne's already on his second wife\\nOne's just barely gettin' by\\nBut these people raised me\\nAnd I can't wait to go home\\n[Chorus]\\nAnd I'm on my way, I still remember\\nThese old country lanes\\nWhen we did not know the answers\\nAnd I miss the way you make me feel and it's real\\nWe watched the sunset over the castle on the hill\\nOver the castle on the hill\\nOver the castle on the hill\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 31,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Celestial with the following description: For the 19th track on = (Equals)\\u2019s deluxe version, here is \\u201cCelestial\\u201d by Ed Sheeran\\u2013which is also a collaboration with world-known media franchise, Pok\\u00e9mon.\\nInside of an light electronic-pop instrumental, Ed Sheeran sings about the ups and downs in an relationship, specifically long distance relationships that always come back for each other.\\nIn the \\u201cCelestial\\u201d music video, Ed is living through a normal day, which soon turns into a cinematic animation, similar to the cover for the song. There are some Pok\\u00e9mon-themed easter eggs hidden in the music video, as well as he\\u2019s seen with Pok\\u00e9mon\\u2019s famous mascots Pikachu and Eevee, plus many more Pok\\u00e9mon. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nYou see tonight, it could go either way\\nHearts balanced on a razor blade\\nWe are designed to love and break\\nAnd to rinse and repeat it all again\\n[Pre-Chorus]\\nI get stuck when the world's too loud\\nAnd things don't look up when you're goin' down\\nI know your arms are reachin' out\\nFrom somewhere beyond the clouds\\n[Chorus]\\nYou make me feel\\nLike my troubled heart is a million miles away\\nYou make me feel\\nLike I'm drunk on stars and we're dancing out in the space\\nCelestial\\nCel\\u0435stial\\n[Verse 2]\\nI see the light shining through the rain\\nA thousand colours in a brighter shad\\u0435\\nNeeded to rise from the lowest place\\nThere's silver lining that surrounds the grey [Pre-Chorus]\\nWhen I get lost, will you come back around?\\nThings don't look up when you're goin' down\\nI know your arms, they are reachin' out\\nFrom somewhere beyond the clouds\\n[Chorus]\\nYou make me feel\\nLike my troubled heart is a million miles away\\nYou make me feel\\nLike I'm drunk on stars and we're dancing out in the space\\nCelestial\\nCelestial, oh\\n[Bridge]\\nWe were made to be nothin' more than this\\nFindin' magic in all the smallest things\\nThe way we notice, that's what really matters\\nLet's make tonight go on and on and on\\n(You make me feel) We were made to be nothin' more than this\\nFindin' magic in all the smallest things\\n(You make me feel) The way we notice, that's what really matters\\nLet's make tonight go on and on and on\\n[Chorus]\\nYou make me feel\\nLike my troubled heart is a million miles away\\nYou make me feel\\nLike I'm drunk on stars and we're dancing out in the space\\nCelestial, ohh\\nCelestial, ohh\\nCelestial, ohh [Outro]\\nWe were made to be nothin' more than this\\nFindin' magic in all the smallest things (Celestial, ohh)\\nThe way we notice, that's what really matters is\\nMake tonight go on and on and on\\nCelestial\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 32,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Cold Coffee with the following description: This is not a \\u201cmushy love song\\u201d as many people believe it to be.\\n\\u201cCold Coffee\\u201d is about a relationship that is on the rocks, where the girl\\u2019s bitterness and disinterest is causing the relationship to fall apart. Likening her to \\u201ccold coffee,\\u201d Sheeran suggests that this woman is cold and bitter when you least want/expect it. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nShe's like cold coffee in the morning\\nI'm drunk off of last night's whiskey and coke\\nShe'll make me shiver without warning\\nAnd make me laugh as if I'm in on the joke\\n[Pre-Chorus]\\nYou can stay with me forever\\nOr you could stay with me for now\\n[Chorus]\\nTell me if I'm wrong\\nTell me if I'm right\\nTell me if you need a loving hand\\nTo help you fall asleep tonight\\nTell me if I know\\nTell me if I do\\nTell me how to fall in love the\\nWay you want me to\\n[Verse 2]\\nI'll wake with coffee in the morning\\nBut she prefers two lumps of sugar and tea\\nOutside the day is up and calling\\nBut I don't have to be so, please go back to sleep [Pre-Chorus]\\nStay with me forever\\nOr you could stay with me for now\\n[Chorus]\\nTell me if I'm wrong\\nTell me if I'm right\\nTell me if you need a loving hand\\nTo help you fall asleep tonight\\nTell me if I know\\nTell me if I do\\nTell me how to fall in love the\\nWay you want me to\\n[Bridge]\\n'Cause I love the way you wake me up\\nAnd for goodness sake, will my love not be enough?\\n[Chorus]\\nTell me if I'm wrong\\nTell me if I'm right\\nTell me if you need a loving hand\\nTo help you fall asleep tonight\\nTell me if I know\\nTell me if I do\\nTell me how to fall in love the\\nWay you want me to [Outro]\\nTell me if I'm wrong\\nTell me if I'm right\\nTell me if you need a loving hand\\nTo help you fall asleep tonight\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 33,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called City of Sin with the following description: The opening track to The Game\\u2019s final album sees Ed Sheeran welcoming listeners to Los Angeles.\\nGame made a post on November 28th, 2019 about how the track came together and gives thanks to Ed Sheeran for his contribution:\\nThis is the intro to my new album. The absolute 1st thing you will hear when the album drops. I sat in the studio for hours with \\u201cEd Sheeran\\u201d @teddysphotos & gave him history on Los Angeles as well as how I grew up. Told him I had this hook I wrote on the way to the studio & asked if he\\u2019d be open to bringing it to life for me. He of course said yes & was more than happy to be apart of this project & I am so appreciative of him for lending his vocals to what I feel is a CLASSIC album. A real friend in & out of music. This short visual is something I wanted to give my fans for the endless love & support you\\u2019ve all shown me over the past almost 15 years. I am forever grateful & indebted to you all forever. Thank you to @ncf_co & the entire Never Compromise Films company for giving my album intro some life. Also thank you to my entire team for every small & huge contribution to such an amazing project. I really can\\u2019t wait for the world to hear what we\\u2019ve created. Album drops at 12 midnite tonite !!!! Again, THANK YOU ALL FOR EVERYTHING Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse: Ed Sheeran]\\nWelcome to the city of sin\\nLivin' in the city of angels\\nAnd you\\u2019ll still hear them sing (Oh, oh, oh, oh)\\nWelcome to the city of sin\\nLivin' in the city of angels\\nAnd you'll still hear them sing\\nLullabies to the night\\nNo, no, no\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 34,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Cold Water with the following description: \\u201cCold Water\\u201d is about coming together to face adversity and to say that you have your partner\\u2019s back no matter what the situation is.\\nDiplo and Justin Bieber hinted about the song through some cryptic tweets. Diplo then announced to Fact Mag that \\u201cCold Water\\u201d would be premiered on his Beats 1 radio show Lazer Sound \\u201csometime Summer 2016.\\u201d\\nIn early July, Justin announced their collaboration on the project with a tweet:\\n\\n\\n\\n\\nOn July 20th, in his final teaser for the track, Justin began releasing pieces of the lyrics to \\u201cCold Water\\u201d in the form of direct messages to his fans on Twitter who used the #ColdWater2Days hashtag. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1: Justin Bieber]\\nEverybody gets high sometimes, you know\\nWhat else can we do when we're feelin' low?\\nSo take a deep breath and let it go\\nYou shouldn't be drowning on your own\\n[Pre-Chorus: Justin Bieber]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nAnd I hope you know\\n[Chorus: Justin Bieber, \\nJustin Bieber & M\\u00d8\\n]\\nI won't let go\\nI'll be your lifeline tonight\\nI won't let go\\nI'll be your lifeline tonight\\n[Verse 2: Justin Bieber]\\n'Cause we all get lost sometimes, you know?\\nIt's how we learn and how we grow\\nAnd I wanna lay with you 'til I'm old, o-old\\nYou shouldn't be fighting on your own\\n[Pre-Chorus: Justin Bieber]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nAnd I hope you know [Chorus: Justin Bieber & M\\u00d8, \\nJustin Bieber\\n, \\nM\\u00d8\\n]\\nI won't let go (\\nAnd I won't let go, no-no, no-no, no, I won't\\n)\\nI'll be your lifeline tonight\\nI won't let go\\nI'll be your lifeline tonight (\\nI won't let, yeah, yeah\\n)\\n[Bridge: M\\u00d8]\\nCome on, come on, save me from my rocking boat\\nI just wanna stay afloat, I'm all alone (Float, float, float, float)\\nAnd I hope, I hope someone's gonna take me home\\nSomewhere I can rest my soul (Rest my soul)\\nI need to know\\n[Chorus: M\\u00d8, \\nJustin Bieber\\n & \\nBoth\\n]\\nYou won't let go (\\nAnd I won't let go, no-no, no-no, no, I won't\\n)\\nI'll be your lifeline tonight\\nYou won't let go\\nI'll be your lifeline tonight\\n[Outro: Justin Bieber]\\nI won't let go\\nI won't let go\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 35,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Cold Water with the following description: MISOGI posted this icy cover of Major Lazer\\u2019s song \\u201cCold Water\\u201d featuring M\\u00d8 and Justin Bieber on his SoundCloud page to keep the fans company until his EP was ready. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Intro]\\nEverybody gets high sometimes, you know\\nWhat else can we do when we're feeling low?\\nSo take a deep breath and let it go\\nYou shouldn't be drowning on your own\\n[Pre-Chorus]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nI hope you know\\n[Chorus]\\nI won't let go\\nI'll be your lifeline tonight\\nI won't let go\\nI'll be your lifeline tonight\\n[Verse 1]\\nCause we all get lost sometimes, you know?\\nIt's how we learn and how we grow\\nI wanna lay with you 'til I'm old\\nYou shouldn't be fighting on your own\\n[Pre-Chorus]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nI hope you know [Chorus]\\nI won't let go\\nI'll be your lifeline tonight\\nI won't let go\\nI'll be your lifeline tonight\\n[Outro]\\nFeel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nFeel you're sinking\\nFeel you're sinking\\nFeel you're sinking\\nFeel you're sinking\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 36,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Cold Water (Demo 3) with the following description: \\u201cCold Water\\u201d is a song recorded by American electronic dance music group Major Lazer featuring vocals from Canadian singer Justin Bieber and Danish singer M\\u00d8. A demo version of the song featuring vocals from Ed Sheeran, who helped write the song, was first teased in 2017 with a snippet. The full song leaked online on May 28, 2019. Make sure the lyrics are different from the original song.\"\n", " },\n", " {\n", " \"from\": \"gpt\",\n", " \"value\": \"[Verse 1]\\nEverybody gets high sometimes, you know\\nWhat else can we do when we're feeling low?\\nSo take a deep breath and let it go\\nYou shouldn't be drowning on your own\\n[Pre-Chorus]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nAnd I hope you know\\n[Chorus]\\nI won't let go\\nI won't let go\\n[Verse 2]\\n'Cause we all get lost sometimes, you know?\\nIt's how we learn and how we grow\\nAnd I wanna lay with you 'til I'm old\\nYou shouldn't be fighting on your own\\n[Pre-Chorus]\\nAnd if you feel you're sinking, I will jump right over\\nInto cold, cold water for you\\nAnd although time may take us into different places\\nI will still be patient with you\\nAnd I hope you know... [Chorus]\\nI won't let go\\nI'll be your lifeline tonight\\nI'll be your lifeline tonight\\nI'll be your lifeline tonight\\nI'll be your lifeline tonight\"\n", " }\n", " ]\n", " },\n", " {\n", " \"id\": 37,\n", " \"conversations\": [\n", " {\n", " \"from\": \"human\",\n", " \"value\": \"Write me a song called Cross Me with the following description: \\u201cCross Me\\u201d marks the first collaboration between Ed Sheeran and the two rappers, PnB Rock and Chance the Rapper.\\nThe song was announced by Ed himself on his Instagram profile on May 20, 2019, only two weeks after the release\n" ] } ], "source": [ "print(convo_json[0:100000])" ] }, { "cell_type": "code", "execution_count": 86, "id": "6b267c57", "metadata": {}, "outputs": [], "source": [ "# Write convo to conversation_style.json\n", "with open(\"conversation_style.json\", \"w\") as outfile:\n", " outfile.write(convo_json)" ] }, { "cell_type": "code", "execution_count": null, "id": "256b4d0e", "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.13" } }, "nbformat": 4, "nbformat_minor": 5 }