Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -265,7 +265,11 @@ with gr.Blocks(fill_height=True) as demo:
|
|
265 |
"\n\nThis is GPT-4o, you can use the text and image capabilities now. More capabilities like audio and video will be rolled out iteratively in the future. Stay tuned."
|
266 |
)
|
267 |
gr.LoginButton()
|
268 |
-
|
|
|
|
|
|
|
|
|
269 |
gr.ChatInterface(
|
270 |
get_completion,
|
271 |
multimodal=True,
|
@@ -278,6 +282,8 @@ with gr.Blocks(fill_height=True) as demo:
|
|
278 |
# ],
|
279 |
)
|
280 |
|
|
|
|
|
281 |
demo.queue(default_concurrency_limit=5)
|
282 |
|
283 |
|
|
|
265 |
"\n\nThis is GPT-4o, you can use the text and image capabilities now. More capabilities like audio and video will be rolled out iteratively in the future. Stay tuned."
|
266 |
)
|
267 |
gr.LoginButton()
|
268 |
+
|
269 |
+
gr.Markdown("""
|
270 |
+
## Visit [chatgpt-4o](https://chatgpt-4o.streamlit.app/) for an improved UI experience and future enhancements.
|
271 |
+
"""
|
272 |
+
)
|
273 |
gr.ChatInterface(
|
274 |
get_completion,
|
275 |
multimodal=True,
|
|
|
282 |
# ],
|
283 |
)
|
284 |
|
285 |
+
|
286 |
+
|
287 |
demo.queue(default_concurrency_limit=5)
|
288 |
|
289 |
|