from praisonaiagents import Agent, AgentTeam# Create specialized agentsresearcher = Agent( name="Researcher", instructions="""You research topics thoroughly. - Find key facts and statistics - Identify main points - Organize information clearly""", web=True)writer = Agent( name="Writer", instructions="""You write engaging content. - Use research provided - Write clear, readable text - Include introduction and conclusion""")editor = Agent( name="Editor", instructions="""You polish and improve content. - Fix grammar and spelling - Improve clarity and flow - Ensure consistent tone""")# Create the teamteam = AgentTeam( agents=[researcher, writer, editor], process="sequential")# Run the teamresult = team.start("Create a blog post about renewable energy")print(result)