import streamlit as st
import pandas as pd
import base64
import json
from st_pages import Page, Section, show_pages, add_page_title,add_indentation
st.set_page_config(
page_title="app",
page_icon="📈",
)
st.markdown("
Welcome to DataAI! 👋
", unsafe_allow_html=True)
st.sidebar.success("Please select a demo above.")
def get_base64_of_bin_file(png_file):
with open(png_file, "rb") as f:
data = f.read()
return base64.b64encode(data).decode()
def build_markup_for_logo(
png_file,
background_position="50% 10%",
margin_top="10%",
image_width="60%",
image_height="",
):
binary_string = get_base64_of_bin_file(png_file)
return """
""" % (
binary_string,
background_position,
margin_top,
image_width,
image_height,
)
def add_logo(png_file):
logo_markup = build_markup_for_logo(png_file)
st.markdown(
logo_markup,
unsafe_allow_html=True,
)
add_logo("logoo.png")
st.markdown("This is the demo for the usecases we've worked on.", unsafe_allow_html=True)
st.markdown("Select a demo from the sidebar to see some examples of what we can do!!!
", unsafe_allow_html=True)
footer="""
"""
st.markdown(footer,unsafe_allow_html=True)
main_bg_ext = "jpg"
main_bg = "vally4.jpg"
st.markdown(
f"""
""",
unsafe_allow_html=True
)
add_indentation()
# Specify what pages should be shown in the sidebar, and what their titles and icons
# should be
show_pages(
[
Page("app.py", "Home", "🏠"),
Section("GenAI", icon="🤖"),
Page("pages/AI_Chatbot.py", "AI Chatbot", "📈",in_section=True),
# Pages after a section will be indented
Page("pages/Auto_Code_Generation.py", "Auto Code Generation", "📈"),
Page("pages/Auto_Report_Generation.py", "Auto Report Generation", "📈"),
Page("pages/Auto_Score_Generation.py", "Auto Score Generation", "📈"),
Page("pages/core_risk.py", "Core Risk Classification", "📈"),
Page("pages/jury_records.py", "Jury Records", "📈"),
Page("pages/topic_classification.py", "Topic Classification", "📈"),
Section("Deep Learning", icon="🤖"),
Section("Machine Learning", icon="🤖")
]
)