tykiww commited on
Commit
49a1ca0
·
verified ·
1 Parent(s): f01a006

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -86,9 +86,7 @@ def main(conf):
86
  show_label=True)
87
  create_unique_key.click(fn=generate_key,
88
  outputs=output_unique_key)
89
- create_unique_key.click(fn=b_clicked,
90
- inputs=create_unique_key,
91
- outputs=load_file)
92
 
93
  ### This should not be visible until key is generated.
94
  gr.Markdown("### Upload Transcript and Necessary Context")
@@ -99,7 +97,9 @@ def main(conf):
99
  value=conf["defaults"]["goals"]) # not incorporated yet. Will be with Q&A.
100
  repository = gr.Textbox(label="Progress", value="Waiting for load...", visible=True)
101
  load_file.upload(process_transcripts, [load_file, goals, output_unique_key], repository)
102
-
 
 
103
 
104
 
105
  # Meeting Question & Answer Page
 
86
  show_label=True)
87
  create_unique_key.click(fn=generate_key,
88
  outputs=output_unique_key)
89
+
 
 
90
 
91
  ### This should not be visible until key is generated.
92
  gr.Markdown("### Upload Transcript and Necessary Context")
 
97
  value=conf["defaults"]["goals"]) # not incorporated yet. Will be with Q&A.
98
  repository = gr.Textbox(label="Progress", value="Waiting for load...", visible=True)
99
  load_file.upload(process_transcripts, [load_file, goals, output_unique_key], repository)
100
+ create_unique_key.click(fn=b_clicked,
101
+ inputs=create_unique_key,
102
+ outputs=load_file)
103
 
104
 
105
  # Meeting Question & Answer Page