Update app.py
Browse files
app.py
CHANGED
@@ -126,7 +126,6 @@ def query_model(question):
|
|
126 |
|
127 |
# Define the welcome message and specific topics the chatbot can provide information about
|
128 |
welcome_message = """
|
129 |
-
# Welcome to AI-nstein!
|
130 |
## Your AI-driven assistant for all AI-related queries.
|
131 |
"""
|
132 |
topicList = """
|
@@ -183,7 +182,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
183 |
|
184 |
with gr.Row():
|
185 |
with gr.Column():
|
186 |
-
gr.Markdown("\n\n\n\n")
|
187 |
question = gr.Textbox(label="Your question:", placeholder="What do you want to ask about?")
|
188 |
submit_button = gr.Button("Submit!")
|
189 |
answer = gr.Textbox(label="AI-nswer:", placeholder="AI-nstein will respond here...", interactive=False, lines=10)
|
|
|
126 |
|
127 |
# Define the welcome message and specific topics the chatbot can provide information about
|
128 |
welcome_message = """
|
|
|
129 |
## Your AI-driven assistant for all AI-related queries.
|
130 |
"""
|
131 |
topicList = """
|
|
|
182 |
|
183 |
with gr.Row():
|
184 |
with gr.Column():
|
185 |
+
gr.Markdown("\n\n\n\n#Welcome to AI-nstein\n\n\n\n\n")
|
186 |
question = gr.Textbox(label="Your question:", placeholder="What do you want to ask about?")
|
187 |
submit_button = gr.Button("Submit!")
|
188 |
answer = gr.Textbox(label="AI-nswer:", placeholder="AI-nstein will respond here...", interactive=False, lines=10)
|