Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ def query_model(question):
|
|
108 |
|
109 |
# Define the welcome message and specific topics the chatbot can provide information about
|
110 |
welcome_message = """
|
111 |
-
#
|
112 |
|
113 |
## Your AI-driven assistant for artist reccomendations based on your mood. Created by Alexis, Nathalie, and Joanna of the 2024 Kode With Klossy CITY Camp.
|
114 |
"""
|
@@ -134,7 +134,7 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
|
134 |
with gr.Column():
|
135 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|
136 |
answer = gr.Textbox(label="Harmony Response", placeholder="Harmony will respond here...", interactive=False, lines=10)
|
137 |
-
submit_button = gr.Button("
|
138 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
139 |
|
140 |
|
|
|
108 |
|
109 |
# Define the welcome message and specific topics the chatbot can provide information about
|
110 |
welcome_message = """
|
111 |
+
# 🎶 Welcome! This is Harmony, here to give you artist recommendations based on how you feel!
|
112 |
|
113 |
## Your AI-driven assistant for artist reccomendations based on your mood. Created by Alexis, Nathalie, and Joanna of the 2024 Kode With Klossy CITY Camp.
|
114 |
"""
|
|
|
134 |
with gr.Column():
|
135 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|
136 |
answer = gr.Textbox(label="Harmony Response", placeholder="Harmony will respond here...", interactive=False, lines=10)
|
137 |
+
submit_button = gr.Button("Find Your Artists Here!")
|
138 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
139 |
|
140 |
|