DavidFernandes commited on
Commit
458ca5a
Β·
verified Β·
1 Parent(s): c87d3f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +29 -6
app.py CHANGED
@@ -3,6 +3,8 @@ import streamlit as st
3
  st.set_page_config(
4
  page_title="J.A.RV.I.S.",
5
  page_icon="",
 
 
6
  )
7
  custom_icon_url = "https://example.com/path/to/icon.png"
8
 
@@ -11,11 +13,32 @@ st.markdown("<h1 style='text-align: center; color: white;'>Explore the power of
11
  st.markdown("<h5 style='text-align: center; color: white; '>with J.A.R.V.I.S.</h5>", unsafe_allow_html=True)
12
 
13
 
14
- st.markdown("<p style='text-align: center; color: violet; '>Quick Links</p>", unsafe_allow_html=True)
 
 
 
15
 
 
 
 
 
16
 
17
- st.page_link("pages/AI Search.py", label="AI Search", icon="πŸ”", use_container_width=True)
18
- st.page_link("pages/Chat With PDF.py", label="Chat With PDF", icon="πŸ“‹", use_container_width=True)
19
- st.page_link("pages/Image Generator.py", label="Image Generator", icon="πŸ–Œ", use_container_width=True)
20
- st.page_link("pages/Multimodal Chat.py", label="Multimodal Chat", icon="πŸ€–", use_container_width=True)
21
- st.page_link("pages/Website QnA.py", label="Website QnA", icon="🌐", use_container_width=True)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  st.set_page_config(
4
  page_title="J.A.RV.I.S.",
5
  page_icon="",
6
+ layout="centered",
7
+ initial_sidebar_state="expanded"
8
  )
9
  custom_icon_url = "https://example.com/path/to/icon.png"
10
 
 
13
  st.markdown("<h5 style='text-align: center; color: white; '>with J.A.R.V.I.S.</h5>", unsafe_allow_html=True)
14
 
15
 
16
+ with st.container(border=True):
17
+ st.markdown("<h5 style='text-align: center; color: violet;'>πŸ” AI Search</h5>", unsafe_allow_html=True)
18
+ #st.page_link("pages/AI Search.py", label="", icon="", use_container_width=True)
19
+ st.markdown("<p style='text-align: center; color: white; '>Use AI to Search the Internet for you</p>", unsafe_allow_html=True)
20
 
21
+ with st.container(border=True):
22
+ st.markdown("<h5 style='text-align: center; color: violet;'>🎨 Image Generator</h5>", unsafe_allow_html=True)
23
+ #st.page_link("pages/Image Generator.py", label="", icon="πŸ–Œ", use_container_width=True)
24
+ st.markdown("<p style='text-align: center; color: white; '>Generate Images from Text, Image, and much more</p>", unsafe_allow_html=True)
25
 
26
+ with st.container(border=True):
27
+ st.markdown("<h5 style='text-align: center; color: violet;'>πŸ€– Multimodal Chat</h5>", unsafe_allow_html=True)
28
+ #st.page_link("pages/Multimodal Chat.py", label="", icon="", use_container_width=True)
29
+ st.markdown("<p style='text-align: center; color: white; '>Chat with a Multilingual AI, Ask questions on Images, Ask questions on Documents</p>", unsafe_allow_html=True)
30
+
31
+ with st.container(border=True):
32
+ st.markdown("<h5 style='text-align: center; color: violet;'>πŸ“‹ Chat With PDF</h5>", unsafe_allow_html=True)
33
+ #st.page_link("pages/MultiPDF Chat.py", label="", icon="", use_container_width=True)
34
+ st.markdown("<p style='text-align: center; color: white; '>Upload Multiple PDFs and Ask Questions</p>", unsafe_allow_html=True)
35
+
36
+ with st.container(border=True):
37
+ st.markdown("<h5 style='text-align: center; color: violet;'>🧠 QuizTube</h5>", unsafe_allow_html=True)
38
+ #st.page_link("pages/QuizTube.py", label="", icon="", use_container_width=True)
39
+ st.markdown("<p style='text-align: center; color: white; '>Generate Quiz from a Youtube Video</p>", unsafe_allow_html=True)
40
+
41
+ with st.container(border=True):
42
+ st.markdown("<h5 style='text-align: center; color: violet;'>🌐 Website QnA</h5>", unsafe_allow_html=True)
43
+ #st.page_link("pages/Website QnA.py", label="", icon="", use_container_width=True)
44
+ st.markdown("<p style='text-align: center; color: white; '>Ask questions about a website</p>", unsafe_allow_html=True)