@quilltap/plugin-types 2.0.0 → 2.0.1

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.
@@ -294,6 +294,12 @@ interface LLMParams {
294
294
  temperature?: number;
295
295
  /** Maximum tokens to generate */
296
296
  maxTokens?: number;
297
+ /**
298
+ * When true, the provider MUST respect the exact maxTokens value without
299
+ * applying model-specific overrides (e.g. reasoning model minimums).
300
+ * Used by background tasks (cheap LLM) that need strict output limits.
301
+ */
302
+ strictMaxTokens?: boolean;
297
303
  /** Nucleus sampling parameter */
298
304
  topP?: number;
299
305
  /** Stop sequences */
@@ -294,6 +294,12 @@ interface LLMParams {
294
294
  temperature?: number;
295
295
  /** Maximum tokens to generate */
296
296
  maxTokens?: number;
297
+ /**
298
+ * When true, the provider MUST respect the exact maxTokens value without
299
+ * applying model-specific overrides (e.g. reasoning model minimums).
300
+ * Used by background tasks (cheap LLM) that need strict output limits.
301
+ */
302
+ strictMaxTokens?: boolean;
297
303
  /** Nucleus sampling parameter */
298
304
  topP?: number;
299
305
  /** Stop sequences */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/plugin-types",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",