@bubblelab/shared-schemas 0.1.213 → 0.1.215
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/capability-schema.d.ts +8 -8
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -88,17 +88,17 @@ export type CapabilityToolDef = z.infer<typeof CapabilityToolDefSchema>;
|
|
|
88
88
|
*/
|
|
89
89
|
export declare const CapabilityModelConfigOverrideSchema: z.ZodObject<{
|
|
90
90
|
model: z.ZodOptional<z.ZodString>;
|
|
91
|
-
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
91
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "none"]>>;
|
|
92
92
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
93
93
|
maxIterations: z.ZodOptional<z.ZodNumber>;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
95
|
model?: string | undefined;
|
|
96
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
96
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
97
97
|
maxTokens?: number | undefined;
|
|
98
98
|
maxIterations?: number | undefined;
|
|
99
99
|
}, {
|
|
100
100
|
model?: string | undefined;
|
|
101
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
101
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
102
102
|
maxTokens?: number | undefined;
|
|
103
103
|
maxIterations?: number | undefined;
|
|
104
104
|
}>;
|
|
@@ -166,17 +166,17 @@ export declare const CapabilityMetadataSchema: z.ZodObject<{
|
|
|
166
166
|
systemPromptAddition: z.ZodOptional<z.ZodString>;
|
|
167
167
|
modelConfigOverride: z.ZodOptional<z.ZodObject<{
|
|
168
168
|
model: z.ZodOptional<z.ZodString>;
|
|
169
|
-
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
|
|
169
|
+
reasoningEffort: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "none"]>>;
|
|
170
170
|
maxTokens: z.ZodOptional<z.ZodNumber>;
|
|
171
171
|
maxIterations: z.ZodOptional<z.ZodNumber>;
|
|
172
172
|
}, "strip", z.ZodTypeAny, {
|
|
173
173
|
model?: string | undefined;
|
|
174
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
174
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
175
175
|
maxTokens?: number | undefined;
|
|
176
176
|
maxIterations?: number | undefined;
|
|
177
177
|
}, {
|
|
178
178
|
model?: string | undefined;
|
|
179
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
179
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
180
180
|
maxTokens?: number | undefined;
|
|
181
181
|
maxIterations?: number | undefined;
|
|
182
182
|
}>>;
|
|
@@ -233,7 +233,7 @@ export declare const CapabilityMetadataSchema: z.ZodObject<{
|
|
|
233
233
|
systemPromptAddition?: string | undefined;
|
|
234
234
|
modelConfigOverride?: {
|
|
235
235
|
model?: string | undefined;
|
|
236
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
236
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
237
237
|
maxTokens?: number | undefined;
|
|
238
238
|
maxIterations?: number | undefined;
|
|
239
239
|
} | undefined;
|
|
@@ -273,7 +273,7 @@ export declare const CapabilityMetadataSchema: z.ZodObject<{
|
|
|
273
273
|
systemPromptAddition?: string | undefined;
|
|
274
274
|
modelConfigOverride?: {
|
|
275
275
|
model?: string | undefined;
|
|
276
|
-
reasoningEffort?: "low" | "medium" | "high" | undefined;
|
|
276
|
+
reasoningEffort?: "low" | "medium" | "high" | "none" | undefined;
|
|
277
277
|
maxTokens?: number | undefined;
|
|
278
278
|
maxIterations?: number | undefined;
|
|
279
279
|
} | undefined;
|
package/dist/index.js
CHANGED
|
@@ -6080,7 +6080,7 @@ var CapabilityToolDefSchema = z20.object({
|
|
|
6080
6080
|
});
|
|
6081
6081
|
var CapabilityModelConfigOverrideSchema = z20.object({
|
|
6082
6082
|
model: z20.string().optional(),
|
|
6083
|
-
reasoningEffort: z20.enum(["low", "medium", "high"]).optional(),
|
|
6083
|
+
reasoningEffort: z20.enum(["low", "medium", "high", "none"]).optional(),
|
|
6084
6084
|
maxTokens: z20.number().positive().optional(),
|
|
6085
6085
|
maxIterations: z20.number().positive().optional()
|
|
6086
6086
|
});
|