Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
DataBob
/
RagScientificArticles
like
0
Runtime error
App
Files
Files
Community
529d3fe
RagScientificArticles
/
app.py
DataBob
initial commit
529d3fe
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()