I have the below code, in my main.py in a Flow.
Agentops picks up on the research crew but then I get this error for the create_plan crew.
AgentOps: Could not record event. Start a session by calling agentops.start_session().
Any ideas? Iām pretty new.
import agentops
from agentops import track_agent
agentops.init(api_key=os.getenv(āAGENTOPS_API_KEYā),default_tags=[āLinkedin Contentā])
class Content_Flow(Flow):
@track_agent(name="Research")
@start()
def research(self):
print("Researching....")
research_result = (
ResearchCrew()
.crew()
.kickoff(inputs={"specific_urls": specific_urls})
)
return research_result
@track_agent(name="Create Plan")
@listen(or_(research, "Modify_Plan"))
def create_plan(research_result):
print("Creating Plan....")
plan_result = (
CreatePlanCrew()
.crew()
.kickoff(inputs={"research_result": str(research_result)})
)
return plan_result