hello-world / app.py
nvn1729's picture
Update app.py
2d3df02 verified
raw
history blame contribute delete
170 Bytes
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()