richardr1126 commited on
Commit
ccb846c
·
1 Parent(s): 664c783
Files changed (1) hide show
  1. app-ngrok.py +7 -2
app-ngrok.py CHANGED
@@ -140,8 +140,6 @@ with gr.Blocks(theme='gradio/soft') as demo:
140
 
141
  # Generate button UI element
142
  run_button = gr.Button("Generate SQL", variant="primary")
143
- # When the button is clicked, call the generate function, inputs are taken from the UI elements, outputs are sent to outputs elements
144
- run_button.click(fn=generate, inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence], outputs=output_box, api_name="txt2sql")
145
 
146
  ## Add statement saying that inputs/outpus are sent to firebase
147
  info = gr.HTML(f"""
@@ -177,5 +175,12 @@ with gr.Blocks(theme='gradio/soft') as demo:
177
  readme = gr.Markdown(
178
  readme_content,
179
  )
 
 
 
 
 
 
 
180
 
181
  demo.queue(concurrency_count=1, max_size=20).launch(debug=True)
 
140
 
141
  # Generate button UI element
142
  run_button = gr.Button("Generate SQL", variant="primary")
 
 
143
 
144
  ## Add statement saying that inputs/outpus are sent to firebase
145
  info = gr.HTML(f"""
 
175
  readme = gr.Markdown(
176
  readme_content,
177
  )
178
+
179
+ with gr.Accordion("More Options:", open=False):
180
+ log = gr.Checkbox(label="Log to Firebase", value=True, interactive=True)
181
+
182
+ # When the button is clicked, call the generate function, inputs are taken from the UI elements, outputs are sent to outputs elements
183
+ run_button.click(fn=generate, inputs=[input_text, db_info, temperature, top_p, top_k, repetition_penalty, format_sql, stop_sequence, log], outputs=output_box, api_name="txt2sql")
184
+
185
 
186
  demo.queue(concurrency_count=1, max_size=20).launch(debug=True)