Abhaykoul commited on
Commit
e5c7673
1 Parent(s): ab28846

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -1,6 +1,5 @@
1
  import streamlit as st
2
  import requests
3
- from PIL import Image
4
 
5
  # Create a session for reusing connections
6
  session = requests.Session()
@@ -46,6 +45,9 @@ def main():
46
  st.sidebar.header("ℹ️ About this App")
47
  st.sidebar.info("This app uses chat and web search APIs by HelpingAI. The founder of HelpingAI is Abhay Koul. The web search API used in this app is publicly available and its name is Webscout API. For any inquiries or assistance, please contact the developer: Telegram: @OEvortex, Email: koulabhay25@gmail.com.")
48
 
 
 
 
49
  if generate_report:
50
  if query:
51
  with st.spinner('🔄 Searching...'):
@@ -65,8 +67,5 @@ def main():
65
  else:
66
  st.sidebar.error("❗ Please enter a research query.")
67
 
68
- st.markdown("---")
69
- st.markdown("© 2023 HelpingAI. All rights reserved.")
70
-
71
  if __name__ == "__main__":
72
  main()
 
1
  import streamlit as st
2
  import requests
 
3
 
4
  # Create a session for reusing connections
5
  session = requests.Session()
 
45
  st.sidebar.header("ℹ️ About this App")
46
  st.sidebar.info("This app uses chat and web search APIs by HelpingAI. The founder of HelpingAI is Abhay Koul. The web search API used in this app is publicly available and its name is Webscout API. For any inquiries or assistance, please contact the developer: Telegram: @OEvortex, Email: koulabhay25@gmail.com.")
47
 
48
+ st.sidebar.markdown("---")
49
+ st.sidebar.markdown("© 2023 HelpingAI. All rights reserved.")
50
+
51
  if generate_report:
52
  if query:
53
  with st.spinner('🔄 Searching...'):
 
67
  else:
68
  st.sidebar.error("❗ Please enter a research query.")
69
 
 
 
 
70
  if __name__ == "__main__":
71
  main()