bstraehle commited on
Commit
8eb3a27
·
verified ·
1 Parent(s): dc66c10

Update crew.py

Browse files
Files changed (1) hide show
  1. crew.py +1 -1
crew.py CHANGED
@@ -360,7 +360,7 @@ def run_crew(question, file_path):
360
  df = read_file(file_path)
361
 
362
  if df:
363
- question = f"{question} File {file_path} data: {df.to_string()}"
364
  else:
365
  question = f"{question} File path: {file_path}."
366
 
 
360
  df = read_file(file_path)
361
 
362
  if df:
363
+ question = f"{question} File data: {df.to_string()}" # load data due to sandbox contraints
364
  else:
365
  question = f"{question} File path: {file_path}."
366