Spaces:
Sleeping
Sleeping
File size: 2,672 Bytes
983363f 458ca5a 983363f 458ca5a 983363f 458ca5a 983363f 458ca5a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import streamlit as st
st.set_page_config(
page_title="J.A.RV.I.S.",
page_icon="",
layout="centered",
initial_sidebar_state="expanded"
)
custom_icon_url = "https://example.com/path/to/icon.png"
st.markdown("<h1 style='text-align: center; color: white;'>Explore the power of AI</h1>", unsafe_allow_html=True)
st.markdown("<h5 style='text-align: center; color: white; '>with J.A.R.V.I.S.</h5>", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π AI Search</h5>", unsafe_allow_html=True)
#st.page_link("pages/AI Search.py", label="", icon="", use_container_width=True)
st.markdown("<p style='text-align: center; color: white; '>Use AI to Search the Internet for you</p>", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π¨ Image Generator</h5>", unsafe_allow_html=True)
#st.page_link("pages/Image Generator.py", label="", icon="π", use_container_width=True)
st.markdown("<p style='text-align: center; color: white; '>Generate Images from Text, Image, and much more</p>", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π€ Multimodal Chat</h5>", unsafe_allow_html=True)
#st.page_link("pages/Multimodal Chat.py", label="", icon="", use_container_width=True)
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)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π Chat With PDF</h5>", unsafe_allow_html=True)
#st.page_link("pages/MultiPDF Chat.py", label="", icon="", use_container_width=True)
st.markdown("<p style='text-align: center; color: white; '>Upload Multiple PDFs and Ask Questions</p>", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π§ QuizTube</h5>", unsafe_allow_html=True)
#st.page_link("pages/QuizTube.py", label="", icon="", use_container_width=True)
st.markdown("<p style='text-align: center; color: white; '>Generate Quiz from a Youtube Video</p>", unsafe_allow_html=True)
with st.container(border=True):
st.markdown("<h5 style='text-align: center; color: violet;'>π Website QnA</h5>", unsafe_allow_html=True)
#st.page_link("pages/Website QnA.py", label="", icon="", use_container_width=True)
st.markdown("<p style='text-align: center; color: white; '>Ask questions about a website</p>", unsafe_allow_html=True) |