Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hamza50
/
stanford-test-1
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
9d89f03
stanford-test-1
/
app.py
hamza50
Update app.py
6ae1928
almost 2 years ago
raw
Copy download link
history
blame
Safe
163 Bytes
import
gradio
as
gr
import
openai
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()