Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -202,6 +202,7 @@ I'm your AI college, summer program, and stress advisor. I help you find schools
|
|
| 202 |
}
|
| 203 |
</style>
|
| 204 |
""")
|
|
|
|
| 205 |
gr.Markdown("""
|
| 206 |
<h2 style="text-align:center; color:#ff69b4;">
|
| 207 |
🥟 Lucky Dumplings 🥟
|
|
@@ -211,9 +212,10 @@ I'm your AI college, summer program, and stress advisor. I help you find schools
|
|
| 211 |
Click a dumpling for a little encouragement!
|
| 212 |
</p>
|
| 213 |
""")
|
|
|
|
| 214 |
gr.TabbedInterface([college, summer, stress], ["College Information", "Summer Programs", "Stress Tips", ])
|
| 215 |
|
| 216 |
-
|
| 217 |
dumpling1 = gr.Image("dumpling1.png", interactive=True, show_label=False)
|
| 218 |
dumpling2 = gr.Image("dumpling2.png", interactive=True, show_label=False)
|
| 219 |
dumpling3 = gr.Image("dumpling3.png", interactive=True, show_label=False)
|
|
@@ -224,5 +226,4 @@ Click a dumpling for a little encouragement!
|
|
| 224 |
dumpling2.select(lucky_dumpling, outputs=message_box)
|
| 225 |
dumpling3.select(lucky_dumpling, outputs=message_box)
|
| 226 |
|
| 227 |
-
|
| 228 |
demo.launch(debug="True")
|
|
|
|
| 202 |
}
|
| 203 |
</style>
|
| 204 |
""")
|
| 205 |
+
|
| 206 |
gr.Markdown("""
|
| 207 |
<h2 style="text-align:center; color:#ff69b4;">
|
| 208 |
🥟 Lucky Dumplings 🥟
|
|
|
|
| 212 |
Click a dumpling for a little encouragement!
|
| 213 |
</p>
|
| 214 |
""")
|
| 215 |
+
|
| 216 |
gr.TabbedInterface([college, summer, stress], ["College Information", "Summer Programs", "Stress Tips", ])
|
| 217 |
|
| 218 |
+
with gr.Row():
|
| 219 |
dumpling1 = gr.Image("dumpling1.png", interactive=True, show_label=False)
|
| 220 |
dumpling2 = gr.Image("dumpling2.png", interactive=True, show_label=False)
|
| 221 |
dumpling3 = gr.Image("dumpling3.png", interactive=True, show_label=False)
|
|
|
|
| 226 |
dumpling2.select(lucky_dumpling, outputs=message_box)
|
| 227 |
dumpling3.select(lucky_dumpling, outputs=message_box)
|
| 228 |
|
|
|
|
| 229 |
demo.launch(debug="True")
|