Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
afiz
/
text-analytics
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a5b9ab5
text-analytics
/
app.py
afiz
Upload app.py
a5b9ab5
over 2 years ago
raw
Copy download link
history
blame
Safe
205 Bytes
import
gradio
as
gr
from
oneai
import
oneai_pipeline
demo = gr.Interface(
fn=oneai_pipeline,
inputs=gr.Textbox(lines=
2
, placeholder=
"Name Here..."
),
outputs=
"text"
,
)
demo.launch(share=
True
)