niceeval 0.10.0 → 0.10.2

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 (53) hide show
  1. package/dist/report/components/attempt-detail/AttemptConversation.d.ts +5 -1
  2. package/dist/report/components/attempt-detail/AttemptConversation.js +42 -2
  3. package/dist/report/components/attempt-detail/AttemptSource.js +83 -13
  4. package/dist/report/components/attempt-detail/compute.js +44 -1
  5. package/dist/report/components/attempt-detail/faces.js +4 -0
  6. package/dist/report/components/attempt-detail/index.d.ts +2 -2
  7. package/dist/report/components/attempt-detail/index.js +24 -4
  8. package/dist/report/components/entity-lists/ExperimentList.d.ts +1 -2
  9. package/dist/report/components/entity-lists/ExperimentList.js +6 -5
  10. package/dist/report/components/entity-lists/faces.d.ts +1 -1
  11. package/dist/report/components/entity-lists/faces.js +10 -9
  12. package/dist/report/components/entity-lists/index.d.ts +5 -7
  13. package/dist/report/components/entity-lists/index.js +7 -3
  14. package/dist/report/components/metric-views/MetricScatter.js +2 -38
  15. package/dist/report/index.d.ts +1 -1
  16. package/dist/report/model/format.d.ts +5 -5
  17. package/dist/report/model/format.js +34 -8
  18. package/dist/report/model/types.d.ts +16 -2
  19. package/dist/report/react/index.d.ts +1 -1
  20. package/dist/runner/types.d.ts +2 -1
  21. package/dist/sandbox/e2b.d.ts +0 -1
  22. package/docs-site/zh/examples/integrations/ai-sdk-v7.mdx +5 -5
  23. package/docs-site/zh/explanation/runner.mdx +6 -2
  24. package/docs-site/zh/reference/cli.mdx +2 -2
  25. package/docs-site/zh/reference/report-components.mdx +3 -1
  26. package/docs-site/zh/tutorials/experiments.mdx +1 -2
  27. package/docs-site/zh/tutorials/viewing-results.mdx +12 -9
  28. package/docs-site/zh/tutorials/write-experiment.mdx +1 -3
  29. package/package.json +3 -4
  30. package/src/cli.ts +4 -2
  31. package/src/o11y/prices.json +176 -99
  32. package/src/report/assets/styles.css +822 -0
  33. package/src/report/components/attempt-detail/AttemptConversation.tsx +55 -7
  34. package/src/report/components/attempt-detail/AttemptSource.tsx +186 -42
  35. package/src/report/components/attempt-detail/attempt-components.test.tsx +82 -4
  36. package/src/report/components/attempt-detail/compute.ts +50 -1
  37. package/src/report/components/attempt-detail/faces.ts +3 -0
  38. package/src/report/components/attempt-detail/index.tsx +33 -16
  39. package/src/report/components/attempt-detail/validate.test.ts +19 -2
  40. package/src/report/components/entity-lists/ExperimentList.tsx +13 -10
  41. package/src/report/components/entity-lists/faces.ts +10 -9
  42. package/src/report/components/entity-lists/index.tsx +7 -10
  43. package/src/report/components/metric-views/MetricScatter.tsx +2 -38
  44. package/src/report/components/render.test.tsx +19 -9
  45. package/src/report/index.ts +2 -0
  46. package/src/report/model/format.ts +33 -8
  47. package/src/report/model/types.ts +18 -2
  48. package/src/report/react/index.tsx +2 -0
  49. package/src/report/runtime/dual-render.test.tsx +43 -10
  50. package/src/runner/types.ts +2 -1
  51. package/src/sandbox/e2b-reconcile.test.ts +125 -0
  52. package/src/sandbox/e2b.ts +38 -2
  53. package/src/view/view-report.test.ts +3 -1
@@ -1176,11 +1176,6 @@
1176
1176
  "in": 2,
1177
1177
  "out": 8
1178
1178
  },
1179
- "aion-labs-aion-2-0": {
1180
- "in": 1,
1181
- "out": 2,
1182
- "cacheRead": 0.25
1183
- },
1184
1179
  "aion-labs-aion-3-0": {
1185
1180
  "in": 3.75,
1186
1181
  "out": 7.5,
@@ -1375,6 +1370,22 @@
1375
1370
  "in": 0.15,
1376
1371
  "out": 0.5
1377
1372
  },
