awacke1 commited on
Commit
4dd70af
Β·
1 Parent(s): 1bfce6d

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -0
app.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ st.markdown("""
3
+
4
+ Create a song based on the markdown template below. Replace the lyrics and chords to complete the full song. Use these chords: [Bm,C#,D,E | Bm,D,E | Bm, C#, D, E and finally Bm, D, E, Bm, D, E outro. | Lyrics | Chord Progression |
5
+ | ------- | ---------------- |
6
+ | `There's a [CπŸͺ] shock to your [GπŸ¦’] system` | C - G |
7
+ | `It's no [Am🍎] accident` | Am |
8
+ | `You're [F🐠] lost without a [CπŸͺ] compass` | F - C |
9
+ | `In a [GπŸ¦’] world that's [DπŸ¦†] so demanding` | G - D |
10
+ ChatGPT
11
+ Sure, here's your song using the given chord progression. Please note that the symbols provided (like πŸͺ, πŸ¦’, 🍎, 🐠, πŸ¦†) are just placeholders and I'm replacing them with actual lyrics.
12
+
13
+ Lyrics Chord Progression
14
+ There's a [Bm] whisper in the [C#] shadows Bm - C#
15
+ It's no [D] mystery, not an [E] illusion D - E
16
+ You're [Bm] caught in the maze of [D] memories Bm - D
17
+ In a [E] world that's always [Bm] turning E - Bm
18
+ Lyrics Chord Progression
19
+ There's a [Bm] silence in the [C#] cosmos Bm - C#
20
+ Yet it [D] speaks louder than [E] words D - E
21
+ You're [Bm] navigating through the [D] noise Bm - D
22
+ In a [E] world that's always [Bm] yearning E - Bm
23
+ Lyrics Chord Progression
24
+ There's a [Bm] journey in your [C#] spirit Bm - C#
25
+ It's a [D] quest you're meant to [E] undertake D - E
26
+ You're [Bm] crossing over bridges [D] Bm - D
27
+ In a [E] world that's always [Bm] wide awake E - Bm
28
+ Outro:
29
+
30
+ Lyrics Chord Progression
31
+ And there's a [Bm] melody within you [D] Bm - D
32
+ It's an [E] anthem that's uniquely [Bm] yours E - Bm
33
+ Keep on [Bm] dreaming in this [D] grand illusion Bm - D
34
+ In this [E] world that's forever [Bm] yours E - Bm
35
+ And this [Bm] symphony will [D] play on Bm - D
36
+ In this [E] world that's forever [Bm] yours E - Bm
37
+
38
+
39
+ """)