Vishnu Naresh Boddeti commited on
Commit
fef0200
·
1 Parent(s): 68f25a2

printing a debug message

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -367,6 +367,7 @@ with gr.Blocks(css=css) as demo:
367
 
368
  yield "✅ Search complete. Decrypting results...", "", gr.update(visible=True), {"embedding": embedding}, ciphertext, gr.update(visible=False)
369
  output, _ = run_binary("./bin/search.bin", sec_level, "decDecisionClear", threshold)
 
370
 
371
  lines = output.strip().split('\n')
372
  decision = lines[0].lower()
 
367
 
368
  yield "✅ Search complete. Decrypting results...", "", gr.update(visible=True), {"embedding": embedding}, ciphertext, gr.update(visible=False)
369
  output, _ = run_binary("./bin/search.bin", sec_level, "decDecisionClear", threshold)
370
+ print(f"Search binary output: >>>{output}<<<")
371
 
372
  lines = output.strip().split('\n')
373
  decision = lines[0].lower()