eaglelandsonce
commited on
Commit
•
4dea222
1
Parent(s):
fdbb275
Update app.py
Browse files
app.py
CHANGED
@@ -12,11 +12,11 @@ from twelvelabs import TwelveLabs
|
|
12 |
client = TwelveLabs(api_key=os.environ.get('TL_API_KEY'))
|
13 |
|
14 |
# Creating tabs,
|
15 |
-
tab1, tab2, tab3, tab4 = st.tabs(["Project Description", "Video Uploader", "Video Analyzer", "Unique Value Add"])
|
16 |
|
17 |
with tab1:
|
18 |
st.header("Project Description")
|
19 |
-
st.write("Here
|
20 |
image_path = 'data/data_projectflow.png'
|
21 |
|
22 |
# Display the image
|
@@ -154,3 +154,11 @@ with tab4:
|
|
154 |
# Displaying items with numbering in a Streamlit text area
|
155 |
st.text_area("List of Items", "\n".join([f"{i+1}. {item}" for i, item in enumerate(items)]), height=600)
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
client = TwelveLabs(api_key=os.environ.get('TL_API_KEY'))
|
13 |
|
14 |
# Creating tabs,
|
15 |
+
tab1, tab2, tab3, tab4, tab5 = st.tabs(["Project Description", "Video Uploader", "Video Analyzer", "Unique Value Add", "Thanks Team"])
|
16 |
|
17 |
with tab1:
|
18 |
st.header("Project Description")
|
19 |
+
st.write("Here are the elements of our project.")
|
20 |
image_path = 'data/data_projectflow.png'
|
21 |
|
22 |
# Display the image
|
|
|
154 |
# Displaying items with numbering in a Streamlit text area
|
155 |
st.text_area("List of Items", "\n".join([f"{i+1}. {item}" for i, item in enumerate(items)]), height=600)
|
156 |
|
157 |
+
with tab5:
|
158 |
+
st.header("Thanks to the Team")
|
159 |
+
st.write("This tool isn’t just a testament to our technical capabilities—it’s a step forward in transforming how the world approaches recruitment. Thanks to your efforts, we are on the path to making recruitment processes more efficient, fair, and insightful, which will ultimately benefit countless individuals and organizations.")
|
160 |
+
image_path = 'data/data_ourteam.png'
|
161 |
+
|
162 |
+
# Display the image
|
163 |
+
st.image(image_path, caption='Our Team')
|
164 |
+
# Add more components as needed
|