pavithra-devi commited on
Commit
bd48583
·
1 Parent(s): f64ef7b
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -18,7 +18,16 @@ input_interfaces: list = []
18
 
19
  with gr.Blocks(theme=gr.themes.Soft()) as app:
20
  with gr.Row():
21
- title = "Text Summarizer..."
 
 
 
 
 
 
 
 
 
22
 
23
 
24
 
 
18
 
19
  with gr.Blocks(theme=gr.themes.Soft()) as app:
20
  with gr.Row():
21
+ gr.Label("Text Summarizer...")
22
+
23
+ with gr.Row():
24
+ gr.Markdown("Type in your document which you wanna summarize...")
25
+
26
+ with gr.Row():
27
+ with gr.Column():
28
+ gr.Label("gonna be the input box")
29
+ with gr.Column():
30
+ gr.Label("gonna be the output box")
31
 
32
 
33