asteroid-odyssey 1.6.715 → 1.6.722
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/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1539,6 +1539,17 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
|
|
|
1539
1539
|
batch_actions: boolean;
|
|
1540
1540
|
playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
|
|
1541
1541
|
learn_and_compile?: boolean;
|
|
1542
|
+
/**
|
|
1543
|
+
* Optional custom JSON schema for the node's structured output. When
|
|
1544
|
+
* present (non-empty), the `prepare_handoff` tool's free-form `variables`
|
|
1545
|
+
* field is replaced by a required `output` field matching this schema, and
|
|
1546
|
+
* the resulting object is stored as the node's `output` variable. When
|
|
1547
|
+
* absent, the node emits free-form key/value variables as before. Validated
|
|
1548
|
+
* against the same OpenAI structured-output restrictions as output nodes.
|
|
1549
|
+
*/
|
|
1550
|
+
schema?: {
|
|
1551
|
+
[key: string]: unknown;
|
|
1552
|
+
};
|
|
1542
1553
|
/**
|
|
1543
1554
|
* Relative path (within the node's own shared directory) of the
|
|
1544
1555
|
* Playwright script that the runtime should execute before the LLM.
|
package/dist/index.d.ts
CHANGED
|
@@ -1539,6 +1539,17 @@ type AgentsGraphModelsNodesPropertiesIrisProperties = {
|
|
|
1539
1539
|
batch_actions: boolean;
|
|
1540
1540
|
playwright_script_properties?: AgentsGraphModelsNodesPropertiesIrisPlaywrightScriptProperties;
|
|
1541
1541
|
learn_and_compile?: boolean;
|
|
1542
|
+
/**
|
|
1543
|
+
* Optional custom JSON schema for the node's structured output. When
|
|
1544
|
+
* present (non-empty), the `prepare_handoff` tool's free-form `variables`
|
|
1545
|
+
* field is replaced by a required `output` field matching this schema, and
|
|
1546
|
+
* the resulting object is stored as the node's `output` variable. When
|
|
1547
|
+
* absent, the node emits free-form key/value variables as before. Validated
|
|
1548
|
+
* against the same OpenAI structured-output restrictions as output nodes.
|
|
1549
|
+
*/
|
|
1550
|
+
schema?: {
|
|
1551
|
+
[key: string]: unknown;
|
|
1552
|
+
};
|
|
1542
1553
|
/**
|
|
1543
1554
|
* Relative path (within the node's own shared directory) of the
|
|
1544
1555
|
* Playwright script that the runtime should execute before the LLM.
|