Skip to content

Instantly share code, notes, and snippets.

@handstandsam
Last active December 16, 2023 04:44
Show Gist options
  • Save handstandsam/40e2d3054d9c6739eedb4a3441445f72 to your computer and use it in GitHub Desktop.
Save handstandsam/40e2d3054d9c6739eedb4a3441445f72 to your computer and use it in GitHub Desktop.
Google's Gemini AI Wrote me a Song
import pathlib
import google.generativeai as genai
import google.ai.generativelanguage as glm
API_KEY="..."
genai.configure(api_key=API_KEY)
model = genai.GenerativeModel('gemini-pro')
prompt = "I want to record a song in the next 30 minutes. I am a good guitar player, and okay singer. Can you come up with a simple song and chord progression? Please provide me with the bpm of the song, and be sure to include the following sections: verse, chorus, verse, chorus, bridge, chorus. This song should be about 3 minutes in length. Ideally it will use power chords on guitar or common major and minor chords on a guitar that is tuned in standard."
response = model.generate_content(prompt)
print(response.text)
**Song Title:** The Journey Within
**BPM:** 120
**Verse:**
Am C G D
Lost in my thoughts, I wander aimlessly
Searching for answers, a path to see
Shadows dance around me, doubts take flight
But within me, a flicker of light
**Chorus:**
It's a journey within, a path I must take
To find my truth, my dreams to awake
Through valleys and mountains, I'll forge my way
Uncovering strength with each passing day
**Verse:**
F Am C G
Fears arise, like walls that confine
But I'll break them down, one step at a time
With courage as my guide, I'll face the unknown
And find the treasures that lie within my own
**Chorus:**
It's a journey within, a path I must take
To find my truth, my dreams to awake
Through valleys and mountains, I'll forge my way
Uncovering strength with each passing day
**Bridge:**
Dm Am G C
In the depths of silence, I find my voice
A whisper of hope, a reason to rejoice
For within the journey, lies the greatest prize
Self-discovery, where my spirit flies
**Chorus:**
It's a journey within, a path I must take
To find my truth, my dreams to awake
Through valleys and mountains, I'll forge my way
Uncovering strength with each passing day
**Outro:**
Am C G D
The journey within, forever unfolds
With every step, my story is told
I embrace the unknown, the path that I find
For in this adventure, my true self I bind
@handstandsam
Copy link
Author

Here it is: https://soundcloud.com/handstandsam/the-journey-within

I forced myself to post it tonight so it'd all be done within a couple hours total.

I did vocals, guitar and drums (electronic kit over midi).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment