giseldo commited on
Commit
66d63c7
·
1 Parent(s): 5710913

primeira versao

Browse files
Files changed (3) hide show
  1. __pycache__/app.cpython-310.pyc +0 -0
  2. app.py +8 -0
  3. 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