Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -529,4 +529,9 @@ if __name__ == "__main__":
|
|
529 |
hanna.fname_requirements = 'requirements.txt'
|
530 |
hanna.print_info_self()
|
531 |
#
|
|
|
|
|
|
|
532 |
|
|
|
|
|
|
529 |
hanna.fname_requirements = 'requirements.txt'
|
530 |
hanna.print_info_self()
|
531 |
#
|
532 |
+
import gradio
|
533 |
+
def greet(name):
|
534 |
+
return "Hello " + name + "!!"
|
535 |
|
536 |
+
demo = gradio.Interface(fn=greet, inputs="text", outputs="text")
|
537 |
+
demo.launch()
|