Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mca183
/
rag-cohere
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f26014b
rag-cohere
/
app.py
mca183
add app.py
f26014b
about 1 year ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()