1373
+ "amazon--nova-lite": {
1374
+ "in": 0.3,
1375
+ "out": 2.37
1376
+ },
1377
+ "amazon--nova-micro": {
1378
+ "in": 0.03,
1379
+ "out": 0.1
1380
+ },
1381
+ "amazon--nova-pro": {
1382
+ "in": 0.56,
1383
+ "out": 2.13
1384
+ },
1385
+ "amazon--titan-embed-text": {
1386
+ "in": 0.14,
1387
+ "out": 0
1388
+ },
1378
1389
  "amazon.nova-2-lite-v1:0": {
1379
1390
  "in": 0.33,
1380
1391
  "out": 2.75
@@ -1434,6 +1445,12 @@
1434
1445
  "in": 0.8,
1435
1446
  "out": 3.2
1436
1447
  },
1448
+ "ambient/large": {
1449
+ "in": 1.05,
1450
+ "out": 4.4,
1451
+ "cacheRead": 0.2,
1452
+ "cacheWrite": 0
1453
+ },
1437
1454
  "anthracite-org/magnum-v2-72b": {
1438
1455
  "in": 2.006,
1439
1456
  "out": 2.992
@@ -1979,10 +1996,6 @@
1979
1996
  "in": 0.18,
1980
1997
  "out": 0.18
1981
1998
  },
1982
- "arcee-ai/trinity-large-preview": {
1983
- "in": 0.25,
1984
- "out": 1
1985
- },
1986
1999
  "arcee-ai/trinity-large-thinking": {
1987
2000
  "in": 0.22,
1988
2001
  "out": 0.85
@@ -2721,6 +2734,10 @@
2721
2734
  "in": 0.2,
2722
2735
  "out": 0.9
2723
2736
  },
2737
+ "cohere--command-a-reasoning": {
2738
+ "in": 0.63,
2739
+ "out": 5.05
2740
+ },
2724
2741
  "cohere-command-a": {
2725
2742
  "in": 2.5,
2726
2743
  "out": 10
@@ -2927,6 +2944,21 @@
2927
2944
  "out": 30,
2928
2945
  "cacheRead": 0.5
2929
2946
  },
2947
+ "databricks-gpt-5-6-luna": {
2948
+ "in": 1,
2949
+ "out": 6,
2950
+ "cacheRead": 0.1
2951
+ },
2952
+ "databricks-gpt-5-6-sol": {
2953
+ "in": 5,
2954
+ "out": 30,
2955
+ "cacheRead": 0.5
2956
+ },
2957
+ "databricks-gpt-5-6-terra": {
2958
+ "in": 2.5,
2959
+ "out": 15,
2960
+ "cacheRead": 0.25
2961
+ },
2930
2962
  "databricks-gpt-5-mini": {
2931
2963
  "in": 0.25,
2932
2964
  "out": 2,
@@ -3309,10 +3341,10 @@
3309
3341
  "out": 0.42000000000000004
3310
3342
  },
3311
3343
  "deepseek/deepseek-v4-flash": {
3312
- "in": 0.16,
3313
- "out": 0.32,
3314
- "cacheRead": 0.004,
3315
- "cacheWrite": 0.16
3344
+ "in": 0.5,
3345
+ "out": 0.8,
3346
+ "cacheRead": 0.2,
3347
+ "cacheWrite": 0
3316
3348
  },
3317
3349
  "deepseek/deepseek-v4-flash:thinking": {
3318
3350
  "in": 0.14,
@@ -3892,13 +3924,13 @@
3892
3924
  "out": 4.998
3893
3925
  },
3894
3926
  "gemini-flash-latest": {
3895
- "in": 0.3,
3896
- "out": 2.5,
3897
- "cacheRead": 0.075
3927
+ "in": 1.5,
3928
+ "out": 9,
3929
+ "cacheRead": 0.15
3898
3930
  },
3899
3931
  "gemini-flash-lite-latest": {
3900
- "in": 0.1,
3901
- "out": 0.4,
3932
+ "in": 0.25,
3933
+ "out": 1.5,
3902
3934
  "cacheRead": 0.025
3903
3935
  },
3904
3936
  "gemini-omni-flash-preview": {
@@ -4431,13 +4463,13 @@
4431
4463
  "out": 0.306
4432
4464
  },
4433
4465
  "google/gemini-flash-latest": {
4434
- "in": 0.3,
4435
- "out": 2.5,
4436
- "cacheRead": 0.075
4466
+ "in": 1.5,
4467
+ "out": 9,
4468
+ "cacheRead": 0.15
4437
4469
  },
