@jaypie/llm 1.2.7 → 1.3.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.
@@ -70,6 +70,8 @@ export interface OperateRequest {
70
70
  format?: JsonObject;
71
71
  /** Provider-specific options */
72
72
  providerOptions?: JsonObject;
73
+ /** Sampling temperature (0-2 for most providers) */
74
+ temperature?: number;
73
75
  /** User identifier for tracking */
74
76
  user?: string;
75
77
  }
@@ -223,6 +223,7 @@ export interface LlmOperateOptions {
223
223
  };
224
224
  providerOptions?: JsonObject;
225
225
  system?: string;
226
+ temperature?: number;
226
227
  tools?: LlmTool[] | Toolkit;
227
228
  turns?: boolean | number;
228
229
  user?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/llm",
3
- "version": "1.2.7",
3
+ "version": "1.3.0",
4
4
  "description": "Large language model utilities",
5
5
  "repository": {
6
6
  "type": "git",