Update app.py
Browse files
app.py
CHANGED
|
@@ -12,7 +12,7 @@ from twelvelabs import TwelveLabs
|
|
| 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
|
| 16 |
|
| 17 |
with tab1:
|
| 18 |
st.header("Project Description")
|
|
@@ -75,15 +75,11 @@ with tab2:
|
|
| 75 |
else:
|
| 76 |
st.success(f"Uploaded {video_path}. The unique identifier of your video is {task.video_id}.")
|
| 77 |
|
| 78 |
-
with tab3:
|
| 79 |
-
st.header("Video Indexer")
|
| 80 |
-
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 81 |
-
# Integration and API controls could be managed here
|
| 82 |
|
| 83 |
-
with
|
| 84 |
|
| 85 |
-
st.header("Video
|
| 86 |
-
st.write("
|
| 87 |
|
| 88 |
# Creating two columns for layout
|
| 89 |
col1, col2 = st.columns(2)
|
|
@@ -127,7 +123,7 @@ with tab4:
|
|
| 127 |
# Run this script using the following command:
|
| 128 |
# streamlit run your_script_name.py
|
| 129 |
|
| 130 |
-
with
|
| 131 |
st.header("Unique Value Add")
|
| 132 |
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 133 |
# Integration and API controls could be managed here
|
|
|
|
| 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"])
|
| 16 |
|
| 17 |
with tab1:
|
| 18 |
st.header("Project Description")
|
|
|
|
| 75 |
else:
|
| 76 |
st.success(f"Uploaded {video_path}. The unique identifier of your video is {task.video_id}.")
|
| 77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
|
| 79 |
+
with tab3:
|
| 80 |
|
| 81 |
+
st.header("Video Analyzer")
|
| 82 |
+
st.write("Choose the number of issues you like to examine, and get feedback on how to improve for your next job interview.")
|
| 83 |
|
| 84 |
# Creating two columns for layout
|
| 85 |
col1, col2 = st.columns(2)
|
|
|
|
| 123 |
# Run this script using the following command:
|
| 124 |
# streamlit run your_script_name.py
|
| 125 |
|
| 126 |
+
with tab4:
|
| 127 |
st.header("Unique Value Add")
|
| 128 |
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 129 |
# Integration and API controls could be managed here
|