Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ShiwenNi/ChatReviewer
chnln
/
ChatReviewer
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
06f4c1d
ChatReviewer
/
app.py
ShiwenNi
Update app.py
06f4c1d
about 2 years 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()