rhea2809's picture
Update app.py
98bd6dc
raw
history blame
797 Bytes
import streamlit as st
from PIL import Image
image = Image.open("rai_raise_main_badge_pos_102.png")
st.image(image, width = 200)
st.title("RAISE CORPORATE AI POLICY BENCHMARK")
col1, col2 = st.columns(2,gap="small")
with col1:
video_file = open('Rai Nov 23 Copy 01.mp4', 'rb')
video_bytes = video_file.read()
st.video(video_bytes)
with col2:
video_file1 = open('Demo.mp4', 'rb')
video_bytes1 = video_file1.read()
st.video(video_bytes1)
url1 = "https://www.responsible.ai/faq"
st.write("FAQ πŸ”— [link](%s)" % url1)
st.markdown("FAQ πŸ”—[link](%s)" % url1)
url = "https://share.streamlit.io/mesmith027/streamlit_webapps/main/MC_pi/streamlit_app.py"
st.write("check out this [link](%s)" % url)
st.markdown("check out this [link](%s)" % url)