pub fn map_reduce(
mapper: AgentBuilder,
reducer: AgentBuilder,
list_key: impl Into<String>,
) -> ComposableExpand description
Map-reduce: map mapper over the list at list_key, then run reducer
over the collected results (state["_results"]). A pipeline of a
map_over node and the reducer.