Spaces:
Running
Running
Update README.md
Browse files
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()
|