File size: 170 Bytes
2d3df02
 
7a7b610
 
164ccdf
7a7b610
164ccdf
7a7b610
 
1
2
3
4
5
6
7
8
9
10
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()