Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
|
|
|
|
|
|
79 |
create_unique_key.click(fn=generate_key,
|
80 |
-
outputs=output_unique_key
|
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)",
|