@adaptic/lumic-utils 1.0.3 → 1.0.4
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -894,7 +894,7 @@ const makeResponsesAPICall = async (input, options = {}) => {
|
|
|
894
894
|
// llm-call.ts
|
|
895
895
|
const DEFAULT_OPTIONS = {
|
|
896
896
|
model: DEFAULT_MODEL,
|
|
897
|
-
temperature:
|
|
897
|
+
temperature: 1,
|
|
898
898
|
developerPrompt: DEFAULT_DEVELOPER_PROMPT,
|
|
899
899
|
parallel_tool_calls: false,
|
|
900
900
|
};
|
|
@@ -985,7 +985,7 @@ async function makeResponsesCall(input, options = {}) {
|
|
|
985
985
|
};
|
|
986
986
|
// Only include temperature if the model supports it
|
|
987
987
|
if (supportsTemperature(normalizedModel)) {
|
|
988
|
-
responsesOptions.temperature =
|
|
988
|
+
responsesOptions.temperature = 1;
|
|
989
989
|
}
|
|
990
990
|
// Configure response format
|
|
991
991
|
if (responseFormat === 'json') {
|