smol-workflow-engine 0.2.1

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
export const meta = { name: "dynamic-parallel-agents", description: "dynamic parallel agents" };
export default await parallel([
  async () => {
    await agent("fast-parent");
    return await agent("follow-up");
  },
  () => agent("slow"),
]);