AI-Research-Assistant / test /test_textbox.py
zej97's picture
Upload folder using huggingface_hub
5b45741
raw
history blame contribute delete
No virus
137 Bytes
import gradio as gr
with gr.Blocks() as demo:
textbox = gr.Textbox(label="Enter your name", value="<h1> Word </h1>")
demo.launch()