Update app.py
Browse files
app.py
CHANGED
|
@@ -35,3 +35,47 @@ if st.button("Summarize Video"):
|
|
| 35 |
|
| 36 |
# Run this script using the following command:
|
| 37 |
# streamlit run your_script_name.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
# Run this script using the following command:
|
| 37 |
# streamlit run your_script_name.py
|
| 38 |
+
|
| 39 |
+
# Creating tabs,
|
| 40 |
+
tab1, tab2, tab3, tab4, tab5 = st.tabs(["Project Description", "Video Uploader", "Video Indexer", "Video Prompt", "Unique Value Add"])
|
| 41 |
+
|
| 42 |
+
with tab1:
|
| 43 |
+
st.header("Project Description")
|
| 44 |
+
st.write("Here you can describe the project in detail.")
|
| 45 |
+
image_path = 'data/projectflow.png'
|
| 46 |
+
|
| 47 |
+
# Display the image
|
| 48 |
+
st.image(image_path, caption='Project Flow Diagram')
|
| 49 |
+
# Add more components as needed
|
| 50 |
+
|
| 51 |
+
with tab2:
|
| 52 |
+
st.header("Video Uploader")
|
| 53 |
+
st.write("This tab can be used to display Scrum-related data and analytics.")
|
| 54 |
+
# You can use things like st.dataframe(df) to show data
|
| 55 |
+
|
| 56 |
+
image_path2 = 'data/quantumai.png'
|
| 57 |
+
|
| 58 |
+
# Display the image
|
| 59 |
+
st.image(image_path2, caption='Synthetic Data')
|
| 60 |
+
# Add more components as needed
|
| 61 |
+
# Create a link to an external URL
|
| 62 |
+
url = "https://chat.openai.com/g/g-RjiG3D1mm-velocity-scrum-master"
|
| 63 |
+
link_text = "Velocity Scrum Master"
|
| 64 |
+
|
| 65 |
+
# Use Markdown to create the link
|
| 66 |
+
st.markdown(f'[**{link_text}**]({url})')
|
| 67 |
+
|
| 68 |
+
with tab3:
|
| 69 |
+
st.header("Video Indexer")
|
| 70 |
+
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 71 |
+
# Integration and API controls could be managed here
|
| 72 |
+
|
| 73 |
+
with tab4:
|
| 74 |
+
st.header("Video Prompt")
|
| 75 |
+
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 76 |
+
# Integration and API controls could be managed here
|
| 77 |
+
|
| 78 |
+
with tab5:
|
| 79 |
+
st.header("Unique Value Add")
|
| 80 |
+
st.write("Information and controls related to the Scrum TruEra Assistants API.")
|
| 81 |
+
# Integration and API controls could be managed here
|