Illia56 commited on
Commit
cc47388
1 Parent(s): 258da0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
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
- timestamp = "00:00" # You can modify this to get the actual timestamp if needed
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)