robertselvam commited on
Commit
b3b67ed
·
1 Parent(s): c03e845

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -35,18 +35,18 @@ with gr.Blocks(css="style.css",theme='xiaobaiyuan/theme_brief') as demo:
35
  summary = gr.Textbox(label = "Summary")
36
 
37
  with gr.Row(elem_id = "col-container",scale=0.80):
38
- with gr.Tab("Tags"):
39
  with gr.Column(elem_id = "col-container",scale=0.80):
40
  tags_btn = gr.Button("Tags Extracter")
41
  tags = gr.Textbox(label = "Tags", lines=10)
42
 
43
- with gr.Tab("Key Values"):
44
  with gr.Column(elem_id = "col-container",scale=0.80):
45
  key_value_btn = gr.Button("Key Value Extracter")
46
  key_value = gr.Textbox(label = "Key Value",lines=10)
47
 
48
 
49
- with gr.Tab("Clauses"):
50
  with gr.Column(elem_id = "col-container",scale=0.80):
51
  clauses_btn = gr.Button("Clauses Extracter")
52
  clauses = gr.Textbox(label = "Clauses", lines=10)
 
35
  summary = gr.Textbox(label = "Summary")
36
 
37
  with gr.Row(elem_id = "col-container",scale=0.80):
38
+ with gr.TabItem("Tags"):
39
  with gr.Column(elem_id = "col-container",scale=0.80):
40
  tags_btn = gr.Button("Tags Extracter")
41
  tags = gr.Textbox(label = "Tags", lines=10)
42
 
43
+ with gr.TabItem("Key Values"):
44
  with gr.Column(elem_id = "col-container",scale=0.80):
45
  key_value_btn = gr.Button("Key Value Extracter")
46
  key_value = gr.Textbox(label = "Key Value",lines=10)
47
 
48
 
49
+ with gr.TabItem("Clauses"):
50
  with gr.Column(elem_id = "col-container",scale=0.80):
51
  clauses_btn = gr.Button("Clauses Extracter")
52
  clauses = gr.Textbox(label = "Clauses", lines=10)