Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ShiwenNi
/
ChatReviewer
like
108
Runtime error
App
Files
Files
Community
5
06f4c1d
ChatReviewer
/
app.py
ShiwenNi
Update app.py
06f4c1d
over 1 year ago
raw
Copy download link
history
blame
Safe
202 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=
2
, placeholder=
"Name Here..."
),
outputs=
"text"
,
)
demo.launch()