Spaces:
Paused
Paused
Added nightly version in app.py
Browse files
app.py
CHANGED
|
@@ -209,6 +209,7 @@ with gr.Blocks(theme = gr.themes.Soft()) as demo:
|
|
| 209 |
chatbot_component
|
| 210 |
]
|
| 211 |
)
|
|
|
|
| 212 |
with gr.Tab("Chat with Gemma 2"):
|
| 213 |
gr.HTML(
|
| 214 |
"""
|
|
@@ -216,4 +217,11 @@ with gr.Blocks(theme = gr.themes.Soft()) as demo:
|
|
| 216 |
"""
|
| 217 |
)
|
| 218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 219 |
demo.queue().launch(debug = True, show_error = True)
|
|
|
|
| 209 |
chatbot_component
|
| 210 |
]
|
| 211 |
)
|
| 212 |
+
|
| 213 |
with gr.Tab("Chat with Gemma 2"):
|
| 214 |
gr.HTML(
|
| 215 |
"""
|
|
|
|
| 217 |
"""
|
| 218 |
)
|
| 219 |
|
| 220 |
+
with gr.Tab("Nightly -- Chat with Gemini 1.5"):
|
| 221 |
+
gr.HTML(
|
| 222 |
+
"""
|
| 223 |
+
<h1 align="center">This section will test out the next version of the stable version.</h1>
|
| 224 |
+
"""
|
| 225 |
+
)
|
| 226 |
+
|
| 227 |
demo.queue().launch(debug = True, show_error = True)
|