paulcalzada commited on
Commit
8c50225
·
verified ·
1 Parent(s): 6d29ea4

Update app.py

Browse files

changed max allowable documents to 5

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ with gr.Blocks(title="DeepV for RTL (Model-Agnostic)", theme=gr.themes.Soft()) a
53
  )
54
  with gr.Row():
55
  use_rag = gr.Checkbox(value=True, label="Use Retrieval (RAG)")
56
- top_k = gr.Slider(1, 10, value=3, step=1, label="Top-K retrieved examples")
57
 
58
  # --- New UI with three text boxes for generation settings ---
59
  with gr.Row():
 
53
  )
54
  with gr.Row():
55
  use_rag = gr.Checkbox(value=True, label="Use Retrieval (RAG)")
56
+ top_k = gr.Slider(1, 5, value=3, step=1, label="Top-K retrieved examples")
57
 
58
  # --- New UI with three text boxes for generation settings ---
59
  with gr.Row():