diff --git a/modules/crew/crew.py b/modules/crew/crew.py index 1d44f3ff5..150570829 100644 --- a/modules/crew/crew.py +++ b/modules/crew/crew.py @@ -1,12 +1,12 @@ from crewai import Agent, Crew, Process, Task from crewai.project import CrewBase, agent, crew, task - +import commune as c # If you want to run a snippet of code before or after the crew starts, # you can use the @before_kickoff and @after_kickoff decorators # https://docs.crewai.com/concepts/crews#example-crew-class-with-decorators @CrewBase -class CrewAgent(): +class CrewAgent(c.Module): """CrewAgent crew""" # Learn more about YAML configuration files here: