File size: 184 Bytes
642b42c
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
!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();