InvictusRudra commited on
Commit
7fd337c
1 Parent(s): 4616eb7

Tried wrapping for web server

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -95,7 +95,7 @@ qa_interactive = pn.panel(
95
  output = pn.WidgetBox('*Output will show up here:*', qa_interactive, width=630, scroll=True)
96
 
97
  # layout
98
- pn.Column(
99
  pn.pane.Markdown("""
100
  Question Answering with your PDF file!
101
 
@@ -107,4 +107,7 @@ pn.Column(
107
  output,
108
  widgets
109
 
 
 
 
110
  ).servable()
 
95
  output = pn.WidgetBox('*Output will show up here:*', qa_interactive, width=630, scroll=True)
96
 
97
  # layout
98
+ layout = pn.Column(
99
  pn.pane.Markdown("""
100
  Question Answering with your PDF file!
101
 
 
107
  output,
108
  widgets
109
 
110
+ )
111
+ pn.template.FastListTemplate(
112
+ site="Panel", title="Example", main=[layout],
113
  ).servable()