File size: 578 Bytes
2b88f5a
7d84c0c
3d5e4e5
f6df57e
 
3516ead
23960ff
9e68a39
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23960ff
4dd1267
 
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
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")

with st.container():
    with col1:
        st.image(image, width = 250)

    with col2:
        st.title("RAISE AI POLICY BENCHMARK")
with st.container():
    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)