data_agent = Agent( name="DataAnalyst", role="Data Analysis Specialist", goal="Analyze and transform data efficiently.", backstory="Expert in data manipulation and statistical analysis.", tools=[read_csv, read_excel, write_csv, write_excel, filter_data, get_summary, group_by, pivot_table], self_reflect=False)
4
Define Task
Define the analysis task:
Copy
analysis_task = Task( description="Analyze sales data to identify trends and patterns.", expected_output="Statistical summary and key insights.", agent=data_agent, name="sales_analysis")