AhmadXGaballah commited on
Commit
86bdc67
·
verified ·
1 Parent(s): 20914c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -630,8 +630,8 @@ with gr.Blocks(css=THEME_CSS, fill_height=True) as demo:
630
  with gr.Column(scale=1):
631
  claims_box = gr.Textbox(label="Claims (one per line)", lines=8, placeholder="e.g. 5G towers caused COVID-19", elem_classes=["glass"])
632
  with gr.Row():
633
- use_web = gr.Checkbox(value=USE_WEB_DEFAULT, label="Use Web retrieval (DuckDuckGo + Trafilatura)")
634
- use_wiki = gr.Checkbox(value=USE_WIKI_DEFAULT, label="Use Wikipedia")
635
  allowlist_box = gr.Textbox(label="Domain allowlist (comma-separated)", value=DEFAULT_ALLOWLIST_STR, lines=2)
636
  run_btn = gr.Button("Run Fact-Check")
637
  with gr.Column(scale=1):
 
630
  with gr.Column(scale=1):
631
  claims_box = gr.Textbox(label="Claims (one per line)", lines=8, placeholder="e.g. 5G towers caused COVID-19", elem_classes=["glass"])
632
  with gr.Row():
633
+ use_web = gr.Checkbox(value=True, label="Use Web retrieval")
634
+ use_wiki = gr.Checkbox(value=True, label="Use Wikipedia")
635
  allowlist_box = gr.Textbox(label="Domain allowlist (comma-separated)", value=DEFAULT_ALLOWLIST_STR, lines=2)
636
  run_btn = gr.Button("Run Fact-Check")
637
  with gr.Column(scale=1):