4438
4470
  "google/gemini-flash-lite-latest": {
4439
- "in": 0.1,
4440
- "out": 0.4,
4471
+ "in": 0.25,
4472
+ "out": 1.5,
4441
4473
  "cacheRead": 0.025
4442
4474
  },
4443
4475
  "google/gemini-omni-flash-preview": {
@@ -4861,6 +4893,11 @@
4861
4893
  "cacheRead": 0.25,
4862
4894
  "cacheWrite": 3.125
4863
4895
  },
4896
+ "gpt-chat-latest": {
4897
+ "in": 5,
4898
+ "out": 30,
4899
+ "cacheRead": 0.5
4900
+ },
4864
4901
  "gpt-image-1": {
4865
4902
  "in": 5,
4866
4903
  "out": 40,
@@ -5028,7 +5065,7 @@
5028
5065
  "grok-4.5": {
5029
5066
  "in": 2,
5030
5067
  "out": 6,
5031
- "cacheRead": 0.5
5068
+ "cacheRead": 0.3
5032
5069
  },
5033
5070
  "grok-build-0-1": {
5034
5071
  "in": 1,
@@ -5145,6 +5182,11 @@
5145
5182
  "in": 0.187,
5146
5183
  "out": 0.374
5147
5184
  },
5185
+ "hy3-preview": {
5186
+ "in": 0.17,
5187
+ "out": 0.566661,
5188
+ "cacheRead": 0.051
5189
+ },
5148
5190
  "ibm-granite/granite-4.0-h-micro": {
5149
5191
  "in": 0.017,
5150
5192
  "out": 0.11
@@ -5204,6 +5246,11 @@
5204
5246
  "in": 2.5,
5205
5247
  "out": 10
5206
5248
  },
5249
+ "inkling": {
5250
+ "in": 3.74,
5251
+ "out": 9.36,
5252
+ "cacheRead": 0.748
5253
+ },
5207
5254
  "intellect-3": {
5208
5255
  "in": 0.219,
5209
5256
  "out": 1.202
@@ -5387,9 +5434,9 @@
5387
5434
  "out": 1.1
5388
5435
  },
5389
5436
  "kimi-k2.7-code": {
5390
- "in": 1.28,
5391
- "out": 4.63,
5392
- "cacheRead": 0.32
5437
+ "in": 0.95,
5438
+ "out": 3.9995,
5439
+ "cacheRead": 0.160835
5393
5440
  },
5394
5441
  "kimi-k2.7-code-flex": {
5395
5442
  "in": 0.475,
@@ -5398,13 +5445,17 @@
5398
5445
  },
5399
5446
  "kimi-k2.7-code-highspeed": {
5400
5447
  "in": 1.9,
5401
- "out": 8,
5402
- "cacheRead": 0.38
5448
+ "out": 7.999,
5449
+ "cacheRead": 0.32167
5403
5450
  },
5404
5451
  "kimi-k2.7-code-nitro": {
5405
5452
  "in": 0.275,
5406
5453
  "out": 1.1
5407
5454
  },
5455
+ "kimi-k3": {
5456
+ "in": 3,
5457
+ "out": 15
5458
+ },
5408
5459
  "kimi-thinking-preview": {
5409
5460
  "in": 31.46,
5410
5461
  "out": 31.46
@@ -5461,10 +5512,6 @@
5461
5512
  "in": 0.51,
5462
5513
  "out": 0.74
5463
5514
  },
5464
- "llama-3-8b-instruct": {
5465
- "in": 0.04,
5466
- "out": 0.04
5467
- },
5468
5515
  "llama-3.1-70b-instruct": {
5469
5516
  "in": 0.72,
5470
5517
  "out": 0.72
@@ -5815,34 +5862,18 @@
5815
5862
  "in": 0.025,
5816
5863
  "out": 0.025
5817
5864
  },
5818
- "meta/llama-3.2-11b": {
5819
- "in": 0.16,
5820
- "out": 0.16
5821
- },
5822
5865
  "meta/llama-3.2-11b-vision-instruct": {
5823
5866
  "in": 0.055,
5824
5867
  "out": 0.055
5825
5868
  },
5826
- "meta/llama-3.2-1b": {
5827
- "in": 0.1,
5828
- "out": 0.1
5829
- },
5830
5869
  "meta/llama-3.2-1b-instruct": {
5831
5870
  "in": 0.01,
5832
5871
  "out": 0.01
5833
5872
  },
5834
- "meta/llama-3.2-3b": {
5835
- "in": 0.15,
5836
- "out": 0.15
5837
- },
5838
5873
  "meta/llama-3.2-3b-instruct": {
5839
5874
  "in": 0.02,
5840
5875
  "out": 0.02
5841
5876
  },
5842
- "meta/llama-3.2-90b": {
5843
- "in": 0.72,
5844
- "out": 0.72
5845
- },
5846
5877
  "meta/llama-3.3-70b-instruct-maas": {
5847
5878
  "in": 0.72,
5848
5879
  "out": 0.72
@@ -6212,6 +6243,10 @@
6212
6243
  "in": 0.1,
6213
6244
  "out": 0.3
6214
6245
  },
6246
+ "mistral-small-4": {
6247
+ "in": 0.15,
6248
+ "out": 0.6
6249
+ },
6215
6250
  "mistral-small-4-119b": {
6216
6251
  "in": 0.75,
6217
6252
  "out": 3
@@ -6284,10 +6319,6 @@
6284
6319
  "in": 0.4,
6285
6320
  "out": 2
6286
6321
  },
6287
- "mistral/devstral-small": {
6288
- "in": 0.1,
6289
- "out": 0.3
6290
- },
6291
6322
  "mistral/devstral-small-2": {
6292
6323
  "in": 0.1,
6293
6324
  "out": 0.3
@@ -6376,14 +6407,18 @@
6376
6407
  "in": 0.15,
6377
6408
  "out": 0.15
6378
6409
  },
6379
- "mistral/pixtral-large": {
6380
- "in": 2,
6381
- "out": 6
6382
- },
6383
6410
  "mistral/pixtral-large-latest": {
6384
6411
  "in": 2,
6385
6412
  "out": 6
6386
6413
  },
6414
+ "mistralai--mistral-medium-instruct": {
6415
+ "in": 0.36,
6416
+ "out": 1.22
6417
+ },
6418
+ "mistralai--mistral-small": {
6419
+ "in": 0.07,
6420
+ "out": 0.28
6421
+ },
6387
6422
  "mistralai/Devstral-Small-2505": {
6388
6423
  "in": 0.05,
6389
6424
  "out": 0.22,
@@ -6606,6 +6641,12 @@
6606
6641
  "cacheRead": 0.18,
6607
6642
  "cacheWrite": 1
6608
6643
  },
6644
+ "moonshot/kimi-k3": {
6645
+ "in": 3,
6646
+ "out": 15,
6647
+ "cacheRead": 0.3,
6648
+ "cacheWrite": 3
6649
+ },
6609
6650
  "moonshotai.kimi-k2.5": {
6610
6651
  "in": 0.6,
6611
6652
  "out": 3
@@ -6722,9 +6763,9 @@
6722
6763
  "out": 2.73
6723
6764
  },
6724
6765
  "moonshotai/kimi-k2.7-code": {
6725
- "in": 0.84,
6726
- "out": 3.99,
6727
- "cacheRead": 0.16,
6766
+ "in": 0.85,
6767
+ "out": 3.8,
6768
+ "cacheRead": 0.17,
6728
6769
  "cacheWrite": 0
6729
6770
  },
6730
6771
  "moonshotai/kimi-k2.7-code-highspeed": {
@@ -6732,6 +6773,11 @@
6732
6773
  "out": 8,
6733
6774
  "cacheRead": 0.38
6734
6775
  },
6776
+ "moonshotai/kimi-k3": {
6777
+ "in": 3,
6778
+ "out": 15,
6779
+ "cacheRead": 0.3
6780
+ },
6735
6781
  "moonshotai/kimi-latest": {
6736
6782
  "in": 0.5,
6737
6783
  "out": 2.6,
@@ -6880,6 +6926,10 @@
6880
6926
  "out": 4.04,
6881
6927
  "cacheRead": 0.16
6882
6928
  },
6929
+ "nvidia--llama-3.2-nv-embedqa-1b": {
6930
+ "in": 0.07,
6931
+ "out": 0
6932
+ },
6883
6933
  "nvidia-nemotron-3-nano-30b-a3b": {
6884
6934
  "in": 0.075,
6885
6935
  "out": 0.3
@@ -7300,6 +7350,24 @@
7300
7350
  "out": 33,
7301
7351
  "cacheRead": 0.55
7302
7352
  },
7353
+ "openai.gpt-5.6-luna": {
7354
+ "in": 1,
7355
+ "out": 6,
7356
+ "cacheRead": 0.1,
7357
+ "cacheWrite": 1.25
7358
+ },
7359
+ "openai.gpt-5.6-sol": {
7360
+ "in": 5,
7361
+ "out": 30,
7362
+ "cacheRead": 0.5,
7363
+ "cacheWrite": 6.25
7364
+ },
7365
+ "openai.gpt-5.6-terra": {
7366
+ "in": 2.5,
7367
+ "out": 15,
7368
+ "cacheRead": 0.25,
7369
+ "cacheWrite": 3.125
7370
+ },
7303
7371
  "openai.gpt-oss-120b": {
7304
7372
  "in": 0.15,
7305
7373
  "out": 0.6
@@ -7638,8 +7706,7 @@
7638
7706
  "openai/gpt-5.6-luna": {
7639
7707
  "in": 1,
7640
7708
  "out": 6,
7641
- "cacheRead": 0.1,
7642
- "cacheWrite": 1.25
7709
+ "cacheRead": 0.1
7643
7710
  },
7644
7711
  "openai/gpt-5.6-luna-pro": {
7645
7712
  "in": 1,
@@ -7650,8 +7717,7 @@
7650
7717
  "openai/gpt-5.6-sol": {
7651
7718
  "in": 5,
7652
7719
  "out": 30,
7653
- "cacheRead": 0.5,
7654
- "cacheWrite": 6.25
7720
+ "cacheRead": 0.5
7655
7721
  },
7656
7722
  "openai/gpt-5.6-sol-pro": {
7657
7723
  "in": 5,
@@ -7662,8 +7728,7 @@
7662
7728
  "openai/gpt-5.6-terra": {
7663
7729
  "in": 2.5,
7664
7730
  "out": 15,
7665
- "cacheRead": 0.25,
7666
- "cacheWrite": 3.125
7731
+ "cacheRead": 0.25
7667
7732
  },
7668
7733
  "openai/gpt-5.6-terra-pro": {
7669
7734
  "in": 2.5,
@@ -8556,10 +8621,6 @@
8556
8621
  "in": 0.7,
8557
8622
  "out": 2.8
8558
8623
  },
8559
- "qwen3-4b-fp8": {
8560
- "in": 0.03,
8561
- "out": 0.03
8562
- },
8563
8624
  "qwen3-5-122b-a10b": {
8564
8625
  "in": 0.115,
8565
8626
  "out": 0.917
@@ -8727,14 +8788,6 @@
8727
8788
  "in": 0.2,
8728
8789
  "out": 0.7
8729
8790
  },
8730
- "qwen3-vl-30b-a3b-thinking": {
8731
- "in": 0.2,
8732
- "out": 1
8733
- },
8734
- "qwen3-vl-8b-instruct": {
8735
- "in": 0.08,
8736
- "out": 0.5
8737
- },
8738
8791
  "qwen3-vl-flash": {
8739
8792
  "in": 0.05,
8740
8793
  "out": 0.4,
@@ -8928,6 +8981,10 @@
8928
8981
  "in": 0.65,
8929
8982
  "out": 0.75
8930
8983
  },
8984
+ "sap-abap-1": {
8985
+ "in": 0.48,
8986
+ "out": 1.7
8987
+ },
8931
8988
  "sapiens-ai/agnes-1.5-lite": {
8932
8989
  "in": 0.12,
8933
8990
  "out": 0.6
@@ -9154,9 +9211,10 @@
9154
9211
  "cacheRead": 0.02
9155
9212
  },
9156
9213
  "stepfun/step-3.7-flash": {
9157
- "in": 0.2,
9158
- "out": 1.15,
9159
- "cacheRead": 0.04
9214
+ "in": 0.19,
9215
+ "out": 1.14,
9216
+ "cacheRead": 0.03,
9217
+ "cacheWrite": 0
9160
9218
  },
9161
9219
  "stepfun/step-3.7-flash:thinking": {
9162
9220
  "in": 0.2,
@@ -9195,9 +9253,9 @@
9195
9253
  "out": 0.57
9196
9254
  },
9197
9255
  "tencent/hy3": {
9198
- "in": 0.14,
9199
- "out": 0.58,
9200
- "cacheRead": 0.035
9256
+ "in": 0.2,
9257
+ "out": 0.8,
9258
+ "cacheRead": 0.05
9201
9259
  },
9202
9260
  "tencent/hy3-preview": {
9203
9261
  "in": 0.19,
@@ -9233,6 +9291,15 @@
9233
9291
  "in": 0.4,
9234
9292
  "out": 0.4
9235
9293
  },
9294
+ "thinkingmachines/Inkling": {
9295
+ "in": 1,
9296
+ "out": 4.05,
9297
+ "cacheRead": 0.17
9298
+ },
9299
+ "thinkingmachines/inkling": {
9300
+ "in": 1,
9301
+ "out": 4.05
9302
+ },
9236
9303
  "tongyi-intent-detect-v3": {
9237
9304
  "in": 0.058,
9238
9305
  "out": 0.144
@@ -9586,6 +9653,11 @@
9586
9653
  "in": 0.06,
9587
9654
  "out": 0.4
9588
9655
  },
9656
+ "workers-ai/@cf/zai-org/glm-5.2": {
9657
+ "in": 1.4,
9658
+ "out": 4.4,
9659
+ "cacheRead": 0.26
9660
+ },
9589
9661
  "writer.palmyra-x4-v1:0": {
9590
9662
  "in": 2.5,
9591
9663
  "out": 10
@@ -9639,16 +9711,21 @@
9639
9711
  },
9640
9712
  "x-ai/grok-4.3": {
9641
9713
  "in": 1.25,
9642
- "out": 2.5
9714
+ "out": 2.5,
9715
+ "cacheRead": 0.2,
9716
+ "cacheWrite": 1.25
9643
9717
  },
9644
9718
  "x-ai/grok-4.5": {
9645
9719
  "in": 2,
9646
9720
  "out": 6,
9647
- "cacheRead": 0.5
9721
+ "cacheRead": 0.5,
9722
+ "cacheWrite": 2
9648
9723
  },
9649
9724
  "x-ai/grok-build-0.1": {
9650
9725
  "in": 1,
9651
- "out": 2
9726
+ "out": 2,
9727
+ "cacheRead": 0.2,
9728
+ "cacheWrite": 1
9652
9729
  },
9653
9730
  "x-ai/grok-code-fast-1": {
9654
9731
  "in": 0.2,
@@ -9809,10 +9886,10 @@
9809
9886
  "cacheRead": 0.2
9810
9887
  },
9811
9888
  "xiaomi/mimo-v2.5": {
9812
- "in": 0.16,
9813
- "out": 0.32,
9814
- "cacheRead": 0.004,
9815
- "cacheWrite": 0.16
9889
+ "in": 0.4,
9890
+ "out": 2,
9891
+ "cacheRead": 0.08,
9892
+ "cacheWrite": 0
9816
9893
  },
9817
9894
  "xiaomi/mimo-v2.5-pro": {
9818
9895
  "in": 0.47,
@@ -9943,10 +10020,10 @@
9943
10020
  "cacheWrite": 1
9944
10021
  },
9945
10022
  "z-ai/glm-5.2": {
9946
- "in": 1.2,
10023
+ "in": 1.05,
9947
10024
  "out": 4.4,
9948
- "cacheRead": 0.3,
9949
- "cacheWrite": 1.2
10025
+ "cacheRead": 0.2,
10026
+ "cacheWrite": 0
9950
10027
  },
9951
10028
  "z-ai/glm-5v-turbo": {
9952
10029
  "in": 1.2,
@@ -9961,7 +10038,7 @@
9961
10038
  "zai-glm-4.7": {
9962
10039
  "in": 2.25,
9963
10040
  "out": 2.75,
9964
- "cacheRead": 0,
10041
+ "cacheRead": 2.25,
9965
10042
  "cacheWrite": 0
9966
10043
  },
9967
10044
  "zai-glm-5-1": {
@@ -10330,9 +10407,9 @@
10330
10407
  "cacheWrite": 3.75
10331
10408
  },
10332
10409
  "~google/gemini-flash-latest": {
10333
- "in": 0.5,
10334
- "out": 3,
10335
- "cacheRead": 0.05,
10410
+ "in": 1.5,
10411
+ "out": 9,
10412
+ "cacheRead": 0.15,
10336
10413
  "cacheWrite": 0.08333333333333334
10337
10414
  },
10338
10415
  "~google/gemini-pro-latest": {
@@ -10359,7 +10436,7 @@
10359
10436
  "~x-ai/grok-latest": {
10360
10437
  "in": 2,
10361
10438
  "out": 6,
10362
- "cacheRead": 0.5
10439
+ "cacheRead": 0.3
10363
10440
  }
10364
10441
  }
10365
10442
  }