Avinashstat commited on
Commit
08da4f1
·
verified ·
1 Parent(s): a9deb57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -239,7 +239,8 @@ recommender = SemanticSearch()
239
  title = 'PDF GPT Turbo'
240
  description = """ PDF GPT Turbo allows you to chat with your PDF files. It uses Google's Universal Sentence Encoder with Deep averaging network (DAN) to give hallucination free response by improving the embedding quality of OpenAI. It cites the page number in square brackets([Page No.]) and shows where the information is located, adding credibility to the responses."""
241
 
242
- with gr.Blocks(css="""#chatbot { font-size: 14px; min-height: 1200; }""") as demo:
 
243
  gr.Markdown(f'<center><h3>{title}</h3></center>')
244
  gr.Markdown(description)
245
 
 
239
  title = 'PDF GPT Turbo'
240
  description = """ PDF GPT Turbo allows you to chat with your PDF files. It uses Google's Universal Sentence Encoder with Deep averaging network (DAN) to give hallucination free response by improving the embedding quality of OpenAI. It cites the page number in square brackets([Page No.]) and shows where the information is located, adding credibility to the responses."""
241
 
242
+ #with gr.Blocks(css="""#chatbot { font-size: 14px; min-height: 1200; }""") as demo:
243
+ with gr.Blocks() as demo:
244
  gr.Markdown(f'<center><h3>{title}</h3></center>')
245
  gr.Markdown(description)
246