Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -2,8 +2,6 @@ import streamlit as st
|
|
2 |
from PIL import Image
|
3 |
|
4 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
5 |
-
video_file = open('raii.mp4', 'rb')
|
6 |
-
video_bytes = video_file.read()
|
7 |
|
8 |
col1, col2 = st.columns(2,gap="small")
|
9 |
|
@@ -12,5 +10,13 @@ with col1:
|
|
12 |
|
13 |
with col2:
|
14 |
st.title("RAISE AI POLICY BENCHMARK")
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
from PIL import Image
|
3 |
|
4 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
|
|
|
|
5 |
|
6 |
col1, col2 = st.columns(2,gap="small")
|
7 |
|
|
|
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('Full Video Demo', 'rb')
|
21 |
+
video_bytes1 = video_file1.read()
|
22 |
+
st.video(video_bytes1)
|