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
14
15
export const meta = {
  name: "schema-validation",
  description: "Exercise engine-level structured output validation",
};

export default await agent("produce schema result", {
  schema: {
    type: "object",
    properties: {
      summary: { type: "string" },
    },
    required: ["summary"],
    additionalProperties: false,
  },
});