Boaz's picture
w
642b42c
raw
history blame contribute delete
184 Bytes
!pip install --quiet gradio
import gradio as gr
# Write 1 line of Python to create a simple GUI
gr.Interface(
fn=greet,
inputs="textbox",
outputs="textbox",
).launch();