File size: 169 Bytes
7a4aaae
 
469f4e4
 
7a4aaae
469f4e4
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

def show_json(text):
    return text

demo = gr.Interface(fn=show_json, inputs="text", outputs="json")

if __name__ == "__main__":
    demo.launch()