Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mimbres
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0efb599
test
/
app.py
mimbres
Update app.py
0efb599
about 2 years ago
raw
Copy download link
history
blame
Safe
189 Bytes
import
gradio
as
gr
def
process_text
(
text
):
return
text
demo = gr.Interface(
process_text,
gr.Textbox(placeholder=
"Enter sentence here..."
),
[
"highlight"
]
)
demo.launch()