test / app.py
co42's picture
co42 HF staff
Update app.py
469f4e4 verified
raw
history blame contribute delete
169 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()