@adaptic/lumic-utils 1.0.21 → 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.
Files changed (23) hide show
  1. package/dist/{apollo-client.client-CUIakkzs.js → apollo-client.client-DrSy1wz-.js} +4 -4
  2. package/dist/{apollo-client.client-CUIakkzs.js.map → apollo-client.client-DrSy1wz-.js.map} +1 -1
  3. package/dist/{apollo-client.client-ByADDB46.js → apollo-client.client-FeVPHV0i.js} +3 -3
  4. package/dist/{apollo-client.client-ByADDB46.js.map → apollo-client.client-FeVPHV0i.js.map} +1 -1
  5. package/dist/{apollo-client.server-BnZhh39o.js → apollo-client.server-BEGHAF48.js} +3 -3
  6. package/dist/{apollo-client.server-BnZhh39o.js.map → apollo-client.server-BEGHAF48.js.map} +1 -1
  7. package/dist/{apollo-client.server-JucuAyrj.js → apollo-client.server-CJ6iRLa2.js} +3 -3
  8. package/dist/{apollo-client.server-JucuAyrj.js.map → apollo-client.server-CJ6iRLa2.js.map} +1 -1
  9. package/dist/{index-DYehXKUX.js → index-CWoI2dXN.js} +194 -27
  10. package/dist/{index-Ca3x8X5U.js.map → index-CWoI2dXN.js.map} +1 -1
  11. package/dist/{index-DT0dXUtn.js → index-Dz0wKyTF.js} +2 -2
  12. package/dist/{index-DT0dXUtn.js.map → index-Dz0wKyTF.js.map} +1 -1
  13. package/dist/{index-Ca3x8X5U.js → index-WGzi__C5.js} +194 -27
  14. package/dist/{index-DYehXKUX.js.map → index-WGzi__C5.js.map} +1 -1
  15. package/dist/{index-BLXN1stF.js → index-vRskhk1H.js} +2 -2
  16. package/dist/{index-BLXN1stF.js.map → index-vRskhk1H.js.map} +1 -1
  17. package/dist/index.cjs +1 -1
  18. package/dist/index.mjs +1 -1
  19. package/dist/test.cjs +1 -1
  20. package/dist/test.mjs +1 -1
  21. package/dist/types/functions/llm-config.d.ts +1 -1
  22. package/dist/types/types/openai-types.d.ts +100 -10
  23. package/package.json +1 -1
