Spaces:
Sleeping
Sleeping
primeira versao
Browse files- __pycache__/app.cpython-310.pyc +0 -0
- app.py +8 -0
- requirements.txt +0 -0
__pycache__/app.cpython-310.pyc
ADDED
Binary file (393 Bytes). View file
|
|
app.py
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Olá Mundo " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
|
8 |
+
iface.launch(server_port=80)
|
requirements.txt
ADDED
File without changes
|