@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.
- package/dist/llm/index.d.mts +6 -0
- package/dist/llm/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/llm/index.d.mts
CHANGED
|
@@ -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/dist/llm/index.d.ts
CHANGED
|
@@ -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 */
|