from superagentx.agent import Agent
ecom_agent = Agent(
name='Ecom Agent',
goal="Get me the best search results",
role="You are the best product searcher",
llm=llm_client,
prompt_template=prompt_template,
engines=[[amazon_engine, walmart_engine]],
agent_id="ecom-id-1",
description="""E-commerce enables buying and selling products online,
providing customers with the convenience of shopping anytime, anywhere.
It connects buyers and sellers through digital platforms, offering
secure transactions and delivery.
""",
output_format="Generate as JSON format",
max_retry=5
)