@@ -79,6 +79,33 @@ const OPENAI_COMPATIBLE_PROVIDERS = {
79
79
  * Supported models with their capabilities
80
80
  */
81
81
  const SUPPORTED_MODELS = {
82
+ // ── OpenAI GPT-5.5 series (current flagship) ─────────────────────────
83
+ // GPT-5.x series: OpenAI's 2026 API constraint — only the default
84
+ // temperature value (1.0) is accepted. Passing any other value returns
85
+ // HTTP 400: "Unsupported value: 'temperature' does not support 0.2 with
86
+ // this model. Only the default (1) value is supported." Mark
87
+ // supportsTemperature=false so the lumic-utils gate at llm-call.ts:194
88
+ // OMITS the parameter entirely (OpenAI then uses its default of 1.0).
89
+ // Ref: community.openai.com/t/temperature-in-gpt-5-models/1337133
90
+ // Ref: developers.openai.com/api/docs/models/gpt-5.4-nano
91
+ 'gpt-5.5': {
92
+ provider: 'openai',
93
+ supportsTools: true,
94
+ supportsJson: true,
95
+ supportsStructuredOutput: true,
96
+ supportsDeveloperPrompt: true,
97
+ supportsTemperature: false,
98
+ isReasoningModel: false,
99
+ },
100
+ 'gpt-5.5-pro': {
101
+ provider: 'openai',
102
+ supportsTools: true,
103
+ supportsJson: true,
104
+ supportsStructuredOutput: true,
105
+ supportsDeveloperPrompt: true,
106
+ supportsTemperature: false,
107
+ isReasoningModel: false,
108
+ },
82
109
  // ── OpenAI GPT-5.4 series ────────────────────────────────────────────
83
110
  'gpt-5.4': {
84
111
  provider: 'openai',
@@ -86,7 +113,7 @@ const SUPPORTED_MODELS = {
86
113
  supportsJson: true,
87
114
  supportsStructuredOutput: true,
88
115
  supportsDeveloperPrompt: true,
89
- supportsTemperature: true,
116
+ supportsTemperature: false,
90
117
  isReasoningModel: false,
91
118
  },
92
119
  'gpt-5.4-mini': {
@@ -95,7 +122,7 @@ const SUPPORTED_MODELS = {
95
122
  supportsJson: true,
96
123
  supportsStructuredOutput: true,
97
124
  supportsDeveloperPrompt: true,
98
- supportsTemperature: true,
125
+ supportsTemperature: false,
99
126
  isReasoningModel: false,
100
127
  },
101
128
  'gpt-5.4-nano': {
@@ -104,7 +131,7 @@ const SUPPORTED_MODELS = {
104
131
  supportsJson: true,
105
132
  supportsStructuredOutput: true,
106
133
  supportsDeveloperPrompt: true,
107
- supportsTemperature: true,
134
+ supportsTemperature: false,
108
135
  isReasoningModel: false,
109
136
  },
110
137
  // ── OpenAI GPT-5 series ──────────────────────────────────────────────
@@ -114,7 +141,7 @@ const SUPPORTED_MODELS = {
114
141
  supportsJson: true,
115
142
  supportsStructuredOutput: true,
116
143
  supportsDeveloperPrompt: true,
117
- supportsTemperature: true,
144
+ supportsTemperature: false,
118
145
  isReasoningModel: false,
119
146
  },
120
147
  'gpt-5-mini': {
@@ -123,7 +150,7 @@ const SUPPORTED_MODELS = {
123
150
  supportsJson: true,
124
151
  supportsStructuredOutput: true,
125
152
  supportsDeveloperPrompt: true,
126
- supportsTemperature: true,
153
+ supportsTemperature: false,
127
154
  isReasoningModel: false,
128
155
  },
129
156
  // ── OpenAI GPT-4.1 series ────────────────────────────────────────────
@@ -201,6 +228,15 @@ const SUPPORTED_MODELS = {
201
228
  isReasoningModel: true,
202
229
  },
203
230
  // ── Anthropic Claude models ──────────────────────────────────────────
231
+ 'claude-opus-4-7': {
232
+ provider: 'anthropic',
233
+ supportsTools: true,
234
+ supportsJson: false,
235
+ supportsStructuredOutput: false,
236
+ supportsDeveloperPrompt: true,
237
+ supportsTemperature: true,
238
+ isReasoningModel: false,
239
+ },
204
240
  'claude-opus-4-6': {
205
241
  provider: 'anthropic',
206
242
  supportsTools: true,
@@ -229,6 +265,24 @@ const SUPPORTED_MODELS = {
229
265
  isReasoningModel: false,
230
266
  },
231
267
  // ── Deepseek models ──────────────────────────────────────────────────
268
+ 'deepseek-v4-pro': {
269
+ provider: 'deepseek',
270
+ supportsTools: true,
271
+ supportsJson: true,
272
+ supportsStructuredOutput: false,
273
+ supportsDeveloperPrompt: true,
274
+ supportsTemperature: true,
275
+ isReasoningModel: true,
276
+ },
277
+ 'deepseek-v4-flash': {
278
+ provider: 'deepseek',
279
+ supportsTools: true,
280
+ supportsJson: true,
281
+ supportsStructuredOutput: false,
282
+ supportsDeveloperPrompt: true,
283
+ supportsTemperature: true,
284
+ isReasoningModel: true,
285
+ },
232
286
  'deepseek-chat': {
233
287
  provider: 'deepseek',
234
288
  supportsTools: true,
@@ -248,6 +302,24 @@ const SUPPORTED_MODELS = {
248
302
  isReasoningModel: true,
249
303
  },
250
304
  // ── Kimi (Moonshot) models ───────────────────────────────────────────
305
+ 'kimi-k2.6': {
306
+ provider: 'kimi',
307
+ supportsTools: true,
308
+ supportsJson: true,
309
+ supportsStructuredOutput: false,
310
+ supportsDeveloperPrompt: true,
311
+ supportsTemperature: true,
312
+ isReasoningModel: false,
313
+ },
314
+ 'kimi-k2.5': {
315
+ provider: 'kimi',
316
+ supportsTools: true,
317
+ supportsJson: true,
318
+ supportsStructuredOutput: false,
319
+ supportsDeveloperPrompt: true,
320
+ supportsTemperature: true,
321
+ isReasoningModel: false,
322
+ },
251
323
  'kimi-k2-0905-preview': {
252
324
  provider: 'kimi',
253
325
  supportsTools: true,
@@ -313,6 +385,33 @@ const SUPPORTED_MODELS = {
313
385
  isReasoningModel: false,
314
386
  },
315
387
  // ── xAI Grok models ─────────────────────────────────────────────────
388
+ 'grok-4.3': {
389
+ provider: 'xai',
390
+ supportsTools: true,
391
+ supportsJson: true,
392
+ supportsStructuredOutput: true,
393
+ supportsDeveloperPrompt: true,
394
+ supportsTemperature: true,
395
+ isReasoningModel: false,
396
+ },
397
+ 'grok-4.20': {
398
+ provider: 'xai',
399
+ supportsTools: true,
400
+ supportsJson: true,
401
+ supportsStructuredOutput: true,
402
+ supportsDeveloperPrompt: true,
403
+ supportsTemperature: true,
404
+ isReasoningModel: false,
405
+ },
406
+ 'grok-4.1-fast': {
407
+ provider: 'xai',
408
+ supportsTools: true,
409
+ supportsJson: true,
410
+ supportsStructuredOutput: true,
411
+ supportsDeveloperPrompt: true,
412
+ supportsTemperature: true,
413
+ isReasoningModel: false,
414
+ },
316
415
  'grok-4': {
317
416
  provider: 'xai',
318
417
  supportsTools: true,
@@ -391,21 +490,41 @@ const SUPPORTED_MODELS = {
391
490
  * Common model aliases that map to canonical model names
392
491
  */
393
492
  const MODEL_ALIASES = {
394
- 'deepseek-r1': 'deepseek-reasoner',
395
- 'deepseek-v3': 'deepseek-chat',
396
- 'claude-4-opus': 'claude-opus-4-6',
493
+ // OpenAI aliases
494
+ 'gpt-5.5-flagship': 'gpt-5.5',
495
+ // Anthropic aliases
496
+ 'claude-opus-4.7': 'claude-opus-4-7',
497
+ 'claude-opus-4.6': 'claude-opus-4-6',
498
+ 'claude-sonnet-4.6': 'claude-sonnet-4-6',
499
+ 'claude-haiku-4.5': 'claude-haiku-4-5',
500
+ 'claude-4-opus': 'claude-opus-4-7',
397
501
  'claude-4-sonnet': 'claude-sonnet-4-6',
398
502
  'claude-4-haiku': 'claude-haiku-4-5',
503
+ 'claude-4.7-opus': 'claude-opus-4-7',
504
+ 'claude-4.6-opus': 'claude-opus-4-6',
505
+ // Deepseek aliases (legacy names route to V4 Flash thinking modes per DeepSeek migration policy)
506
+ 'deepseek-r1': 'deepseek-reasoner',
507
+ 'deepseek-v3': 'deepseek-chat',
508
+ 'deepseek-v4': 'deepseek-v4-pro',
509
+ // xAI aliases
399
510
  'grok-4-0709': 'grok-4',
511
+ 'grok-3-fast': 'grok-4-fast-non-reasoning',
512
+ 'grok-3-mini-fast': 'grok-3-mini',
513
+ 'grok-4-3': 'grok-4.3',
514
+ 'grok-4-20': 'grok-4.20',
515
+ // Gemini aliases
400
516
  'gemini-pro': 'gemini-3.1-pro-preview',
401
517
  'gemini-flash': 'gemini-3-flash-preview',
402
- 'kimi-k2.5': 'kimi-k2-0905-preview',
403
- 'moonshot-v1-auto': 'kimi-k2-0905-preview',
518
+ 'gemini-3.1-pro': 'gemini-3.1-pro-preview',
519
+ 'gemini-3-flash': 'gemini-3-flash-preview',
520
+ 'gemini-3.1-flash-lite': 'gemini-3.1-flash-lite-preview',
521
+ // Kimi aliases
522
+ 'moonshot-v1-auto': 'kimi-k2.6',
523
+ 'kimi-k3': 'kimi-k2.6',
524
+ // Qwen aliases
404
525
  'qwen-plus': 'qwen3.5-plus',
405
526
  'qwen-max': 'qwen3-max',
406
527
  'qwen-turbo': 'qwen3.5-flash',
407
- 'grok-3-fast': 'grok-4-fast-non-reasoning',
408
- 'grok-3-mini-fast': 'grok-3-mini',
409
528
  };
410
529
  /**
411
530
  * Type guard to check if a string is a valid supported model
@@ -435,12 +554,12 @@ function getModelProvider(model) {
435
554
  * Default model tiers per provider for use with LLM_MODEL_MINI/NORMAL/ADVANCED env vars
436
555
  */
437
556
  const PROVIDER_DEFAULT_MODELS = {
438
- openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.4' },
439
- anthropic: { mini: 'claude-haiku-4-5', normal: 'claude-sonnet-4-6', advanced: 'claude-opus-4-6' },
440
- deepseek: { mini: 'deepseek-chat', normal: 'deepseek-chat', advanced: 'deepseek-reasoner' },
441
- kimi: { mini: 'kimi-k2-0905-preview', normal: 'kimi-k2-turbo-preview', advanced: 'kimi-k2-thinking-turbo' },
557
+ openai: { mini: 'gpt-5.4-nano', normal: 'gpt-5.4-mini', advanced: 'gpt-5.5' },
558
+ anthropic: { mini: 'claude-haiku-4-5', normal: 'claude-sonnet-4-6', advanced: 'claude-opus-4-7' },
559
+ deepseek: { mini: 'deepseek-v4-flash', normal: 'deepseek-v4-flash', advanced: 'deepseek-v4-pro' },
560
+ kimi: { mini: 'kimi-k2-0905-preview', normal: 'kimi-k2.5', advanced: 'kimi-k2.6' },
442
561
  qwen: { mini: 'qwen3.5-flash', normal: 'qwen3.5-plus', advanced: 'qwen3-max' },
443
- xai: { mini: 'grok-3-mini', normal: 'grok-4-fast-non-reasoning', advanced: 'grok-4' },
562
+ xai: { mini: 'grok-4.1-fast', normal: 'grok-4-fast-non-reasoning', advanced: 'grok-4.3' },
444
563
  gemini: { mini: 'gemini-3.1-flash-lite-preview', normal: 'gemini-3-flash-preview', advanced: 'gemini-3.1-pro-preview' },
445
564
  };
446
565
 
@@ -749,7 +868,7 @@ const DEFAULT_DEVELOPER_PROMPT = `
749
868
  Respond only with final content (e.g. code, a json or yaml object, a formatted string, or a markdown document) and nothing else. Do not reply with a preamble, introduction, or conclusion.
750
869
  `;
751
870
  /**
752
- * Token costs in USD per token. Last updated Apr 2026.
871
+ * Token costs in USD per token. Last updated May 2026.
753
872
  *
754
873
  * `cacheHitCost` reflects OpenAI's cached-input billing rate (~50% of the
755
874
  * standard input rate per OpenAI's prompt caching documentation). When set,
@@ -758,6 +877,16 @@ const DEFAULT_DEVELOPER_PROMPT = `
758
877
  * rate (a silent ~50% cost overstatement for cache-friendly workloads).
759
878
  */
760
879
  const openAiModelCosts = {
880
+ 'gpt-5.5': {
881
+ inputCost: 5 / 1_000_000,
882
+ cacheHitCost: 2.5 / 1_000_000,
883
+ outputCost: 30 / 1_000_000,
884
+ },
885
+ 'gpt-5.5-pro': {
886
+ inputCost: 30 / 1_000_000,
887
+ cacheHitCost: 15 / 1_000_000,
888
+ outputCost: 180 / 1_000_000,
889
+ },
761
890
  'gpt-5.4': {
762
891
  inputCost: 2.5 / 1_000_000,
763
892
  cacheHitCost: 1.25 / 1_000_000,
@@ -825,6 +954,11 @@ const openAiModelCosts = {
825
954
  },
826
955
  };
827
956
  const anthropicModelCosts = {
957
+ 'claude-opus-4-7': {
958
+ inputCost: 5 / 1_000_000,
959
+ outputCost: 25 / 1_000_000,
960
+ cacheHitCost: 0.5 / 1_000_000,
961
+ },
828
962
  'claude-opus-4-6': {
829
963
  inputCost: 15 / 1_000_000,
830
964
  outputCost: 75 / 1_000_000,
@@ -842,6 +976,16 @@ const anthropicModelCosts = {
842
976
  },
843
977
  };
844
978
  const deepseekModelCosts = {
979
+ 'deepseek-v4-pro': {
980
+ inputCost: 0.55 / 1_000_000,
981
+ cacheHitCost: 0.14 / 1_000_000,
982
+ outputCost: 2.19 / 1_000_000,
983
+ },
984
+ 'deepseek-v4-flash': {
985
+ inputCost: 0.27 / 1_000_000,
986
+ cacheHitCost: 0.07 / 1_000_000,
987
+ outputCost: 1.1 / 1_000_000,
988
+ },
845
989
  'deepseek-chat': {
846
990
  inputCost: 0.27 / 1_000_000,
847
991
  cacheHitCost: 0.07 / 1_000_000,
@@ -854,6 +998,14 @@ const deepseekModelCosts = {
854
998
  },
855
999
  };
856
1000
  const kimiModelCosts = {
1001
+ 'kimi-k2.6': {
1002
+ inputCost: 0.74 / 1_000_000,
1003
+ outputCost: 3.49 / 1_000_000,
1004
+ },
1005
+ 'kimi-k2.5': {
1006
+ inputCost: 0.44 / 1_000_000,
1007
+ outputCost: 2 / 1_000_000,
1008
+ },
857
1009
  'kimi-k2-0905-preview': {
858
1010
  inputCost: 0.15 / 1_000_000,
859
1011
  outputCost: 0.6 / 1_000_000,
@@ -886,6 +1038,21 @@ const qwenModelCosts = {
886
1038
  },
887
1039
  };
888
1040
  const xaiModelCosts = {
1041
+ 'grok-4.3': {
1042
+ inputCost: 1.25 / 1_000_000,
1043
+ outputCost: 2.5 / 1_000_000,
1044
+ cacheHitCost: 0.31 / 1_000_000,
1045
+ },
1046
+ 'grok-4.20': {
1047
+ inputCost: 2 / 1_000_000,
1048
+ outputCost: 6 / 1_000_000,
1049
+ cacheHitCost: 0.5 / 1_000_000,
1050
+ },
1051
+ 'grok-4.1-fast': {
1052
+ inputCost: 0.2 / 1_000_000,
1053
+ outputCost: 0.5 / 1_000_000,
1054
+ cacheHitCost: 0.05 / 1_000_000,
1055
+ },
889
1056
  'grok-4': {
890
1057
  inputCost: 3 / 1_000_000,
891
1058
  outputCost: 15 / 1_000_000,
@@ -912,16 +1079,16 @@ const xaiModelCosts = {
912
1079
  };
913
1080
  const geminiModelCosts = {
914
1081
  'gemini-3.1-pro-preview': {
915
- inputCost: 1.25 / 1_000_000,
916
- outputCost: 10 / 1_000_000,
1082
+ inputCost: 2 / 1_000_000,
1083
+ outputCost: 12 / 1_000_000,
917
1084
  },
918
1085
  'gemini-3-flash-preview': {
919
- inputCost: 0.15 / 1_000_000,
920
- outputCost: 0.6 / 1_000_000,
1086
+ inputCost: 0.5 / 1_000_000,
1087
+ outputCost: 3 / 1_000_000,
921
1088
  },
922
1089
  'gemini-3.1-flash-lite-preview': {
923
- inputCost: 0.075 / 1_000_000,
924
- outputCost: 0.3 / 1_000_000,
1090
+ inputCost: 0.25 / 1_000_000,
1091
+ outputCost: 1.5 / 1_000_000,
925
1092
  },
926
1093
  };
927
1094
  /**
@@ -22830,11 +22997,11 @@ let poolConfig = DEFAULT_POOL_CONFIG;
22830
22997
  async function loadApolloModules() {
22831
22998
  if (typeof window === "undefined" || process.env.AWS_EXECUTION_ENV) {
22832
22999
  // Server-side (or Lambda): load the CommonJS‑based implementation.
22833
- return (await import('./apollo-client.server-JucuAyrj.js'));
23000
+ return (await import('./apollo-client.server-CJ6iRLa2.js'));
22834
23001
  }
22835
23002
  else {
22836
23003
  // Client-side: load the ESM‑based implementation.
22837
- return (await import('./apollo-client.client-CUIakkzs.js'));
23004
+ return (await import('./apollo-client.client-DrSy1wz-.js'));
22838
23005
  }
22839
23006
  }
22840
23007
  /**
@@ -81358,4 +81525,4 @@ const lumic = {
81358
81525
  };
81359
81526
 
81360
81527
  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 };
81361
- //# sourceMappingURL=index-DYehXKUX.js.map
81528
+ //# sourceMappingURL=index-CWoI2dXN.js.map