Spaces:
Runtime error
Runtime error
param4374416
commited on
Commit
•
e182dd0
1
Parent(s):
4b4a326
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def respond(
|
|
15 |
temperature,
|
16 |
top_p,
|
17 |
):
|
18 |
-
system_message = "
|
19 |
messages = [{"role": "system", "content": system_message}]
|
20 |
|
21 |
for val in history:
|
@@ -46,7 +46,7 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
|
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
-
gr.Textbox(value = "
|
50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
gr.Slider(
|
@@ -59,11 +59,11 @@ demo = gr.ChatInterface(
|
|
59 |
],
|
60 |
|
61 |
examples = [
|
62 |
-
["I
|
63 |
-
["
|
64 |
-
["
|
65 |
],
|
66 |
-
title = '
|
67 |
)
|
68 |
|
69 |
|
|
|
15 |
temperature,
|
16 |
top_p,
|
17 |
):
|
18 |
+
system_message = "Welcome to the English Pop Music Advisor Chatbot! Whether you're looking for upbeat tunes to lift your spirits or soulful ballads for a reflective moment, I'm here to recommend English pop songs that match your mood. Feel free to tell me how you're feeling or ask for suggestions!"
|
19 |
messages = [{"role": "system", "content": system_message}]
|
20 |
|
21 |
for val in history:
|
|
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
+
gr.Textbox(value = "Welcome to the English Pop Music Advisor Chatbot! Whether you're looking for upbeat tunes to lift your spirits or soulful ballads for a reflective moment, I'm here to recommend English pop songs that match your mood. Feel free to tell me how you're feeling or ask for suggestions!"),
|
50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
gr.Slider(
|
|
|
59 |
],
|
60 |
|
61 |
examples = [
|
62 |
+
["I'm in the mood for some upbeat music to energize me."],
|
63 |
+
["Could you recommend a relaxing English pop song to unwind?"],
|
64 |
+
["What's a good English pop song for when I'm feeling nostalgic?"]
|
65 |
],
|
66 |
+
title = 'English Pop Music Advisor Chatbot 🎵'
|
67 |
)
|
68 |
|
69 |
|