Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
csalabs
/
AI-EMBD
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b3978cc
AI-EMBD
/
app.py
csalabs
Update app.py
b3978cc
over 1 year ago
raw
Copy download link
history
blame
Safe
185 Bytes
import
gradio
as
gr
from
run_localGPT
import
main
def
greet
(
name
):
return
"Hello"
+ +
"I am from CSA"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()