alexanderHSG commited on
Commit
d798301
·
1 Parent(s): 609725d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -315,7 +315,7 @@ async () => {{
315
  ## GRADIO UI LAYOUT & FUNCTIONALITY
316
  ## ---------------------------------------------------------------------------------------------------------------------
317
 
318
- with gr.Blocks(title='Slide Inspo', theme='Soft') as demo:
319
 
320
  with gr.Row():
321
  graphVisual = gr.HTML()
@@ -349,7 +349,7 @@ with gr.Blocks(title='Slide Inspo', theme='Soft') as demo:
349
  storyline_prompt.submit(slide_deck_storyline,
350
  inputs = [storyline_prompt, nr_storypoints_to_build],
351
  outputs = [storyline_output_JSON, storyline_output_storypoint_name_list, storyline_output_pretty])
352
- demo.load(None,None,None,_js=scripts)
353
 
354
 
355
 
 
315
  ## GRADIO UI LAYOUT & FUNCTIONALITY
316
  ## ---------------------------------------------------------------------------------------------------------------------
317
 
318
+ with gr.Blocks(title='Slide Inspo', theme='Soft', js=scripts) as demo:
319
 
320
  with gr.Row():
321
  graphVisual = gr.HTML()
 
349
  storyline_prompt.submit(slide_deck_storyline,
350
  inputs = [storyline_prompt, nr_storypoints_to_build],
351
  outputs = [storyline_output_JSON, storyline_output_storypoint_name_list, storyline_output_pretty])
352
+
353
 
354
 
355