ejschwartz commited on
Commit
e8f0124
·
1 Parent(s): fb01acd

Use value instead

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ def predict(code):
72
 
73
  demo = gr.Interface(
74
  fn=predict,
75
- inputs=gr.Text(placeholder=example, label="Hex-Rays decompiler output"),
76
  outputs=gr.JSON(label="Aidapal Output"),
77
  description=frontmatter.load("README.md").content,
78
  )
 
72
 
73
  demo = gr.Interface(
74
  fn=predict,
75
+ inputs=gr.Text(value=example, label="Hex-Rays decompiler output"),
76
  outputs=gr.JSON(label="Aidapal Output"),
77
  description=frontmatter.load("README.md").content,
78
  )