Update app.py
Browse files
app.py
CHANGED
|
@@ -7,7 +7,9 @@ import os
|
|
| 7 |
# Streamlit interface setup
|
| 8 |
st.title('Video Summary Interface')
|
| 9 |
|
|
|
|
| 10 |
|
|
|
|
| 11 |
|
| 12 |
# Creating tabs,
|
| 13 |
tab1, tab2, tab3, tab4, tab5 = st.tabs(["Project Description", "Video Uploader", "Video Indexer", "Video Prompt", "Unique Value Add"])
|
|
|
|
| 7 |
# Streamlit interface setup
|
| 8 |
st.title('Video Summary Interface')
|
| 9 |
|
| 10 |
+
from twelvelabs import TwelveLabs
|
| 11 |
|
| 12 |
+
client = TwelveLabs(api_key=os.getenv('TL_API_KEY'))
|
| 13 |
|
| 14 |
# Creating tabs,
|
| 15 |
tab1, tab2, tab3, tab4, tab5 = st.tabs(["Project Description", "Video Uploader", "Video Indexer", "Video Prompt", "Unique Value Add"])
|