Spaces:
Sleeping
Sleeping
reannajlee
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -110,13 +110,13 @@ def query_model(question):
|
|
110 |
welcome_message = """
|
111 |
# Fillira
|
112 |
|
113 |
-
|
114 |
"""
|
115 |
|
116 |
|
117 |
topics = """
|
118 |
-
|
119 |
-
Just tell me what genre and artist is in
|
120 |
|
121 |
"""
|
122 |
|
@@ -128,7 +128,7 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
|
128 |
gr.Markdown(topics) # Show the topics on the left side
|
129 |
with gr.Row():
|
130 |
with gr.Column():
|
131 |
-
question = gr.Textbox(label="
|
132 |
answer = gr.Textbox(label="Fillira", placeholder="", interactive=False, lines=10)
|
133 |
submit_button = gr.Button("Shoot!")
|
134 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
|
|
110 |
welcome_message = """
|
111 |
# Fillira
|
112 |
|
113 |
+
### Your music enthusiast from the future!
|
114 |
"""
|
115 |
|
116 |
|
117 |
topics = """
|
118 |
+
|
119 |
+
Hey, it's Fillira! I'm here to help you create an amazing playlist! Just tell me what genre and artist is in it, I got you.
|
120 |
|
121 |
"""
|
122 |
|
|
|
128 |
gr.Markdown(topics) # Show the topics on the left side
|
129 |
with gr.Row():
|
130 |
with gr.Column():
|
131 |
+
question = gr.Textbox(label="Need anything?", placeholder="Talk to me...")
|
132 |
answer = gr.Textbox(label="Fillira", placeholder="", interactive=False, lines=10)
|
133 |
submit_button = gr.Button("Shoot!")
|
134 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|