orrzohar commited on
Commit
11f4144
1 Parent(s): 1ffe4d1

increasing question window

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -64,6 +64,8 @@ def get_col(example, dataset_name):
64
  label = key.capitalize().replace("_", " ")
65
  if key == PREDICTION:
66
  text_input_k = gr.Textbox(value=value, label=f"{label}", lines=7)
 
 
67
  else:
68
  text_input_k = gr.Textbox(value=value, label=f"{label}")
69
  text_inputs_right.append(text_input_k)
 
64
  label = key.capitalize().replace("_", " ")
65
  if key == PREDICTION:
66
  text_input_k = gr.Textbox(value=value, label=f"{label}", lines=7)
67
+ elif key == QUESTION:
68
+ text_input_k = gr.Textbox(value=value, label=f"{label}", lines=2)
69
  else:
70
  text_input_k = gr.Textbox(value=value, label=f"{label}")
71
  text_inputs_right.append(text_input_k)