A two-stage sequential agent that researches a topic via Wikipedia and produces structured JSON output using the formatter pattern.
flowchart TB
__start__(__start__)
pipeline(pipeline)
researcher(researcher)
researcher_tools(tools)
formatter(formatter)
__end__(__end__)
researcher --> researcher_tools
researcher_tools --> researcher
pipeline --> researcher
researcher --> pipeline
pipeline --> formatter
formatter --> pipeline
__start__ --> |input|pipeline
pipeline --> |output|__end__
uipath run agent '{"topic": "artificial intelligence", "max_sources": 3, "language": "en"}'
uipath dev web