epochs-demos commited on
Commit
6f57eb8
·
1 Parent(s): 93bdb59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -32,7 +32,8 @@ st.markdown(header_css, unsafe_allow_html=True)
32
  header_html = f"""
33
  <div class="header">
34
  <img src='data:image/png;base64,{image_base64}' alt="Logo"/>
35
- <p>Disclaimer: This web app is for demonstration purposes only and not intended for commercial use. Contact: [email protected] for full solution.</p>
 
36
  </div>
37
  """
38
 
@@ -82,5 +83,7 @@ with gr.Blocks() as demo:
82
  ask_button.click(app.ask_question, inputs=question_input, outputs=answer)
83
 
84
  if __name__ == "__main__":
 
 
85
  demo.title = "CHATGPT-PAPER-READER"
86
  demo.launch()
 
32
  header_html = f"""
33
  <div class="header">
34
  <img src='data:image/png;base64,{image_base64}' alt="Logo"/>
35
+ <p>Disclaimer: It is important to note that the purpose of this application is solely for demonstration purposes, showcasing the potential capabilities of AI systems. The information and results provided by the application should not be regarded as professional advice or a substitute for expert consultation in the relevant domain.
36
+ . Contact: [email protected] for full solution.</p>
37
  </div>
38
  """
39
 
 
83
  ask_button.click(app.ask_question, inputs=question_input, outputs=answer)
84
 
85
  if __name__ == "__main__":
86
+ iface = gr.Interface( title=title, description=description)
87
+ iface.launch()
88
  demo.title = "CHATGPT-PAPER-READER"
89
  demo.launch()