Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jaumaras
/
gradioTest1
like
0
Running
App
Files
Files
Community
jaumaras
commited on
Aug 16, 2023
Commit
dbfecad
•
1 Parent(s):
e601bf5
Create App.py
Browse files
Files changed (1)
hide
show
App.py
+9
-0
App.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
! pip install gradio
2
+
3
+
import gradio as gr
4
+
5
+
def hello_world(name):
6
+
return "HEllo..." + name +"!!!!"
7
+
8
+
interface = gr.Interface(fn = hello_world, inputs='text',outputs="text")
9
+
interface.launch()