Spaces:
Runtime error
Runtime error
Commit
·
a5ea9f5
1
Parent(s):
2e246ff
lyric generator
Browse files
app.py
CHANGED
@@ -100,14 +100,14 @@ def R1_infer1(theme, tags_gen, language):
|
|
100 |
|
101 |
|
102 |
def R1_infer2(tags_lyrics, lyrics_input):
|
103 |
-
client = OpenAI(
|
104 |
|
105 |
llm_prompt = """
|
106 |
-
{lyrics_input}
|
107 |
"""
|
108 |
|
109 |
response = client.chat.completions.create(
|
110 |
-
model="
|
111 |
messages=[
|
112 |
{"role": "system", "content": "You are a professional musician who has been invited to make music-related comments."},
|
113 |
{"role": "user", "content": llm_prompt.format(lyrics_input=lyrics_input, tags_lyrics=tags_lyrics)},
|
|
|
100 |
|
101 |
|
102 |
def R1_infer2(tags_lyrics, lyrics_input):
|
103 |
+
client = OpenAI()
|
104 |
|
105 |
llm_prompt = """
|
106 |
+
{lyrics_input}This is the lyrics of a song. Each line is a line of lyrics. {tags_lyrics} is the style I want for this song. I now want to timestamp each line of lyrics of this song to get LRC. I hope that the timestamp allocation should be reasonably inferred based on the song tag, the emotion of the lyrics, and the rhythm, rather than mechanically allocated according to the length of the lyrics. The timestamp of the first line of lyrics should take into account the length of the prelude to avoid the lyrics starting directly from `[00:00.00]`. Output the lyrics strictly in LRC format, with each line in the format of `[mm:ss.xx] lyrics content`. The final result only outputs LRC, no other explanation is required.
|
107 |
"""
|
108 |
|
109 |
response = client.chat.completions.create(
|
110 |
+
model="gpt-4o",
|
111 |
messages=[
|
112 |
{"role": "system", "content": "You are a professional musician who has been invited to make music-related comments."},
|
113 |
{"role": "user", "content": llm_prompt.format(lyrics_input=lyrics_input, tags_lyrics=tags_lyrics)},
|