smol-workflow-engine 0.3.1

Rust implementation of the smol-workflows engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
export const meta = {
  "name": "phase-defaults",
  "description": "phase defaults",
  "phases": [
    { "title": "Research", "model": "opus" },
    { "title": "Verify", "model": "sonnet" }
  ]
};
phase("Research");
const inherited = await agent("inherited phase defaults");
const explicit = await agent("explicit agent options", { model: "haiku" });
const phaseOverride = await agent("phase override defaults", { phase: "Verify" });
export default { inherited, explicit, phaseOverride };