File size: 272 Bytes
705ffbd
8dc8f66
705ffbd
e3aad8b
 
705ffbd
 
 
8dc8f66
705ffbd
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
from prepars.spacing import Spacing

def greet(input):
    return Spacing().fix(input)

demo = gr.Interface(
    fn=greet,
    inputs=gr.Textbox(lines=2, placeholder="متن خود را وارد نمایید ... "),
    outputs="text",
)

demo.launch()