Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
shaodoudou
/
SalesGPT
like
0
No application file
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
SalesGPT
/
app.py
FLRFLR
Create app.py
93cf710
almost 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()