avsolatorio commited on
Commit
46ed2e6
·
verified ·
1 Parent(s): bb313aa

Update app.py

Browse files

Show JSON output

Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -149,11 +149,11 @@ with gr.Blocks(title="GLiNER-query-parser") as demo:
149
  scale=0,
150
  )
151
 
152
- # output = gr.JSON(label="Extracted entities")
153
-
154
  output = gr.HighlightedText(label="Annotated entities")
155
  submit_btn = gr.Button("Submit")
156
- hidden_button = gr.Button("", visible=False)
 
 
157
 
158
  # Submitting
159
  query.submit(
@@ -174,8 +174,8 @@ with gr.Blocks(title="GLiNER-query-parser") as demo:
174
  model_name.change(
175
  fn=annotate_query, inputs=[query, entities, threshold, is_nested, model_name], outputs=output
176
  )
177
- hidden_button.click(
178
- fn=parse_query, inputs=[query, entities, threshold, is_nested, model_name], outputs=output
179
  )
180
 
181
  demo.queue(default_concurrency_limit=5)
 
149
  scale=0,
150
  )
151
 
 
 
152
  output = gr.HighlightedText(label="Annotated entities")
153
  submit_btn = gr.Button("Submit")
154
+
155
+ json_output = gr.JSON(label="Extracted entities")
156
+ json_button = gr.Button("Get JSON")
157
 
158
  # Submitting
159
  query.submit(
 
174
  model_name.change(
175
  fn=annotate_query, inputs=[query, entities, threshold, is_nested, model_name], outputs=output
176
  )
177
+ json_button.click(
178
+ fn=parse_query, inputs=[query, entities, threshold, is_nested, model_name], outputs=json_output
179
  )
180
 
181
  demo.queue(default_concurrency_limit=5)