cyberdesk 2.2.10 → 2.2.11

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
  */
@@ -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
  */
@@ -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.11",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",