ejschwartz commited on
Commit
fd92c93
·
1 Parent(s): deea315

Actually try JSON viewer

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,7 +78,7 @@ def predict(code):
78
  demo = gr.Interface(
79
  fn=predict,
80
  inputs=gr.Text(label="Hex-Rays decompiler output"),
81
- outputs=[gr.Text(label="Aidapal Output as JSON"), gr.Text(label="Raw Aidapal Output")],
82
  description=frontmatter.load("README.md").content,
83
  examples=examples
84
  )
 
78
  demo = gr.Interface(
79
  fn=predict,
80
  inputs=gr.Text(label="Hex-Rays decompiler output"),
81
+ outputs=[gr.JSON(label="Aidapal Output as JSON"), gr.Text(label="Raw Aidapal Output")],
82
  description=frontmatter.load("README.md").content,
83
  examples=examples
84
  )