@anyway-sh/node-server-sdk 0.22.10 → 0.22.12

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.js CHANGED
@@ -90,7 +90,7 @@ class PromptNotFoundError extends TraceloopError {
90
90
  }
91
91
  }
92
92
 
93
- var version = "0.22.10";
93
+ var version = "0.22.12";
94
94
 
95
95
  /**
96
96
  * Base class for handling annotation operations with the Traceloop API.
@@ -3905,6 +3905,7 @@ class PricingCalculator {
3905
3905
  return null;
3906
3906
  }
3907
3907
  addCostAttributes(span) {
3908
+ var _a, _b;
3908
3909
  const attrs = span.attributes;
3909
3910
  if (!attrs)
3910
3911
  return;
@@ -3912,8 +3913,8 @@ class PricingCalculator {
3912
3913
  attrs[incubating.ATTR_GEN_AI_REQUEST_MODEL];
3913
3914
  if (!model)
3914
3915
  return;
3915
- const inputTokens = attrs[incubating.ATTR_GEN_AI_USAGE_INPUT_TOKENS];
3916
- const outputTokens = attrs[incubating.ATTR_GEN_AI_USAGE_OUTPUT_TOKENS];
3916
+ const inputTokens = ((_a = attrs[incubating.ATTR_GEN_AI_USAGE_INPUT_TOKENS]) !== null && _a !== void 0 ? _a : attrs[incubating.ATTR_GEN_AI_USAGE_PROMPT_TOKENS]);
3917
+ const outputTokens = ((_b = attrs[incubating.ATTR_GEN_AI_USAGE_OUTPUT_TOKENS]) !== null && _b !== void 0 ? _b : attrs[incubating.ATTR_GEN_AI_USAGE_COMPLETION_TOKENS]);
3917
3918
  if (inputTokens == null && outputTokens == null)
3918
3919
  return;
3919
3920
  const pricing = this.findPricing(model);
@@ -3934,13 +3935,607 @@ class PricingCalculator {
3934
3935
  }
3935
3936
  }
3936
3937
 
3938
+ var embeddings = {
3939
+ "text-embedding-ada-002": 0.0001,
3940
+ "text-embedding-3-small": 0.00002,
3941
+ "text-embedding-3-large": 0.00013,
3942
+ ada: 0.0001,
3943
+ "ada-v2": 0.0001,
3944
+ "text-ada-001": 0.0001,
3945
+ "azure_text-embedding-ada-002": 0.0001,
3946
+ "azure_text-embedding-3-small": 0.00002,
3947
+ "azure_text-embedding-3-large": 0.00013,
3948
+ azure_ada: 0.0001,
3949
+ "azure_ada-v2": 0.0001,
3950
+ "azure_text-ada-001": 0.0001,
3951
+ "embed-english-v3.0": 0.0001,
3952
+ "embed-multilingual-v3.0": 0.0001,
3953
+ "embed-english-light-v3.0": 0.0001,
3954
+ "embed-multilingual-light-v3.0": 0.0001,
3955
+ "embed-english-v2.0": 0.0001,
3956
+ "embed-english-light-v2.0": 0.0001,
3957
+ "embed-multilingual-v2.0": 0.0001,
3958
+ "mistral-embed": 0.0001,
3959
+ "amazon.titan-embed-text-v1": 0.0001,
3960
+ "amazon.titan-embed-text-v2": 0.00002,
3961
+ "textembedding-gecko": 0.0001,
3962
+ "textembedding-gecko@001": 0.0001,
3963
+ "textembedding-gecko@002": 0.0001,
3964
+ "textembedding-gecko@003": 0.0001
3965
+ };
3966
+ var images = {
3967
+ "dall-e-3": {
3968
+ standard: {
3969
+ "1024x1024": 0.04,
3970
+ "1024x1792": 0.02,
3971
+ "1792x1024": 0.08
3972
+ },
3973
+ hd: {
3974
+ "1024x1024": 0.08,
3975
+ "1024x1792": 0.12,
3976
+ "1792x1024": 0.12
3977
+ }
3978
+ },
3979
+ "azure_dall-e-3": {
3980
+ standard: {
3981
+ "1024x1024": 0.04,
3982
+ "1024x1792": 0.02,
3983
+ "1792x1024": 0.08
3984
+ },
3985
+ hd: {
3986
+ "1024x1024": 0.08,
3987
+ "1024x1792": 0.12,
3988
+ "1792x1024": 0.12
3989
+ }
3990
+ },
3991
+ "dall-e-2": {
3992
+ standard: {
3993
+ "1024x1024": 0.02,
3994
+ "512x512": 0.018,
3995
+ "256x256": 0.016
3996
+ }
3997
+ },
3998
+ "black-forest-labs/FLUX.1-dev": {
3999
+ standard: {
4000
+ "1000000": 0.025
4001
+ }
4002
+ },
4003
+ "black-forest-labs/FLUX.1-canny": {
4004
+ standard: {
4005
+ "1000000": 0.025
4006
+ }
4007
+ },
4008
+ "black-forest-labs/FLUX.1-depth": {
4009
+ standard: {
4010
+ "1000000": 0.025
4011
+ }
4012
+ },
4013
+ "black-forest-labs/FLUX.1-redux": {
4014
+ standard: {
4015
+ "1000000": 0.025
4016
+ }
4017
+ },
4018
+ "black-forest-labs/FLUX.1-schnell": {
4019
+ standard: {
4020
+ "1000000": 0.0027
4021
+ }
4022
+ },
4023
+ "black-forest-labs/FLUX.1-pro": {
4024
+ standard: {
4025
+ "1000000": 0.04
4026
+ }
4027
+ },
4028
+ "black-forest-labs/FLUX.1.1-pro": {
4029
+ standard: {
4030
+ "1000000": 0.05
4031
+ }
4032
+ },
4033
+ "stabilityai/stable-diffusion-xl-base-1.0": {
4034
+ standard: {
4035
+ "512X512": 0.001,
4036
+ "1024x1024": 0.01
4037
+ }
4038
+ },
4039
+ "amazon.titan-image-generator-v1": {
4040
+ standard: {
4041
+ "512x512": 0.008,
4042
+ "1024x1024": 0.01
4043
+ },
4044
+ premium: {
4045
+ "512x512": 0.01,
4046
+ "1024x1024": 0.012
4047
+ }
4048
+ }
4049
+ };
4050
+ var audio = {
4051
+ "tts-1": 0.015,
4052
+ "tts-1-hd": 0.03,
4053
+ eleven_multilingual_v2: 0.24,
4054
+ eleven_multilingual_v1: 0.24,
4055
+ eleven_monolingual_v1: 0.24,
4056
+ eleven_english_v1: 0.24,
4057
+ eleven_turbo_v2: 0.24,
4058
+ eleven_english_sts_v2: 0.24,
4059
+ eleven_multilingual_sts_v2: 0.24,
4060
+ best: 0.00010277777,
4061
+ nano: 0.00003333333
4062
+ };
4063
+ var chat = {
4064
+ "gpt-4.1-nano-2025-04-14": {
4065
+ promptPrice: 0.0001,
4066
+ completionPrice: 0.0004
4067
+ },
4068
+ "gpt-4.1-nano": {
4069
+ promptPrice: 0.0001,
4070
+ completionPrice: 0.0004
4071
+ },
4072
+ "gpt-4.1-mini-2025-04-14": {
4073
+ promptPrice: 0.0004,
4074
+ completionPrice: 0.0016
4075
+ },
4076
+ "gpt-4.1-mini": {
4077
+ promptPrice: 0.0004,
4078
+ completionPrice: 0.0016
4079
+ },
4080
+ "gpt-4.1-2025-04-14": {
4081
+ promptPrice: 0.002,
4082
+ completionPrice: 0.008
4083
+ },
4084
+ "gpt-4.1": {
4085
+ promptPrice: 0.002,
4086
+ completionPrice: 0.008
4087
+ },
4088
+ "gpt-4o": {
4089
+ promptPrice: 0.0005,
4090
+ completionPrice: 0.0015
4091
+ },
4092
+ "gpt-4o-2024-08-06": {
4093
+ promptPrice: 0.0025,
4094
+ completionPrice: 0.01
4095
+ },
4096
+ "gpt-4o-2024-05-13": {
4097
+ promptPrice: 0.005,
4098
+ completionPrice: 0.015
4099
+ },
4100
+ "gpt-4o-mini": {
4101
+ promptPrice: 0.00015,
4102
+ completionPrice: 0.0006
4103
+ },
4104
+ "gpt-4o-mini-2024-07-18": {
4105
+ promptPrice: 0.00015,
4106
+ completionPrice: 0.0006
4107
+ },
4108
+ "o1-mini": {
4109
+ promptPrice: 0.003,
4110
+ completionPrice: 0.012
4111
+ },
4112
+ "o1-mini-2024-09-12": {
4113
+ promptPrice: 0.003,
4114
+ completionPrice: 0.012
4115
+ },
4116
+ "o1-preview": {
4117
+ promptPrice: 0.015,
4118
+ completionPrice: 0.06
4119
+ },
4120
+ "o1-preview-2024-09-12": {
4121
+ promptPrice: 0.015,
4122
+ completionPrice: 0.06
4123
+ },
4124
+ "gpt-3.5-turbo": {
4125
+ promptPrice: 0.0005,
4126
+ completionPrice: 0.0015
4127
+ },
4128
+ "gpt-3.5-turbo-0125": {
4129
+ promptPrice: 0.0005,
4130
+ completionPrice: 0.0015
4131
+ },
4132
+ "azure_gpt-35-turbo": {
4133
+ promptPrice: 0.0005,
4134
+ completionPrice: 0.0015
4135
+ },
4136
+ "azure_gpt-35-turbo-16k": {
4137
+ promptPrice: 0.0005,
4138
+ completionPrice: 0.0015
4139
+ },
4140
+ "azure_gpt-35-turbo-instruct": {
4141
+ promptPrice: 0.0015,
4142
+ completionPrice: 0.002
4143
+ },
4144
+ "gpt-4": {
4145
+ promptPrice: 0.03,
4146
+ completionPrice: 0.06
4147
+ },
4148
+ "gpt-4-turbo": {
4149
+ promptPrice: 0.01,
4150
+ completionPrice: 0.03
4151
+ },
4152
+ "gpt-4-32k": {
4153
+ promptPrice: 0.06,
4154
+ completionPrice: 0.12
4155
+ },
4156
+ "gpt-4-1106-preview": {
4157
+ promptPrice: 0.01,
4158
+ completionPrice: 0.03
4159
+ },
4160
+ "gpt-4-0125-preview": {
4161
+ promptPrice: 0.01,
4162
+ completionPrice: 0.03
4163
+ },
4164
+ "gpt-4-preview": {
4165
+ promptPrice: 0.01,
4166
+ completionPrice: 0.03
4167
+ },
4168
+ "gpt-4-1106-vision-preview": {
4169
+ promptPrice: 0.01,
4170
+ completionPrice: 0.03
4171
+ },
4172
+ "gpt-4-vision-preview": {
4173
+ promptPrice: 0.01,
4174
+ completionPrice: 0.03
4175
+ },
4176
+ "azure_gpt-4": {
4177
+ promptPrice: 0.03,
4178
+ completionPrice: 0.06
4179
+ },
4180
+ "azure_gpt-4-32k": {
4181
+ promptPrice: 0.06,
4182
+ completionPrice: 0.12
4183
+ },
4184
+ "claude-3-opus-20240229": {
4185
+ promptPrice: 0.015,
4186
+ completionPrice: 0.075
4187
+ },
4188
+ "claude-3-sonnet-20240229": {
4189
+ promptPrice: 0.003,
4190
+ completionPrice: 0.015
4191
+ },
4192
+ "claude-3-haiku-20240307": {
4193
+ promptPrice: 0.00025,
4194
+ completionPrice: 0.00125
4195
+ },
4196
+ command: {
4197
+ promptPrice: 0.001,
4198
+ completionPrice: 0.002
4199
+ },
4200
+ "command-nightly": {
4201
+ promptPrice: 0.001,
4202
+ completionPrice: 0.002
4203
+ },
4204
+ "command-light": {
4205
+ promptPrice: 0.0003,
4206
+ completionPrice: 0.0006
4207
+ },
4208
+ "command-light-nightly": {
4209
+ promptPrice: 0.0003,
4210
+ completionPrice: 0.0006
4211
+ },
4212
+ "open-mistral-7b": {
4213
+ promptPrice: 0.00025,
4214
+ completionPrice: 0.00025
4215
+ },
4216
+ "open-mixtral-8x7b": {
4217
+ promptPrice: 0.0007,
4218
+ completionPrice: 0.0007
4219
+ },
4220
+ "mistral-small-latest": {
4221
+ promptPrice: 0.002,
4222
+ completionPrice: 0.006
4223
+ },
4224
+ "mistral-medium-latest": {
4225
+ promptPrice: 0.0027,
4226
+ completionPrice: 0.0081
4227
+ },
4228
+ "mistral-large-latest": {
4229
+ promptPrice: 0.008,
4230
+ completionPrice: 0.024
4231
+ },
4232
+ "amazon.titan-text-express-v1": {
4233
+ promptPrice: 0.0008,
4234
+ completionPrice: 0.0016
4235
+ },
4236
+ "amazon.titan-text-lite-v1": {
4237
+ promptPrice: 0.0003,
4238
+ completionPrice: 0.0004
4239
+ },
4240
+ "mistral.mistral-7b-instruct-v0:2": {
4241
+ promptPrice: 0.00015,
4242
+ completionPrice: 0.0002
4243
+ },
4244
+ "mistral.mixtral-8x7b-instruct-v0:1": {
4245
+ promptPrice: 0.00045,
4246
+ completionPrice: 0.0007
4247
+ },
4248
+ "mistral.mistral-large-2402-v1:0": {
4249
+ promptPrice: 0.008,
4250
+ completionPrice: 0.024
4251
+ },
4252
+ "anthropic.claude-3-haiku-20240307-v1:0": {
4253
+ promptPrice: 0.00025,
4254
+ completionPrice: 0.00125
4255
+ },
4256
+ "anthropic.claude-v2": {
4257
+ promptPrice: 0.008,
4258
+ completionPrice: 0.024
4259
+ },
4260
+ "anthropic.claude-3-sonnet-20240229-v1:0": {
4261
+ promptPrice: 0.003,
4262
+ completionPrice: 0.015
4263
+ },
4264
+ "anthropic.claude-3-opus-20240229-v1:0": {
4265
+ promptPrice: 0.015,
4266
+ completionPrice: 0.075
4267
+ },
4268
+ "meta.llama3-8b-instruct-v1:0": {
4269
+ promptPrice: 0.0004,
4270
+ completionPrice: 0.0006
4271
+ },
4272
+ "meta.llama3-70b-instruct-v1:0": {
4273
+ promptPrice: 0.00265,
4274
+ completionPrice: 0.0035
4275
+ },
4276
+ "meta.llama2-13b-chat-v1": {
4277
+ promptPrice: 0.00075,
4278
+ completionPrice: 0.001
4279
+ },
4280
+ "meta.llama2-70b-chat-v1": {
4281
+ promptPrice: 0.00195,
4282
+ completionPrice: 0.00256
4283
+ },
4284
+ "cohere.command-text-v14": {
4285
+ promptPrice: 0.0015,
4286
+ completionPrice: 0.002
4287
+ },
4288
+ "cohere.command-light-text-v14": {
4289
+ promptPrice: 0.0003,
4290
+ completionPrice: 0.0006
4291
+ },
4292
+ "ai21.j2-mid-v1": {
4293
+ promptPrice: 0.0125,
4294
+ completionPrice: 0.0125
4295
+ },
4296
+ "ai21.j2-ultra-v1": {
4297
+ promptPrice: 0.0188,
4298
+ completionPrice: 0.0188
4299
+ },
4300
+ "gemini-1.0-pro": {
4301
+ promptPrice: 0.0005,
4302
+ completionPrice: 0.0015
4303
+ },
4304
+ "gemini-1.5-flash": {
4305
+ promptPrice: 0.000075,
4306
+ completionPrice: 0.0003
4307
+ },
4308
+ "gemini-1.5-pro": {
4309
+ promptPrice: 0.00125,
4310
+ completionPrice: 0.005
4311
+ },
4312
+ "gemini-1.0-pro-002": {
4313
+ promptPrice: 0.0005,
4314
+ completionPrice: 0.0015
4315
+ },
4316
+ "gemini-1.0-pro-001": {
4317
+ promptPrice: 0.0005,
4318
+ completionPrice: 0.0015
4319
+ },
4320
+ "gemini-1.5-pro-preview-0409": {
4321
+ promptPrice: 0.005,
4322
+ completionPrice: 0.015
4323
+ },
4324
+ "gemini-1.5-pro-preview-0514": {
4325
+ promptPrice: 0.005,
4326
+ completionPrice: 0.015
4327
+ },
4328
+ "gemini-1.5-flash-preview-0514": {
4329
+ promptPrice: 0.0005,
4330
+ completionPrice: 0.0015
4331
+ },
4332
+ "gemini-2.0-flash": {
4333
+ promptPrice: 0.0001,
4334
+ completionPrice: 0.0004
4335
+ },
4336
+ "gemini-2.0-flash-lite": {
4337
+ promptPrice: 0.000075,
4338
+ completionPrice: 0.0003
4339
+ },
4340
+ "gemini-2.5-flash": {
4341
+ promptPrice: 0.0003,
4342
+ completionPrice: 0.0025
4343
+ },
4344
+ "gemini-2.5-flash-preview": {
4345
+ promptPrice: 0.0003,
4346
+ completionPrice: 0.0025
4347
+ },
4348
+ "gemini-2.5-flash-lite": {
4349
+ promptPrice: 0.0001,
4350
+ completionPrice: 0.0004
4351
+ },
4352
+ "gemini-2.5-flash-lite-preview": {
4353
+ promptPrice: 0.0001,
4354
+ completionPrice: 0.0004
4355
+ },
4356
+ "gemini-2.5-pro": {
4357
+ promptPrice: 0.00125,
4358
+ completionPrice: 0.01
4359
+ },
4360
+ "text-bison": {
4361
+ promptPrice: 0.001,
4362
+ completionPrice: 0.002
4363
+ },
4364
+ "text-bison@002": {
4365
+ promptPrice: 0.001,
4366
+ completionPrice: 0.002
4367
+ },
4368
+ "text-bison-32k": {
4369
+ promptPrice: 0.001,
4370
+ completionPrice: 0.002
4371
+ },
4372
+ "text-bison-32k@002": {
4373
+ promptPrice: 0.001,
4374
+ completionPrice: 0.002
4375
+ },
4376
+ "text-unicorn": {
4377
+ promptPrice: 0.01,
4378
+ completionPrice: 0.03
4379
+ },
4380
+ "text-unicorn@001": {
4381
+ promptPrice: 0.01,
4382
+ completionPrice: 0.03
4383
+ },
4384
+ "chat-bison": {
4385
+ promptPrice: 0.001,
4386
+ completionPrice: 0.002
4387
+ },
4388
+ "chat-bison@002": {
4389
+ promptPrice: 0.001,
4390
+ completionPrice: 0.002
4391
+ },
4392
+ "chat-bison-32k": {
4393
+ promptPrice: 0.001,
4394
+ completionPrice: 0.002
4395
+ },
4396
+ "chat-bison-32k@002": {
4397
+ promptPrice: 0.001,
4398
+ completionPrice: 0.002
4399
+ },
4400
+ "llama3-8b-8192": {
4401
+ promptPrice: 0.00005,
4402
+ completionPrice: 0.0001
4403
+ },
4404
+ "llama3-70b-8192": {
4405
+ promptPrice: 0.00059,
4406
+ completionPrice: 0.00079
4407
+ },
4408
+ "mixtral-8x7b-32768": {
4409
+ promptPrice: 0.00024,
4410
+ completionPrice: 0.00024
4411
+ },
4412
+ "gemma-7b-it": {
4413
+ promptPrice: 0.0001,
4414
+ completionPrice: 0.0001
4415
+ },
4416
+ "reka-core": {
4417
+ promptPrice: 0.002,
4418
+ completionPrice: 0.002
4419
+ },
4420
+ "reka-core-20240415": {
4421
+ promptPrice: 0.002,
4422
+ completionPrice: 0.002
4423
+ },
4424
+ "reka-core-20240501": {
4425
+ promptPrice: 0.002,
4426
+ completionPrice: 0.002
4427
+ },
4428
+ "reka-flash": {
4429
+ promptPrice: 0.0002,
4430
+ completionPrice: 0.0008
4431
+ },
4432
+ "reka-flash-20240226": {
4433
+ promptPrice: 0.0002,
4434
+ completionPrice: 0.0008
4435
+ },
4436
+ "reka-edge": {
4437
+ promptPrice: 0.0001,
4438
+ completionPrice: 0.0001
4439
+ },
4440
+ "reka-edge-20240208": {
4441
+ promptPrice: 0.0001,
4442
+ completionPrice: 0.0001
4443
+ },
4444
+ "reka-spark": {
4445
+ promptPrice: 0.00005,
4446
+ completionPrice: 0.00005
4447
+ },
4448
+ "grok-beta": {
4449
+ promptPrice: 0.0005,
4450
+ completionPrice: 0.0015
4451
+ },
4452
+ "grok-vision-beta": {
4453
+ promptPrice: 0.0005,
4454
+ completionPrice: 0.0015
4455
+ },
4456
+ "jamba-1.5-mini": {
4457
+ promptPrice: 0.0002,
4458
+ completionPrice: 0.0004
4459
+ },
4460
+ "jamba-1.5-large": {
4461
+ promptPrice: 0.002,
4462
+ completionPrice: 0.008
4463
+ },
4464
+ "meta-llama/Llama-3.3-70B-Instruct-Turbo": {
4465
+ promptPrice: 0.00088,
4466
+ completionPrice: 0.00088
4467
+ },
4468
+ "meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo-vLLM-json": {
4469
+ promptPrice: 0.00088,
4470
+ completionPrice: 0.00088
4471
+ },
4472
+ "meta-llama/Meta-Llama-3.1-405B-Instruct-Lite-Pro-lora": {
4473
+ promptPrice: 0.00088,
4474
+ completionPrice: 0.00088
4475
+ },
4476
+ "meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo": {
4477
+ promptPrice: 0.00088,
4478
+ completionPrice: 0.00088
4479
+ },
4480
+ "Qwen/QwQ-32B-Preview": {
4481
+ promptPrice: 0.0012,
4482
+ completionPrice: 0.0012
4483
+ },
4484
+ "codellama/CodeLlama-34b-Instruct-hf": {
4485
+ promptPrice: 0.0008,
4486
+ completionPrice: 0.0008
4487
+ },
4488
+ "databricks/dbrx-instruct": {
4489
+ promptPrice: 0.0012,
4490
+ completionPrice: 0.0012
4491
+ },
4492
+ "deepseek-ai/deepseek-llm-67b-chat": {
4493
+ promptPrice: 0.0009,
4494
+ completionPrice: 0.0009
4495
+ },
4496
+ "google/gemma-2b-it": {
4497
+ promptPrice: 0.0001,
4498
+ completionPrice: 0.0001
4499
+ },
4500
+ "google/gemma-2-27b-it": {
4501
+ promptPrice: 0.0008,
4502
+ completionPrice: 0.0008
4503
+ },
4504
+ "google/gemma-2-9b-it": {
4505
+ promptPrice: 0.0003,
4506
+ completionPrice: 0.0003
4507
+ },
4508
+ "Gryphe/MythoMax-L2-13b-Lite": {
4509
+ promptPrice: 0.0003,
4510
+ completionPrice: 0.0003
4511
+ },
4512
+ "nvidia/Llama-3.1-Nemotron-70B-Instruct-HF": {
4513
+ promptPrice: 0.0088,
4514
+ completionPrice: 0.0088
4515
+ },
4516
+ "deepseek-chat": {
4517
+ promptPrice: 0.00014,
4518
+ completionPrice: 0.00028
4519
+ },
4520
+ "deepseek-reasoner": {
4521
+ promptPrice: 0.00055,
4522
+ completionPrice: 0.00219
4523
+ }
4524
+ };
4525
+ var defaultPricing = {
4526
+ embeddings: embeddings,
4527
+ images: images,
4528
+ audio: audio,
4529
+ chat: chat
4530
+ };
4531
+
3937
4532
  function loadPricing(pricingJsonPath) {
3938
4533
  if (pricingJsonPath) {
3939
4534
  // eslint-disable-next-line @typescript-eslint/no-var-requires
3940
4535
  const fs = require("fs");
3941
4536
  return JSON.parse(fs.readFileSync(pricingJsonPath, "utf-8"));
3942
4537
  }
3943
- return require("./data/default_pricing.json");
4538
+ return defaultPricing;
3944
4539
  }
3945
4540
 
3946
4541
  let _configuration;