seawolf2357 commited on
Commit
e4a4982
·
verified ·
1 Parent(s): 60bd0ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -436,14 +436,13 @@ with gr.Blocks(css_paths="app.css",theme=theme) as demo:
436
  history_drawer.close(lambda: gr.update(
437
  open=False), inputs=[], outputs=[history_drawer])
438
 
 
439
  btn.click(
440
- lambda: asyncio.create_task(generation_code(input.value, setting.value, history.value)),
441
  inputs=[input, setting, history],
442
  outputs=[code_output, history, sandbox, state_tab, code_drawer]
443
  )
444
 
445
-
446
-
447
  clear_btn.click(clear_history, inputs=[], outputs=[history])
448
 
449
  if __name__ == "__main__":
 
436
  history_drawer.close(lambda: gr.update(
437
  open=False), inputs=[], outputs=[history_drawer])
438
 
439
+
440
  btn.click(
441
+ lambda x, y, z: asyncio.create_task(generation_code(x, y, z)),
442
  inputs=[input, setting, history],
443
  outputs=[code_output, history, sandbox, state_tab, code_drawer]
444
  )
445
 
 
 
446
  clear_btn.click(clear_history, inputs=[], outputs=[history])
447
 
448
  if __name__ == "__main__":