csv_agent = Agent( name="CSVProcessor", role="CSV Processing Specialist", goal="Process CSV files efficiently and accurately.", backstory="Expert in CSV file manipulation and analysis.", tools=[read_csv, write_csv, merge_csv], self_reflect=False)
4
Define Task
Define the CSV processing task:
Copy
csv_task = Task( description="Process and analyze CSV data files.", expected_output="Processed CSV data with analysis.", agent=csv_agent, name="csv_processing")