from praisonaiagents import Agent, AgentTeam
from langchain_community.utilities import SerpAPIWrapper
data_agent = Agent(instructions="Search about decline of recruitment across various industries with the rise of AI", tools=[SerpAPIWrapper])
editor_agent = Agent(instructions="Write a blog article pointing out the jobs most at risk due to the rise of AI")
team = AgentTeam(agents=[data_agent, editor_agent])
team.start()