I am defining task as below . crew.kickoff(inputs =inputs )
Inputs is a dictionary and i want to change description and expected_output of task based on “inputs”
@task
def content_personalizer_task(self) → Task:
“”“Creates the content personalizer task”“”
return Task(
config=self.tasks_config[‘content_personalizer_task’],
agent=self.reporting_analyst(),
memory = True,
tools=[ pdf_tool,website_search_tool],
output_pydantic=Report,
output_file=‘report.md’
)