AlbertoFH98 commited on
Commit
ad5f6fd
·
1 Parent(s): cc140a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -200,7 +200,7 @@ RESPUESTA: """
200
  start_time_str_list = []; start_time_seconds_list = []; end_time_seconds_list = []
201
  for response in llm_response.split('\n'):
202
  if re.search(r'(\d{2}:\d{2}:\d{2}(.\d{6})?)', response) != None:
203
- start_time_str, start_time_seconds, _, end_time_seconds = utils.add_hyperlink_and_convert_to_seconds(response, cleaned_prompt)
204
  start_time_str_list.append(start_time_str)
205
  start_time_seconds_list.append(start_time_seconds)
206
  end_time_seconds_list.append(end_time_seconds)
 
200
  start_time_str_list = []; start_time_seconds_list = []; end_time_seconds_list = []
201
  for response in llm_response.split('\n'):
202
  if re.search(r'(\d{2}:\d{2}:\d{2}(.\d{6})?)', response) != None:
203
+ start_time_str, start_time_seconds, _, end_time_seconds = utils.add_hyperlink_and_convert_to_seconds(response)
204
  start_time_str_list.append(start_time_str)
205
  start_time_seconds_list.append(start_time_seconds)
206
  end_time_seconds_list.append(end_time_seconds)