Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
karthek
/
personal_vc
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
karthek
commited on
Jul 31, 2023
Commit
b22f598
·
1 Parent(s):
275d53c
ini
Browse files
Files changed (1)
hide
show
app.py
+13
-0
app.py
ADDED
Viewed
@@ -0,0 +1,13 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
def main():
9
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
10
+
iface.launch()
11
+
12
+
13
+
main()