Spaces:
Runtime error
Runtime error
import streamlit as st | |
from PIL import Image | |
image = Image.open("rai_raise_main_badge_pos_102.png") | |
col1, col2 = st.columns(2,gap="small") | |
c1, c2, c3 = st.columns(3,gap="small") | |
title_container = st.container() | |
title_container.image(image, width = 200) | |
title_container.title("RAISE CORPORATE AI POLICY BENCHMARK") | |
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) | |