@adaptic/lumic-utils 1.0.22 → 1.0.23
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/{apollo-client.client-Bu5mc2I8.js → apollo-client.client-DrSy1wz-.js} +4 -4
- package/dist/{apollo-client.client-Bu5mc2I8.js.map → apollo-client.client-DrSy1wz-.js.map} +1 -1
- package/dist/{apollo-client.client-YzlpL7kf.js → apollo-client.client-FeVPHV0i.js} +3 -3
- package/dist/{apollo-client.client-YzlpL7kf.js.map → apollo-client.client-FeVPHV0i.js.map} +1 -1
- package/dist/{apollo-client.server-BTHAQqYl.js → apollo-client.server-BEGHAF48.js} +3 -3
- package/dist/{apollo-client.server-BTHAQqYl.js.map → apollo-client.server-BEGHAF48.js.map} +1 -1
- package/dist/{apollo-client.server-sD1QteQO.js → apollo-client.server-CJ6iRLa2.js} +3 -3
- package/dist/{apollo-client.server-sD1QteQO.js.map → apollo-client.server-CJ6iRLa2.js.map} +1 -1
- package/dist/{index-DPaCMqua.js → index-CWoI2dXN.js} +18 -10
- package/dist/{index-DfuMX-MS.js.map → index-CWoI2dXN.js.map} +1 -1
- package/dist/{index-CWx6sW9a.js → index-Dz0wKyTF.js} +2 -2
- package/dist/{index-CWx6sW9a.js.map → index-Dz0wKyTF.js.map} +1 -1
- package/dist/{index-DfuMX-MS.js → index-WGzi__C5.js} +18 -10
- package/dist/{index-DPaCMqua.js.map → index-WGzi__C5.js.map} +1 -1
- package/dist/{index-B_4Q2noT.js → index-vRskhk1H.js} +2 -2
- package/dist/{index-B_4Q2noT.js.map → index-vRskhk1H.js.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/test.cjs +1 -1
- package/dist/test.mjs +1 -1
- package/dist/types/types/openai-types.d.ts +7 -7
- package/package.json +1 -1
|
@@ -100,13 +100,21 @@ const OPENAI_COMPATIBLE_PROVIDERS = {
|
|
|
100
100
|
*/
|
|
101
101
|
const SUPPORTED_MODELS = {
|
|
102
102
|
// ── OpenAI GPT-5.5 series (current flagship) ─────────────────────────
|
|
103
|
+
// GPT-5.x series: OpenAI's 2026 API constraint — only the default
|
|
104
|
+
// temperature value (1.0) is accepted. Passing any other value returns
|
|
105
|
+
// HTTP 400: "Unsupported value: 'temperature' does not support 0.2 with
|
|
106
|
+
// this model. Only the default (1) value is supported." Mark
|
|
107
|
+
// supportsTemperature=false so the lumic-utils gate at llm-call.ts:194
|
|
108
|
+
// OMITS the parameter entirely (OpenAI then uses its default of 1.0).
|
|
109
|
+
// Ref: community.openai.com/t/temperature-in-gpt-5-models/1337133
|
|
110
|
+
// Ref: developers.openai.com/api/docs/models/gpt-5.4-nano
|
|
103
111
|
'gpt-5.5': {
|
|
104
112
|
provider: 'openai',
|
|
105
113
|
supportsTools: true,
|
|
106
114
|
supportsJson: true,
|
|
107
115
|
supportsStructuredOutput: true,
|
|
108
116
|
supportsDeveloperPrompt: true,
|
|
109
|
-
supportsTemperature:
|
|
117
|
+
supportsTemperature: false,
|
|
110
118
|
isReasoningModel: false,
|
|
111
119
|
},
|
|
112
120
|
'gpt-5.5-pro': {
|
|
@@ -115,7 +123,7 @@ const SUPPORTED_MODELS = {
|
|
|
115
123
|
supportsJson: true,
|
|
116
124
|
supportsStructuredOutput: true,
|
|
117
125
|
supportsDeveloperPrompt: true,
|
|
118
|
-
supportsTemperature:
|
|
126
|
+
supportsTemperature: false,
|
|
119
127
|
isReasoningModel: false,
|
|
120
128
|
},
|
|
121
129
|
// ── OpenAI GPT-5.4 series ────────────────────────────────────────────
|
|
@@ -125,7 +133,7 @@ const SUPPORTED_MODELS = {
|
|
|
125
133
|
supportsJson: true,
|
|
126
134
|
supportsStructuredOutput: true,
|
|
127
135
|
supportsDeveloperPrompt: true,
|
|
128
|
-
supportsTemperature:
|
|
136
|
+
supportsTemperature: false,
|
|
129
137
|
isReasoningModel: false,
|
|
130
138
|
},
|
|
131
139
|
'gpt-5.4-mini': {
|
|
@@ -134,7 +142,7 @@ const SUPPORTED_MODELS = {
|
|
|
134
142
|
supportsJson: true,
|
|
135
143
|
supportsStructuredOutput: true,
|
|
136
144
|
supportsDeveloperPrompt: true,
|
|
137
|
-
supportsTemperature:
|
|
145
|
+
supportsTemperature: false,
|
|
138
146
|
isReasoningModel: false,
|
|
139
147
|
},
|
|
140
148
|
'gpt-5.4-nano': {
|
|
@@ -143,7 +151,7 @@ const SUPPORTED_MODELS = {
|
|
|
143
151
|
supportsJson: true,
|
|
144
152
|
supportsStructuredOutput: true,
|
|
145
153
|
supportsDeveloperPrompt: true,
|
|
146
|
-
supportsTemperature:
|
|
154
|
+
supportsTemperature: false,
|
|
147
155
|
isReasoningModel: false,
|
|
148
156
|
},
|
|
149
157
|
// ── OpenAI GPT-5 series ──────────────────────────────────────────────
|
|
@@ -153,7 +161,7 @@ const SUPPORTED_MODELS = {
|
|
|
153
161
|
supportsJson: true,
|
|
154
162
|
supportsStructuredOutput: true,
|
|
155
163
|
supportsDeveloperPrompt: true,
|
|
156
|
-
supportsTemperature:
|
|
164
|
+
supportsTemperature: false,
|
|
157
165
|
isReasoningModel: false,
|
|
158
166
|
},
|
|
159
167
|
'gpt-5-mini': {
|
|
@@ -162,7 +170,7 @@ const SUPPORTED_MODELS = {
|
|
|
162
170
|
supportsJson: true,
|
|
163
171
|
supportsStructuredOutput: true,
|
|
164
172
|
supportsDeveloperPrompt: true,
|
|
165
|
-
supportsTemperature:
|
|
173
|
+
supportsTemperature: false,
|
|
166
174
|
isReasoningModel: false,
|
|
167
175
|
},
|
|
168
176
|
// ── OpenAI GPT-4.1 series ────────────────────────────────────────────
|
|
@@ -23009,11 +23017,11 @@ let poolConfig = DEFAULT_POOL_CONFIG;
|
|
|
23009
23017
|
async function loadApolloModules() {
|
|
23010
23018
|
if (typeof window === "undefined" || process.env.AWS_EXECUTION_ENV) {
|
|
23011
23019
|
// Server-side (or Lambda): load the CommonJS‑based implementation.
|
|
23012
|
-
return (await Promise.resolve().then(function () { return require('./apollo-client.server-
|
|
23020
|
+
return (await Promise.resolve().then(function () { return require('./apollo-client.server-BEGHAF48.js'); }));
|
|
23013
23021
|
}
|
|
23014
23022
|
else {
|
|
23015
23023
|
// Client-side: load the ESM‑based implementation.
|
|
23016
|
-
return (await Promise.resolve().then(function () { return require('./apollo-client.client-
|
|
23024
|
+
return (await Promise.resolve().then(function () { return require('./apollo-client.client-FeVPHV0i.js'); }));
|
|
23017
23025
|
}
|
|
23018
23026
|
}
|
|
23019
23027
|
/**
|
|
@@ -81724,4 +81732,4 @@ exports.withCorrelationId = withCorrelationId;
|
|
|
81724
81732
|
exports.withMetrics = withMetrics;
|
|
81725
81733
|
exports.withRateLimit = withRateLimit;
|
|
81726
81734
|
exports.withRetry = withRetry;
|
|
81727
|
-
//# sourceMappingURL=index-
|
|
81735
|
+
//# sourceMappingURL=index-WGzi__C5.js.map
|