shreyasiv commited on
Commit
169f52a
β€’
1 Parent(s): 6cbf4b3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -42,10 +42,6 @@ st.markdown(
42
  unsafe_allow_html=True,
43
  )
44
 
45
- # Add link to the sidebar
46
- st.sidebar.markdown("<p class='sidebar-link'>πŸ“ˆ <a href='https://insightly-csv-bot.hf.space/'> Insightly - CSV Bot</a></p>", unsafe_allow_html=True)
47
- st.sidebar.markdown("<p class='sidebar-link'>πŸ“š <a href='https://chandrakalagowda-demo2.hf.space/'> Insightly - PDF Bot </a></p>", unsafe_allow_html=True)
48
- st.sidebar.markdown("<p class='sidebar-link'>πŸ“Έ <a href='https://insightly-image-reader.hf.space'> Insightly - Frame Capturer</a></p>", unsafe_allow_html=True)
49
 
50
  def process_query(image, query):
51
  encoding = processor(image, query, return_tensors="pt")
@@ -60,6 +56,11 @@ st.set_page_config(page_title="Insightly")
60
  # Sidebar contents
61
  with st.sidebar:
62
  st.sidebar.image("https://i.ibb.co/bX6GdqG/insightly-wbg.png", use_column_width=True)
 
 
 
 
 
63
 
64
 
65
 
 
42
  unsafe_allow_html=True,
43
  )
44
 
 
 
 
 
45
 
46
  def process_query(image, query):
47
  encoding = processor(image, query, return_tensors="pt")
 
56
  # Sidebar contents
57
  with st.sidebar:
58
  st.sidebar.image("https://i.ibb.co/bX6GdqG/insightly-wbg.png", use_column_width=True)
59
+ # Add link to the sidebar
60
+ st.sidebar.markdown("<p class='sidebar-link'>πŸ“ˆ <a href='https://insightly-csv-bot.hf.space/'> Insightly - CSV Bot</a></p>", unsafe_allow_html=True)
61
+ st.sidebar.markdown("<p class='sidebar-link'>πŸ“š <a href='https://chandrakalagowda-demo2.hf.space/'> Insightly - PDF Bot </a></p>", unsafe_allow_html=True)
62
+ st.sidebar.markdown("<p class='sidebar-link'>πŸ“Έ <a href='https://insightly-image-reader.hf.space'> Insightly - Frame Capturer</a></p>", unsafe_allow_html=True)
63
+
64
 
65
 
66