@ryanfw/prompt-orchestration-pipeline 0.13.2 → 0.13.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryanfw/prompt-orchestration-pipeline",
3
- "version": "0.13.2",
3
+ "version": "0.13.4",
4
4
  "description": "A Prompt-orchestration pipeline (POP) is a framework for building, running, and experimenting with complex chains of LLM tasks.",
5
5
  "type": "module",
6
6
  "main": "src/ui/server.js",
@@ -4,7 +4,6 @@
4
4
  */
5
5
 
6
6
  import { promises as fs } from "fs";
7
- import path from "path";
8
7
  import { getPipelineConfig } from "../../core/config.js";
9
8
 
10
9
  /**
@@ -30,6 +30,9 @@ function getSeedSchema() {
30
30
  type: "object",
31
31
  description: "Optional metadata",
32
32
  },
33
+
34
+ // Optional: may be omitted entirely; if present, must be an object.
35
+ // All keys inside are optional (no `required` array here).
33
36
  context: {
34
37
  type: "object",
35
38
  properties: {
@@ -39,7 +42,7 @@ function getSeedSchema() {
39
42
  culturalMarkers: { type: "array", items: { type: "string" } },
40
43
  practitionerBias: { type: "string" },
41
44
  },
42
- additionalProperties: true,
45
+ additionalProperties: false,
43
46
  description: "Optional context for pipeline execution",
44
47
  },
45
48
  },