import streamlit as st from PIL import Image import base64 import yaml import os import urllib.request import tarfile from yaml.loader import SafeLoader # Page setup st.set_page_config( layout="wide", page_icon="/home/ubuntu/images/opensearch_mark_default.png" ) st.markdown(""" """, unsafe_allow_html=True) # Header with logo and title col_logo, col_title = st.columns([31, 66]) with col_logo: st.markdown("""
""", unsafe_allow_html=True) # Optional: Add a margin-top to the demo section to avoid overlap st.markdown("
", unsafe_allow_html=True) # st.write("") # st.write("") # st.write("") # st.write("") col1, col2, col3 = st.columns(3) with col1: st.markdown("""
🔍
AI Search
""", unsafe_allow_html=True) with col2: st.markdown("""
💬
Multimodal RAG
""", unsafe_allow_html=True) with col3: st.markdown("""
🛍️
Agentic Shopping Assistant
""", unsafe_allow_html=True)