@adaptic/lumic-utils 1.0.26 → 1.0.27
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-CtjgIfRT.js → apollo-client.client-DD13VF_T.js} +3 -3
- package/dist/{apollo-client.client-CtjgIfRT.js.map → apollo-client.client-DD13VF_T.js.map} +1 -1
- package/dist/{apollo-client.client-Uv0-ZrFd.js → apollo-client.client-eo-xgmdi.js} +4 -4
- package/dist/{apollo-client.client-Uv0-ZrFd.js.map → apollo-client.client-eo-xgmdi.js.map} +1 -1
- package/dist/{apollo-client.server-JYHXy9ib.js → apollo-client.server-2zi9dbLa.js} +3 -3
- package/dist/{apollo-client.server-JYHXy9ib.js.map → apollo-client.server-2zi9dbLa.js.map} +1 -1
- package/dist/{apollo-client.server-DaXmxoBl.js → apollo-client.server-BxpJcsVI.js} +3 -3
- package/dist/{apollo-client.server-DaXmxoBl.js.map → apollo-client.server-BxpJcsVI.js.map} +1 -1
- package/dist/{index-Bu-2kk3p.js → index-BQ1buNZm.js} +2 -2
- package/dist/{index-Bu-2kk3p.js.map → index-BQ1buNZm.js.map} +1 -1
- package/dist/{index-z7Y1nTVX.js → index-BbwdRyPk.js} +45 -5
- package/dist/{index-DgFDhFuO.js.map → index-BbwdRyPk.js.map} +1 -1
- package/dist/{index-HopiPnjc.js → index-CV0UmY0w.js} +2 -2
- package/dist/{index-HopiPnjc.js.map → index-CV0UmY0w.js.map} +1 -1
- package/dist/{index-DgFDhFuO.js → index-zDK1X6HR.js} +45 -5
- package/dist/{index-z7Y1nTVX.js.map → index-zDK1X6HR.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 +37 -1
- package/package.json +1 -1
|
@@ -79,7 +79,38 @@ const OPENAI_COMPATIBLE_PROVIDERS = {
|
|
|
79
79
|
* Supported models with their capabilities
|
|
80
80
|
*/
|
|
81
81
|
const SUPPORTED_MODELS = {
|
|
82
|
-
// ── OpenAI GPT-5.
|
|
82
|
+
// ── OpenAI GPT-5.6 series (current flagship) ─────────────────────────
|
|
83
|
+
// sol / terra / luna are the 2026 flagship trio (developers.openai.com/
|
|
84
|
+
// api/docs/models/all). Same GPT-5.x API surface + the temperature
|
|
85
|
+
// constraint documented below.
|
|
86
|
+
'gpt-5.6-sol': {
|
|
87
|
+
provider: 'openai',
|
|
88
|
+
supportsTools: true,
|
|
89
|
+
supportsJson: true,
|
|
90
|
+
supportsStructuredOutput: true,
|
|
91
|
+
supportsDeveloperPrompt: true,
|
|
92
|
+
supportsTemperature: false,
|
|
93
|
+
isReasoningModel: false,
|
|
94
|
+
},
|
|
95
|
+
'gpt-5.6-terra': {
|
|
96
|
+
provider: 'openai',
|
|
97
|
+
supportsTools: true,
|
|
98
|
+
supportsJson: true,
|
|
99
|
+
supportsStructuredOutput: true,
|
|
100
|
+
supportsDeveloperPrompt: true,
|
|
101
|
+
supportsTemperature: false,
|
|
102
|
+
isReasoningModel: false,
|
|
103
|
+
},
|
|
104
|
+
'gpt-5.6-luna': {
|
|
105
|
+
provider: 'openai',
|
|
106
|
+
supportsTools: true,
|
|
107
|
+
supportsJson: true,
|
|
108
|
+
supportsStructuredOutput: true,
|
|
109
|
+
supportsDeveloperPrompt: true,
|
|
110
|
+
supportsTemperature: false,
|
|
111
|
+
isReasoningModel: false,
|
|
112
|
+
},
|
|
113
|
+
// ── OpenAI GPT-5.5 series ────────────────────────────────────────────
|
|
83
114
|
// GPT-5.x series: OpenAI's 2026 API constraint — only the default
|
|
84
115
|
// temperature value (1.0) is accepted. Passing any other value returns
|
|
85
116
|
// HTTP 400: "Unsupported value: 'temperature' does not support 0.2 with
|
|
@@ -134,6 +165,15 @@ const SUPPORTED_MODELS = {
|
|
|
134
165
|
supportsTemperature: false,
|
|
135
166
|
isReasoningModel: false,
|
|
136
167
|
},
|
|
168
|
+
'gpt-5.4-pro': {
|
|
169
|
+
provider: 'openai',
|
|
170
|
+
supportsTools: true,
|
|
171
|
+
supportsJson: true,
|
|
172
|
+
supportsStructuredOutput: true,
|
|
173
|
+
supportsDeveloperPrompt: true,
|
|
174
|
+
supportsTemperature: false,
|
|
175
|
+
isReasoningModel: false,
|
|
176
|
+
},
|
|
137
177
|
// ── OpenAI GPT-5 series ──────────────────────────────────────────────
|
|
138
178
|
'gpt-5': {
|
|
139
179
|
provider: 'openai',
|
|
@@ -554,7 +594,7 @@ function getModelProvider(model) {
|
|
|
554
594
|
* Default model tiers per provider for use with LLM_MODEL_MINI/NORMAL/ADVANCED env vars
|
|
555
595
|
*/
|
|
556
596
|
const PROVIDER_DEFAULT_MODELS = {
|
|
557
|
-
openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.
|
|
597
|
+
openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.6-sol' },
|
|
558
598
|
anthropic: { mini: 'claude-haiku-4-5', normal: 'claude-sonnet-4-6', advanced: 'claude-opus-4-7' },
|
|
559
599
|
deepseek: { mini: 'deepseek-v4-flash', normal: 'deepseek-v4-flash', advanced: 'deepseek-v4-pro' },
|
|
560
600
|
kimi: { mini: 'kimi-k2-0905-preview', normal: 'kimi-k2.5', advanced: 'kimi-k2.6' },
|
|
@@ -23163,11 +23203,11 @@ let poolConfig = DEFAULT_POOL_CONFIG;
|
|
|
23163
23203
|
async function loadApolloModules() {
|
|
23164
23204
|
if (typeof window === "undefined" || process.env.AWS_EXECUTION_ENV) {
|
|
23165
23205
|
// Server-side (or Lambda): load the CommonJS‑based implementation.
|
|
23166
|
-
return (await import('./apollo-client.server-
|
|
23206
|
+
return (await import('./apollo-client.server-BxpJcsVI.js'));
|
|
23167
23207
|
}
|
|
23168
23208
|
else {
|
|
23169
23209
|
// Client-side: load the ESM‑based implementation.
|
|
23170
|
-
return (await import('./apollo-client.client-
|
|
23210
|
+
return (await import('./apollo-client.client-eo-xgmdi.js'));
|
|
23171
23211
|
}
|
|
23172
23212
|
}
|
|
23173
23213
|
/**
|
|
@@ -81691,4 +81731,4 @@ const lumic = {
|
|
|
81691
81731
|
};
|
|
81692
81732
|
|
|
81693
81733
|
export { GraphQLInterfaceType as $, print as A, getNamedType as B, isInputType as C, isRequiredArgument as D, isNamedType as E, GraphQLError as F, GraphQLNonNull as G, isOutputType as H, isRequiredInputField as I, isCompositeType as J, Kind as K, getNullableType as L, getEnterLeaveForKind as M, isNode as N, OperationTypeNode as O, didYouMean as P, naturalCompare as Q, suggestionList as R, specifiedScalarTypes as S, keyMap as T, isType as U, isNullableType as V, visit as W, visitInParallel as X, keyValMap as Y, assertObjectType as Z, GraphQLScalarType as _, isListType as a, validateGoogleSheetsRange as a$, GraphQLUnionType as a0, GraphQLInputObjectType as a1, assertNullableType as a2, assertInterfaceType as a3, mapValue as a4, isSpecifiedScalarType as a5, isPrintableAsBlockString as a6, printBlockString as a7, BREAK as a8, GRAPHQL_MAX_INT as a9, printSourceLocation as aA, resolveObjMapThunk as aB, resolveReadonlyArrayThunk as aC, valueFromASTUntyped as aD, version$4 as aE, versionInfo as aF, getAugmentedNamespace as aG, isDigit$1 as aH, isNameStart as aI, dedentBlockStringLines as aJ, isNameContinue as aK, setLumicLogger as aL, getLumicLogger as aM, sanitizeForLog as aN, sanitizeError as aO, sanitizeAWSAuth as aP, sanitizeObject as aQ, getSecrets as aR, resetSecrets as aS, requireSecret as aT, withRetry as aU, CircuitBreaker as aV, CircuitBreakerState as aW, CircuitBreakerOpenError as aX, DEFAULT_CIRCUIT_BREAKER_CONFIG as aY, validateSlackChannel as aZ, validateS3Key as a_, GRAPHQL_MIN_INT as aa, GraphQLFloat as ab, GraphQLInt as ac, Location as ad, Token as ae, assertAbstractType as af, assertCompositeType as ag, assertEnumType as ah, assertEnumValueName as ai, assertInputObjectType as aj, assertInputType as ak, assertLeafType as al, assertListType as am, assertNamedType as an, assertNonNullType as ao, assertOutputType as ap, assertScalarType as aq, assertType as ar, assertUnionType as as, assertWrappingType as at, formatError as au, getLocation as av, getVisitFn as aw, isWrappingType as ax, printError as ay, printLocation as az, isAbstractType as b, PDFError as b$, LLMCostTracker as b0, getLLMCostTracker as b1, setLLMCostTracker as b2, resetLLMCostTracker as b3, setMetricsCollector as b4, getMetricsCollector as b5, resetMetricsCollector as b6, withMetrics as b7, generateCorrelationId as b8, getCorrelationId as b9, openAIChatCompletionSchema as bA, openAIImageResponseSchema as bB, validateOpenAIChatCompletion as bC, safeValidateOpenAIChatCompletion as bD, perplexityResponseSchema as bE, validatePerplexityResponse as bF, safeValidatePerplexityResponse as bG, googleSheetsValueRangeSchema as bH, validateGoogleSheetsResponse as bI, safeValidateGoogleSheetsResponse as bJ, s3ListObjectsSchema as bK, s3GetObjectSchema as bL, lambdaInvokeResponseSchema as bM, validateS3ListObjects as bN, safeValidateS3ListObjects as bO, validateLambdaResponse as bP, safeValidateLambdaResponse as bQ, createValidator as bR, createSafeValidator as bS, LumicError as bT, SlackError as bU, LLMError as bV, AWSLambdaError as bW, AWSS3Error as bX, GoogleSheetsError as bY, PerplexityError as bZ, JsonParseError as b_, getCorrelationContext as ba, withCorrelationId as bb, getCorrelationHeaders as bc, TokenBucketRateLimiter as bd, RATE_LIMIT_PROFILES as be, getRateLimiter as bf, resetAllRateLimiters as bg, withRateLimit as bh, checkIntegrationHealth as bi, SUPPORTED_MODELS as bj, isValidModel as bk, getModelCapabilities as bl, getModelProvider as bm, MODEL_ALIASES as bn, OPENAI_COMPATIBLE_PROVIDERS as bo, PROVIDER_DEFAULT_MODELS as bp, LLM_DEFAULT_PROVIDER as bq, LLM_MINI_PROVIDER as br, LLM_NORMAL_PROVIDER as bs, LLM_ADVANCED_PROVIDER as bt, LLM_PROVIDER as bu, LLM_MODEL_MINI as bv, LLM_MODEL_NORMAL as bw, LLM_MODEL_ADVANCED as bx, makeAnthropicCall as by, makeOpenAICompatibleCall as bz, isInterfaceType as c, ZipError as c0, SLACK_TIMEOUT_MS as c1, PERPLEXITY_TIMEOUT_MS as c2, GOOGLE_SHEETS_TIMEOUT_MS as c3, LLM_TIMEOUT_MS as c4, AWS_LAMBDA_TIMEOUT_MS as c5, AWS_S3_TIMEOUT_MS as c6, OPENWEATHER_TIMEOUT_MS as c7, GENERIC_FETCH_TIMEOUT_MS as c8, isObjectType as d, assertName as e, devAssert as f, isObjectLike as g, defineArguments as h, isNonNullType as i, argsToArgsConfig as j, GraphQLBoolean as k, lumic as l, GraphQLString as m, instanceOf as n, inspect as o, isInputObjectType as p, isLeafType as q, isEnumType as r, GraphQLID as s, toObjMap as t, invariant as u, GraphQLObjectType as v, GraphQLEnumType as w, GraphQLList as x, isScalarType as y, isUnionType as z };
|
|
81694
|
-
//# sourceMappingURL=index-
|
|
81734
|
+
//# sourceMappingURL=index-BbwdRyPk.js.map
|