testchat / app.py
aliabid94's picture
aliabid94 HF staff
Update app.py
06c284e verified
raw
history blame contribute delete
159 Bytes
import gradio as gr
from gradio_modal import Modal
with gr.Blocks() as demo:
gr.Textbox()
with Modal(visible=True):
gr.Number()
demo.launch()