@nodaro/sdk 1.10.0 → 1.11.0
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/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3358,6 +3358,18 @@ interface CommonInput {
|
|
|
3358
3358
|
llmModel?: string;
|
|
3359
3359
|
/** Reasoning effort level (model-dependent). */
|
|
3360
3360
|
reasoningEffort?: string;
|
|
3361
|
+
/**
|
|
3362
|
+
* Gemini models only. Runs the request on the provider's own API so
|
|
3363
|
+
* `temperature`, `maxTokens` and the full reasoning range actually take
|
|
3364
|
+
* effect — on the default lane those levers are not reliably honoured.
|
|
3365
|
+
* Bills one credit tier up. A model without a direct lane returns
|
|
3366
|
+
* `400 advanced_mode_unsupported`.
|
|
3367
|
+
*/
|
|
3368
|
+
advancedMode?: boolean;
|
|
3369
|
+
/** Sampling temperature. Only honoured when `advancedMode` is true. */
|
|
3370
|
+
temperature?: number;
|
|
3371
|
+
/** Output token cap. Only honoured when `advancedMode` is true. */
|
|
3372
|
+
maxTokens?: number;
|
|
3361
3373
|
nodeContext?: WizardNodeContext;
|
|
3362
3374
|
userPreference?: string;
|
|
3363
3375
|
/** Associates this call with a workflow execution. Read server-side before Zod. */
|
package/dist/index.d.ts
CHANGED
|
@@ -3358,6 +3358,18 @@ interface CommonInput {
|
|
|
3358
3358
|
llmModel?: string;
|
|
3359
3359
|
/** Reasoning effort level (model-dependent). */
|
|
3360
3360
|
reasoningEffort?: string;
|
|
3361
|
+
/**
|
|
3362
|
+
* Gemini models only. Runs the request on the provider's own API so
|
|
3363
|
+
* `temperature`, `maxTokens` and the full reasoning range actually take
|
|
3364
|
+
* effect — on the default lane those levers are not reliably honoured.
|
|
3365
|
+
* Bills one credit tier up. A model without a direct lane returns
|
|
3366
|
+
* `400 advanced_mode_unsupported`.
|
|
3367
|
+
*/
|
|
3368
|
+
advancedMode?: boolean;
|
|
3369
|
+
/** Sampling temperature. Only honoured when `advancedMode` is true. */
|
|
3370
|
+
temperature?: number;
|
|
3371
|
+
/** Output token cap. Only honoured when `advancedMode` is true. */
|
|
3372
|
+
maxTokens?: number;
|
|
3361
3373
|
nodeContext?: WizardNodeContext;
|
|
3362
3374
|
userPreference?: string;
|
|
3363
3375
|
/** Associates this call with a workflow execution. Read server-side before Zod. */
|