freddyaboulton's picture
Create app.py
6804226 verified
raw
history blame contribute delete
113 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.Interface(lambda x: x, "textbox", "textbox")
demo.launch()