cyberdesk 2.2.10 → 2.2.12

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.
@@ -224,10 +224,6 @@ export type ModelConfigurationCreate = {
224
224
  max_tokens?: number | null;
225
225
  timeout_seconds?: number | null;
226
226
  max_retries?: number | null;
227
- /**
228
- * Anthropic thinking budget (optional).
229
- */
230
- thinking_budget?: number | null;
231
227
  /**
232
228
  * Provider-specific kwargs passed through to LangChain.
233
229
  */
@@ -235,7 +231,7 @@ export type ModelConfigurationCreate = {
235
231
  [key: string]: unknown;
236
232
  } | null;
237
233
  /**
238
- * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents).
234
+ * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents.
239
235
  */
240
236
  is_computer_use_model?: boolean;
241
237
  /**
@@ -261,10 +257,6 @@ export type ModelConfigurationResponse = {
261
257
  max_tokens?: number | null;
262
258
  timeout_seconds?: number | null;
263
259
  max_retries?: number | null;
264
- /**
265
- * Anthropic thinking budget (optional).
266
- */
267
- thinking_budget?: number | null;
268
260
  /**
269
261
  * Provider-specific kwargs passed through to LangChain.
270
262
  */
@@ -272,7 +264,7 @@ export type ModelConfigurationResponse = {
272
264
  [key: string]: unknown;
273
265
  } | null;
274
266
  /**
275
- * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents).
267
+ * True if this model has native computer use capabilities. If True, can be used for main agent, focused actions, and fallbacks for those agents.
276
268
  */
277
269
  is_computer_use_model?: boolean;
278
270
  id: string;
@@ -305,7 +297,6 @@ export type ModelConfigurationUpdate = {
305
297
  max_tokens?: number | null;
306
298
  timeout_seconds?: number | null;
307
299
  max_retries?: number | null;
308
- thinking_budget?: number | null;
309
300
  additional_params?: {
310
301
  [key: string]: unknown;
311
302
  } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "2.2.10",
3
+ "version": "2.2.12",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",