Spaces:
Running
Running
increasing question window
Browse files
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)
|