File size: 205 Bytes
a5b9ab5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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)