mzameshina commited on
Commit
9c8cbe6
·
verified ·
1 Parent(s): f69116b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -28
app.py CHANGED
@@ -617,32 +617,32 @@ with demo:
617
  outputs=[gen_key_btn],
618
  )
619
 
620
- ########################## Main document Part ##########################
621
-
622
- gr.Markdown("<hr />")
623
- gr.Markdown("## Step 2.1: Select the document you want to encrypt\n\n"
624
- """To make it simple, we pre-compiled the following document, but you are free to choose
625
- on which part you want to run this example.
626
- """
627
- )
628
-
629
- with gr.Row():
630
- with gr.Column(scale=5):
631
- original_sentences_box = gr.CheckboxGroup(
632
- ORIGINAL_DOCUMENT,
633
- value=ORIGINAL_DOCUMENT,
634
- label="Contract:",
635
- show_label=True,
636
- )
637
-
638
- with gr.Column(scale=1, min_width=6):
639
- gr.HTML("<div style='height: 77px;'></div>")
640
- encrypt_doc_btn = gr.Button("Encrypt the document")
641
-
642
- with gr.Column(scale=5):
643
- encrypted_doc_box = gr.Textbox(
644
- label="Encrypted document:", show_label=True, interactive=False, lines=10
645
- )
646
 
647
 
648
  ########################## User Query Part ##########################
@@ -659,13 +659,13 @@ with demo:
659
 
660
  with gr.Column(scale=5):
661
  default_query_box = gr.Dropdown(
662
- list(DEFAULT_QUERIES.values()), label="PROMPT EXAMPLES:"
663
  )
664
 
665
  gr.Markdown("Or")
666
 
667
  query_box = gr.Textbox(
668
- value="What is Kate international bank account number?", label="CUSTOMIZED PROMPT:", interactive=True
669
  )
670
 
671
  default_query_box.change(
 
617
  outputs=[gen_key_btn],
618
  )
619
 
620
+ ########################### Main document Part ##########################
621
+
622
+ # gr.Markdown("<hr />")
623
+ # gr.Markdown("## Step 2.1: Select the document you want to encrypt\n\n"
624
+ # """To make it simple, we pre-compiled the following document, but you are free to choose
625
+ # on which part you want to run this example.
626
+ # """
627
+ # )
628
+
629
+ # with gr.Row():
630
+ # with gr.Column(scale=5):
631
+ # original_sentences_box = gr.CheckboxGroup(
632
+ # ORIGINAL_DOCUMENT,
633
+ # value=ORIGINAL_DOCUMENT,
634
+ # label="Contract:",
635
+ # show_label=True,
636
+ # )
637
+
638
+ # with gr.Column(scale=1, min_width=6):
639
+ # gr.HTML("<div style='height: 77px;'></div>")
640
+ # encrypt_doc_btn = gr.Button("Encrypt the document")
641
+
642
+ # with gr.Column(scale=5):
643
+ # encrypted_doc_box = gr.Textbox(
644
+ # label="Encrypted document:", show_label=True, interactive=False, lines=10
645
+ # )
646
 
647
 
648
  ########################## User Query Part ##########################
 
659
 
660
  with gr.Column(scale=5):
661
  default_query_box = gr.Dropdown(
662
+ list(DEFAULT_QUERIES.values()), label="PROMPT"
663
  )
664
 
665
  gr.Markdown("Or")
666
 
667
  query_box = gr.Textbox(
668
+ value=transcription_output, label="CUSTOMIZED PROMPT:", interactive=True
669
  )
670
 
671
  default_query_box.change(