Asaad Almutareb commited on
Commit
e66a350
1 Parent(s): 0eacc0c

added a favicon and updated tab title

Browse files
Files changed (2) hide show
  1. app.py +4 -4
  2. innovation_pathfinder_ai/favicon.ico +0 -0
app.py CHANGED
@@ -93,12 +93,12 @@ if __name__ == "__main__":
93
  """
94
 
95
  title = """
96
- <div style="text-align: left ;max-width: 700px;">
97
- <p>Hello Human, I am your AI knowledge research assistant. <br> I can help you research and explore topics across ArXiv, Wikipedia and the internet.<br />
98
  </div>
99
  """
100
 
101
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
102
  # with gr.Tab("Google|Wikipedia|Arxiv"):
103
  with gr.Column(elem_id="col-container"):
104
  gr.HTML(title)
@@ -119,7 +119,7 @@ if __name__ == "__main__":
119
  gr.Markdown("Nothing yet...")
120
 
121
  demo.queue()
122
- demo.launch(debug=True, share=True)
123
 
124
  x = 0 # for debugging purposes
125
  app = gr.mount_gradio_app(app, demo, path="/")
 
93
  """
94
 
95
  title = """
96
+ <div style="text-align:left;">
97
+ <p>Hello Human, I am your AI knowledge research assistant. I can explore topics across ArXiv, Wikipedia and use Google search.<br />
98
  </div>
99
  """
100
 
101
+ with gr.Blocks(theme=gr.themes.Soft(), title="AlfredAI - AI Knowledge Research Assistant") as demo:
102
  # with gr.Tab("Google|Wikipedia|Arxiv"):
103
  with gr.Column(elem_id="col-container"):
104
  gr.HTML(title)
 
119
  gr.Markdown("Nothing yet...")
120
 
121
  demo.queue()
122
+ demo.launch(debug=True, favicon_path=os.path.join(os.path.dirname(__file__),"innovation_pathfinder_ai/favicon.ico"), share=True)
123
 
124
  x = 0 # for debugging purposes
125
  app = gr.mount_gradio_app(app, demo, path="/")
innovation_pathfinder_ai/favicon.ico ADDED