c4 / app.py
Araeynn's picture
Update app.py
64a8646 verified
raw
history blame
112 Bytes
import gradio as gr
app = gr.Interface(
fn=exec,
inputs=["text"],
outputs=["text"],
)
app.launch()