text-analytics / app.py
afiz's picture
Upload app.py
a5b9ab5
raw
history blame
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)