Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,10 +3,8 @@ from PIL import Image
|
|
3 |
|
4 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
title_container.image(image, width = 200)
|
9 |
-
title_container.title("RAISE CORPORATE AI POLICY BENCHMARK")
|
10 |
col1, col2 = st.columns(2,gap="small")
|
11 |
|
12 |
with col1:
|
@@ -19,5 +17,14 @@ with col2:
|
|
19 |
video_bytes1 = video_file1.read()
|
20 |
st.video(video_bytes1)
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
|
|
|
3 |
|
4 |
image = Image.open("rai_raise_main_badge_pos_102.png")
|
5 |
|
6 |
+
st.image(image, width = 200)
|
7 |
+
st.title("RAISE CORPORATE AI POLICY BENCHMARK")
|
|
|
|
|
8 |
col1, col2 = st.columns(2,gap="small")
|
9 |
|
10 |
with col1:
|
|
|
17 |
video_bytes1 = video_file1.read()
|
18 |
st.video(video_bytes1)
|
19 |
|
20 |
+
url1 = "https://www.responsible.ai/faq"
|
21 |
+
st.write("FAQ π [link](%s)" % url1)
|
22 |
+
|
23 |
+
st.markdown("FAQ π[link](%s)" % url1)
|
24 |
+
|
25 |
+
url = "https://share.streamlit.io/mesmith027/streamlit_webapps/main/MC_pi/streamlit_app.py"
|
26 |
+
st.write("check out this [link](%s)" % url)
|
27 |
+
|
28 |
+
st.markdown("check out this [link](%s)" % url)
|
29 |
|
30 |
|