Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
|
|
|
|
|
|
|
|
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
st.
|
| 18 |
-
st.
|
| 19 |
-
st.page_link("pages/
|
| 20 |
-
st.
|
| 21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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)
|