rhea2809 commited on
Commit
9e68a39
·
1 Parent(s): baa8ee1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -12
app.py CHANGED
@@ -5,18 +5,22 @@ image = Image.open("rai_raise_main_badge_pos_102.png")
5
 
6
  col1, col2 = st.columns(2,gap="small")
7
 
8
- with col1:
9
- st.image(image, width = 250)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
- with col2:
12
- st.title("RAISE AI POLICY BENCHMARK")
13
 
14
- with col1:
15
- video_file = open('Rai Nov 23 Copy 01.mp4', 'rb')
16
- video_bytes = video_file.read()
17
- st.video(video_bytes)
18
 
19
- with col2:
20
- video_file1 = open('Demo.mp4', 'rb')
21
- video_bytes1 = video_file1.read()
22
- st.video(video_bytes1)
 
5
 
6
  col1, col2 = st.columns(2,gap="small")
7
 
8
+ with st.container():
9
+ with col1:
10
+ st.image(image, width = 250)
11
+
12
+ with col2:
13
+ st.title("RAISE AI POLICY BENCHMARK")
14
+ with st.container():
15
+ with col1:
16
+ video_file = open('Rai Nov 23 Copy 01.mp4', 'rb')
17
+ video_bytes = video_file.read()
18
+ st.video(video_bytes)
19
+
20
+ with col2:
21
+ video_file1 = open('Demo.mp4', 'rb')
22
+ video_bytes1 = video_file1.read()
23
+ st.video(video_bytes1)
24
 
 
 
25
 
 
 
 
 
26