llmz 0.0.32 → 0.0.33

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/objects.d.ts CHANGED
@@ -1,6 +1,5 @@
1
- import { z } from '@bpinternal/zui';
2
1
  import { Tool } from './tool.js';
3
- import { Serializable } from './types.js';
2
+ import { Serializable, ZuiType } from './types.js';
4
3
  /**
5
4
  * Defines a property within an ObjectInstance.
6
5
  *
@@ -25,7 +24,7 @@ export type ObjectProperty = {
25
24
  /** The current value of the property */
26
25
  value: any;
27
26
  /** Optional Zod schema for validation when the property is modified */
28
- type?: z.Schema;
27
+ type?: ZuiType;
29
28
  /** Optional human-readable description of the property */
30
29
  description?: string;
31
30
  /** Whether the LLM can modify this property (default: false) */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "llmz",
3
3
  "type": "module",
4
4
  "description": "LLMz – An LLM-native Typescript VM built on top of Zui",
5
- "version": "0.0.32",
5
+ "version": "0.0.33",
6
6
  "types": "./dist/index.d.ts",
7
7
  "main": "./dist/index.cjs",
8
8
  "module": "./dist/index.js",
@@ -70,8 +70,8 @@
70
70
  "tsx": "^4.19.2"
71
71
  },
72
72
  "peerDependencies": {
73
- "@botpress/client": "1.27.1",
74
- "@botpress/cognitive": "0.3.0",
73
+ "@botpress/client": "1.27.2",
74
+ "@botpress/cognitive": "0.3.1",
75
75
  "@bpinternal/thicktoken": "^1.0.5",
76
76
  "@bpinternal/zui": "1.2.1"
77
77
  },