@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.cjs
CHANGED
|
@@ -914,7 +914,7 @@ const makeResponsesAPICall = async (input, options = {}) => {
|
|
|
914
914
|
// llm-call.ts
|
|
915
915
|
const DEFAULT_OPTIONS = {
|
|
916
916
|
model: DEFAULT_MODEL,
|
|
917
|
-
temperature:
|
|
917
|
+
temperature: 1,
|
|
918
918
|
developerPrompt: DEFAULT_DEVELOPER_PROMPT,
|
|
919
919
|
parallel_tool_calls: false,
|
|
920
920
|
};
|
|
@@ -1005,7 +1005,7 @@ async function makeResponsesCall(input, options = {}) {
|
|
|
1005
1005
|
};
|
|
1006
1006
|
// Only include temperature if the model supports it
|
|
1007
1007
|
if (supportsTemperature(normalizedModel)) {
|
|
1008
|
-
responsesOptions.temperature =
|
|
1008
|
+
responsesOptions.temperature = 1;
|
|
1009
1009
|
}
|
|
1010
1010
|
// Configure response format
|
|
1011
1011
|
if (responseFormat === 'json') {
|