Talk2Cell / app.py
jire-ai's picture
Update app.py
0bd34ea verified
raw
history blame contribute delete
250 Bytes
import gradio as gr
def open_app():
external_link = "https://3eb291e0802b586833.gradio.live/"
return f'<iframe src="{external_link}" style="width:100%;height:800px;"></iframe>'
with gr.Blocks() as demo:
gr.HTML(open_app)
demo.launch()