bstraehle commited on
Commit
ed7a15d
·
verified ·
1 Parent(s): b4139ff

Update crew.py

Browse files
Files changed (1) hide show
  1. crew.py +1 -1
crew.py CHANGED
@@ -361,7 +361,7 @@ def run_crew(question, file_path):
361
 
362
  if ext in (".csv", ".xls", ".xlsx", ".json", ".jsonl"):
363
  df = read_file(file_path)
364
- question = f"{question} File {file_path} as a Pandas DataFrame to string: {df.to_string()}"
365
  else:
366
  question = f"{question} File path: {file_path}."
367
 
 
361
 
362
  if ext in (".csv", ".xls", ".xlsx", ".json", ".jsonl"):
363
  df = read_file(file_path)
364
+ question = f"{question} File {file_path} data: {df.to_string()}"
365
  else:
366
  question = f"{question} File path: {file_path}."
367