Update app.py
Browse files
app.py
CHANGED
|
@@ -120,9 +120,9 @@ with gr.Blocks() as app:
|
|
| 120 |
param_submit_button = gr.Button("Parse Parameters", visible=False)
|
| 121 |
|
| 122 |
with gr.Row():
|
| 123 |
-
json_output_farm = gr.
|
| 124 |
-
json_output_interactions = gr.
|
| 125 |
-
json_output_trials = gr.
|
| 126 |
|
| 127 |
|
| 128 |
toggle_output = Toggle(label="JSON <-> YAML", value=False, info="Toggle Output Data", interactive=True, visible=False)
|
|
|
|
| 120 |
param_submit_button = gr.Button("Parse Parameters", visible=False)
|
| 121 |
|
| 122 |
with gr.Row():
|
| 123 |
+
json_output_farm = gr.Textbox(label="Farm Data JSON", visible=False)
|
| 124 |
+
json_output_interactions = gr.Textbox(label="Interactions Data JSON", visible=False)
|
| 125 |
+
json_output_trials = gr.Textbox(label="Trials Data JSON", visible=False)
|
| 126 |
|
| 127 |
|
| 128 |
toggle_output = Toggle(label="JSON <-> YAML", value=False, info="Toggle Output Data", interactive=True, visible=False)
|