Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
OmParkashPandeY
/
TextSummarization
like
1
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
OmParkashPandeY
commited on
Dec 8, 2023
Commit
973060a
·
1 Parent(s):
ad44cab
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-1
app.py
CHANGED
Viewed
@@ -1 +1,7 @@
1
-
print("Hello")
1
+
import gradio as gr
2
+
3
+
def greet(name):
4
+
return "Hello " + name + "!!"
5
+
6
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+
iface.launch()