Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Gabriel
/
Swe_summarizer
like
3
Runtime error
App
Files
Files
Community
1
Gabriel
commited on
Oct 5, 2022
Commit
69c1e4c
•
1 Parent(s):
614601c
Create new file
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
10
+
demo.launch()