File size: 155 Bytes
bf25447
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def process(text):
    return text.replace('\n', '\\n')

demo = gr.Interface(fn=process, inputs="text", outputs="text")
demo.launch()