tykiww commited on
Commit
0a9c38b
1 Parent(s): 42466cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -75,9 +75,12 @@ def main(conf):
75
  gr.Markdown("""2. Or, go straight to the next tab to just ask your question to the
76
  meetings that are already included!""")
77
  create_unique_key = gr.Button("Generate unique key")
78
- output_unique_key = gr.Textbox(label="Your session key & time.")
 
 
 
79
  create_unique_key.click(fn=generate_key,
80
- outputs=output_unique_key, interactive=True ,show_copy_button=True, show_label=True)
81
 
82
  gr.Markdown("### Upload Transcript and Necessary Context")
83
  load_file = gr.UploadButton(label="Upload Transcript (.vtt)",
 
75
  gr.Markdown("""2. Or, go straight to the next tab to just ask your question to the
76
  meetings that are already included!""")
77
  create_unique_key = gr.Button("Generate unique key")
78
+ output_unique_key = gr.Textbox(label="Your session key",
79
+ interactive=True ,
80
+ show_copy_button=True,
81
+ show_label=True)
82
  create_unique_key.click(fn=generate_key,
83
+ outputs=output_unique_key)
84
 
85
  gr.Markdown("### Upload Transcript and Necessary Context")
86
  load_file = gr.UploadButton(label="Upload Transcript (.vtt)",