@steerable/agent-harness 0.6.4 → 0.6.5

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.
@@ -28,7 +28,10 @@ export interface AskUserQuestionsPayload {
28
28
  */
29
29
  options?: [string, string] | [string, string, string] | [string, string, string, string];
30
30
  placeholder?: string | null;
31
- multiSelect?: boolean;
31
+ /**
32
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
33
+ */
34
+ multiSelect: boolean;
32
35
  [k: string]: any;
33
36
  }
34
37
  ] | [
@@ -48,7 +51,10 @@ export interface AskUserQuestionsPayload {
48
51
  */
49
52
  options?: [string, string] | [string, string, string] | [string, string, string, string];
50
53
  placeholder?: string | null;
51
- multiSelect?: boolean;
54
+ /**
55
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
56
+ */
57
+ multiSelect: boolean;
52
58
  [k: string]: any;
53
59
  },
54
60
  {
@@ -67,7 +73,10 @@ export interface AskUserQuestionsPayload {
67
73
  */
68
74
  options?: [string, string] | [string, string, string] | [string, string, string, string];
69
75
  placeholder?: string | null;
70
- multiSelect?: boolean;
76
+ /**
77
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
78
+ */
79
+ multiSelect: boolean;
71
80
  [k: string]: any;
72
81
  }
73
82
  ] | [
@@ -87,7 +96,10 @@ export interface AskUserQuestionsPayload {
87
96
  */
88
97
  options?: [string, string] | [string, string, string] | [string, string, string, string];
89
98
  placeholder?: string | null;
90
- multiSelect?: boolean;
99
+ /**
100
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
101
+ */
102
+ multiSelect: boolean;
91
103
  [k: string]: any;
92
104
  },
93
105
  {
@@ -106,7 +118,10 @@ export interface AskUserQuestionsPayload {
106
118
  */
107
119
  options?: [string, string] | [string, string, string] | [string, string, string, string];
108
120
  placeholder?: string | null;
109
- multiSelect?: boolean;
121
+ /**
122
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
123
+ */
124
+ multiSelect: boolean;
110
125
  [k: string]: any;
111
126
  },
112
127
  {
@@ -125,7 +140,10 @@ export interface AskUserQuestionsPayload {
125
140
  */
126
141
  options?: [string, string] | [string, string, string] | [string, string, string, string];
127
142
  placeholder?: string | null;
128
- multiSelect?: boolean;
143
+ /**
144
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
145
+ */
146
+ multiSelect: boolean;
129
147
  [k: string]: any;
130
148
  }
131
149
  ] | [
@@ -145,7 +163,10 @@ export interface AskUserQuestionsPayload {
145
163
  */
146
164
  options?: [string, string] | [string, string, string] | [string, string, string, string];
147
165
  placeholder?: string | null;
148
- multiSelect?: boolean;
166
+ /**
167
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
168
+ */
169
+ multiSelect: boolean;
149
170
  [k: string]: any;
150
171
  },
151
172
  {
@@ -164,7 +185,10 @@ export interface AskUserQuestionsPayload {
164
185
  */
165
186
  options?: [string, string] | [string, string, string] | [string, string, string, string];
166
187
  placeholder?: string | null;
167
- multiSelect?: boolean;
188
+ /**
189
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
190
+ */
191
+ multiSelect: boolean;
168
192
  [k: string]: any;
169
193
  },
170
194
  {
@@ -183,7 +207,10 @@ export interface AskUserQuestionsPayload {
183
207
  */
184
208
  options?: [string, string] | [string, string, string] | [string, string, string, string];
185
209
  placeholder?: string | null;
186
- multiSelect?: boolean;
210
+ /**
211
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
212
+ */
213
+ multiSelect: boolean;
187
214
  [k: string]: any;
188
215
  },
189
216
  {
@@ -202,7 +229,10 @@ export interface AskUserQuestionsPayload {
202
229
  */
203
230
  options?: [string, string] | [string, string, string] | [string, string, string, string];
204
231
  placeholder?: string | null;
205
- multiSelect?: boolean;
232
+ /**
233
+ * Whether the user may pick several options. Required (CC parity): the model commits to single vs multi explicitly.
234
+ */
235
+ multiSelect: boolean;
206
236
  [k: string]: any;
207
237
  }
208
238
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steerable/agent-harness",
3
- "version": "0.6.4",
3
+ "version": "0.6.5",
4
4
  "description": "Steerable framework Tier 2 — TypeScript facade over the Python harness (policy, budget, retry, completion, tracing) used for cross-language conformance tests. Production code should depend on the Python harness.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://steerableframework.com/",
@@ -29,7 +29,7 @@
29
29
  "README.md"
30
30
  ],
31
31
  "dependencies": {
32
- "@steerable/agent-protocol": "0.6.4"
32
+ "@steerable/agent-protocol": "0.6.5"
33
33
  },
34
34
  "devDependencies": {
35
35
  "typescript": "^5.8.3",