Wayfinder6 commited on
Commit
d324338
·
verified ·
1 Parent(s): a961881

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -0
README.md CHANGED
@@ -12,3 +12,10 @@ short_description: 'Woof tells you the output of your dog. '
12
  ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
12
  ---
13
 
14
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
15
+ import gradio as gr
16
+
17
+ def greet(name):
18
+ return "Hello " + name + "!!"
19
+
20
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
21
+ demo.launch()