reannajlee commited on
Commit
70b6566
·
verified ·
1 Parent(s): e7b888b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -110,13 +110,13 @@ def query_model(question):
110
  welcome_message = """
111
  # Fillira
112
 
113
- ## Your music enthusiast from the future!
114
  """
115
 
116
 
117
  topics = """
118
- Hey, it's Fillira! Need anything?
119
- Just tell me what genre and artist is in your playlist, and I can help you create an amazing title for it!
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="What's up?", 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)
 
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)