Update app.py
Browse files
app.py
CHANGED
@@ -144,6 +144,9 @@ topics2 = """
|
|
144 |
\n- Examples of AI
|
145 |
|
146 |
"""
|
|
|
|
|
|
|
147 |
|
148 |
#def display_image():
|
149 |
#return "https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExZzdqMnkzcWpjbGhmM3hzcXp0MGpuaTF5djR4bjBxM3Biam5zbzNnMCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/GxMnTi3hV3qaIgbgQL/giphy.gif"
|
@@ -182,7 +185,9 @@ with gr.Blocks(theme=theme) as demo:
|
|
182 |
|
183 |
with gr.Row():
|
184 |
with gr.Column():
|
185 |
-
gr.Markdown("
|
|
|
|
|
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)
|
|
|
144 |
\n- Examples of AI
|
145 |
|
146 |
"""
|
147 |
+
headline='''
|
148 |
+
#Welcome to AI-nestein!
|
149 |
+
'''
|
150 |
|
151 |
#def display_image():
|
152 |
#return "https://i.giphy.com/media/v1.Y2lkPTc5MGI3NjExZzdqMnkzcWpjbGhmM3hzcXp0MGpuaTF5djR4bjBxM3Biam5zbzNnMCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9cw/GxMnTi3hV3qaIgbgQL/giphy.gif"
|
|
|
185 |
|
186 |
with gr.Row():
|
187 |
with gr.Column():
|
188 |
+
gr.Markdown(" ")
|
189 |
+
gr.Markdown(headline)
|
190 |
+
gr.Markdown(" ")
|
191 |
question = gr.Textbox(label="Your question:", placeholder="What do you want to ask about?")
|
192 |
submit_button = gr.Button("Submit!")
|
193 |
answer = gr.Textbox(label="AI-nswer:", placeholder="AI-nstein will respond here...", interactive=False, lines=10)
|