nbaldwin commited on
Commit
3ef8c87
1 Parent(s): 3db9faf

change error message

Browse files
Files changed (1) hide show
  1. ChatAtomicFlow.py +2 -4
ChatAtomicFlow.py CHANGED
@@ -303,10 +303,8 @@ class ChatAtomicFlow(AtomicFlow):
303
  _success = True
304
  break
305
  except Exception as e:
306
- log.error(
307
- f"Error {attempts} in calling backend: {e}. "
308
- f"Retrying in {self.flow_config['wait_time_between_retries']} seconds..."
309
- )
310
  # log.error(
311
  # f"The API call raised an exception with the following arguments: "
312
  # f"\n{self.flow_state['history'].to_string()}"
 
303
  _success = True
304
  break
305
  except Exception as e:
306
+ log.error(f"Error {attempts} in calling backend: {e}. ")
307
+ log.error(f"Retrying in {self.flow_config['wait_time_between_retries']} seconds...")
 
 
308
  # log.error(
309
  # f"The API call raised an exception with the following arguments: "
310
  # f"\n{self.flow_state['history'].to_string()}"