Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -171,8 +171,7 @@ if prompt := textinput:
|
|
171 |
st.session_state.messages.append({"role": "human", "content": prompt})
|
172 |
with st.status("Requesting Client..."):
|
173 |
video_title, _ = get_video_title(st.session_state.youtube_url)
|
174 |
-
|
175 |
-
additional_context = f"Given the context about a video titled '{video_title}' available at '{st.session_state.youtube_url}' (starting from timestamp '{timestamp}')."
|
176 |
response = st.session_state.qa.run( prompt+ " " + additional_context)
|
177 |
with st.chat_message("assistant", avatar='🦙'):
|
178 |
st.markdown(response)
|
|
|
171 |
st.session_state.messages.append({"role": "human", "content": prompt})
|
172 |
with st.status("Requesting Client..."):
|
173 |
video_title, _ = get_video_title(st.session_state.youtube_url)
|
174 |
+
additional_context = f"Given the context about a video titled '{video_title}' available at '{st.session_state.youtube_url}'."
|
|
|
175 |
response = st.session_state.qa.run( prompt+ " " + additional_context)
|
176 |
with st.chat_message("assistant", avatar='🦙'):
|
177 |
st.markdown(response)
|