rhea2809 commited on
Commit
98bd6dc
Β·
1 Parent(s): dc0e112

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -4
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
- title_container = st.container()
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