Boaz commited on
Commit
642b42c
1 Parent(s): 18826ab
Files changed (1) hide show
  1. w +10 -0
w ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ !pip install --quiet gradio
2
+
3
+ import gradio as gr
4
+
5
+ # Write 1 line of Python to create a simple GUI
6
+ gr.Interface(
7
+ fn=greet,
8
+ inputs="textbox",
9
+ outputs="textbox",
10
+ ).launch();