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...
bba590f
rag-cohere
/
app.py
mca183
edit message
bba590f
about 1 year ago
raw
Copy download link
history
blame
Safe
142 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()