Update app.py
Browse files
app.py
CHANGED
@@ -58,5 +58,11 @@ def main():
|
|
58 |
st.write("Response:")
|
59 |
st.write(response)
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
if __name__ == "__main__":
|
62 |
-
main()
|
|
|
58 |
st.write("Response:")
|
59 |
st.write(response)
|
60 |
|
61 |
+
# Add links to the sidebar with the same spacing properties
|
62 |
+
|
63 |
+
st.sidebar.markdown("<p class='sidebar-link'>๐ <a href='https://chandrakalagowda-demo2.hf.space/'> PDF Bot </a></p>", unsafe_allow_html=True)
|
64 |
+
st.sidebar.markdown("<p class='sidebar-link'>๐ผ๏ธ <a href='https://insightly-image-reader.hf.space'> Image Reader</a></p>", unsafe_allow_html=True)
|
65 |
+
st.sidebar.markdown("<p class='sidebar-link'>๐ธ <a href='https://insightly-csv-bot.hf.space/'> Frame Capturer</a></p>", unsafe_allow_html=True)
|
66 |
+
|
67 |
if __name__ == "__main__":
|
68 |
+
main()
|