rosemariafontana commited on
Commit
d35e6e6
·
verified ·
1 Parent(s): f7278cf

hide things for now

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -252,7 +252,9 @@ def process_specifications(data, model_version, json_creation, additional_json_c
252
  with gr.Blocks() as demo:
253
  data_input = gr.Textbox(label="Enter your data", placeholder="Type your data here")
254
  model_version_input = gr.Radio(["gpt-4o-2024-08-06", "gpt-4o-mini-2024-07-18"], label="Model Versions")
255
- json_creation_input = gr.Radio(["Single JSON Creation", "Step-wise JSON Creation"], label="Modularity of JSON Approach")
 
 
256
 
257
  additional_json_creation_options = gr.Radio(["Parse from one big input text", "Explicit specific pieces"], label="Additional Step-wise JSON Options", visible=False)
258
 
 
252
  with gr.Blocks() as demo:
253
  data_input = gr.Textbox(label="Enter your data", placeholder="Type your data here")
254
  model_version_input = gr.Radio(["gpt-4o-2024-08-06", "gpt-4o-mini-2024-07-18"], label="Model Versions")
255
+
256
+ # Hidden for demo purposes
257
+ json_creation_input = gr.Radio(["Single JSON Creation", "Step-wise JSON Creation"], label="Modularity of JSON Approach", visible=False)
258
 
259
  additional_json_creation_options = gr.Radio(["Parse from one big input text", "Explicit specific pieces"], label="Additional Step-wise JSON Options", visible=False)
260