@llmgateway/models 1.268.1 → 1.269.0
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/models/alibaba.d.ts +313 -18
- package/dist/models/alibaba.js +391 -30
- package/dist/models/alibaba.js.map +1 -1
- package/dist/models/anthropic.d.ts +128 -0
- package/dist/models/anthropic.js +134 -0
- package/dist/models/anthropic.js.map +1 -1
- package/dist/models.d.ts +441 -18
- package/dist/providers.js +31 -0
- package/dist/providers.js.map +1 -1
- package/package.json +1 -1
package/dist/models/alibaba.js
CHANGED
|
@@ -467,11 +467,49 @@ export const alibabaModels = [
|
|
|
467
467
|
test: "skip",
|
|
468
468
|
providerId: "alibaba",
|
|
469
469
|
externalId: "qwen3-coder-plus",
|
|
470
|
-
inputPrice: "
|
|
471
|
-
outputPrice: "
|
|
472
|
-
cachedInputPrice: "
|
|
473
|
-
cacheReadInputPrice: "0.
|
|
474
|
-
cacheWriteInputPrice: "
|
|
470
|
+
inputPrice: "1e-6",
|
|
471
|
+
outputPrice: "5e-6",
|
|
472
|
+
cachedInputPrice: "0.2e-6",
|
|
473
|
+
cacheReadInputPrice: "0.1e-6",
|
|
474
|
+
cacheWriteInputPrice: "1.25e-6",
|
|
475
|
+
pricingTiers: [
|
|
476
|
+
{
|
|
477
|
+
name: "Up to 32K",
|
|
478
|
+
upToTokens: 32000,
|
|
479
|
+
inputPrice: "1e-6",
|
|
480
|
+
outputPrice: "5e-6",
|
|
481
|
+
cachedInputPrice: "0.2e-6",
|
|
482
|
+
cacheReadInputPrice: "0.1e-6",
|
|
483
|
+
cacheWriteInputPrice: "1.25e-6",
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
name: "32K-128K",
|
|
487
|
+
upToTokens: 128000,
|
|
488
|
+
inputPrice: "1.8e-6",
|
|
489
|
+
outputPrice: "9e-6",
|
|
490
|
+
cachedInputPrice: "0.36e-6",
|
|
491
|
+
cacheReadInputPrice: "0.18e-6",
|
|
492
|
+
cacheWriteInputPrice: "2.25e-6",
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
name: "128K-256K",
|
|
496
|
+
upToTokens: 256000,
|
|
497
|
+
inputPrice: "3e-6",
|
|
498
|
+
outputPrice: "15e-6",
|
|
499
|
+
cachedInputPrice: "0.6e-6",
|
|
500
|
+
cacheReadInputPrice: "0.3e-6",
|
|
501
|
+
cacheWriteInputPrice: "3.75e-6",
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
name: "256K-1M",
|
|
505
|
+
upToTokens: 1000000,
|
|
506
|
+
inputPrice: "6e-6",
|
|
507
|
+
outputPrice: "60e-6",
|
|
508
|
+
cachedInputPrice: "1.2e-6",
|
|
509
|
+
cacheReadInputPrice: "0.6e-6",
|
|
510
|
+
cacheWriteInputPrice: "7.5e-6",
|
|
511
|
+
},
|
|
512
|
+
],
|
|
475
513
|
requestPrice: "0",
|
|
476
514
|
contextSize: 1000000,
|
|
477
515
|
maxOutput: 66000,
|
|
@@ -1342,11 +1380,40 @@ export const alibabaModels = [
|
|
|
1342
1380
|
test: "skip",
|
|
1343
1381
|
providerId: "alibaba",
|
|
1344
1382
|
externalId: "qwen3-max-preview",
|
|
1345
|
-
inputPrice: "
|
|
1346
|
-
outputPrice: "
|
|
1347
|
-
cachedInputPrice: "0.
|
|
1348
|
-
cacheReadInputPrice: "0.
|
|
1349
|
-
cacheWriteInputPrice: "
|
|
1383
|
+
inputPrice: "1.2e-6",
|
|
1384
|
+
outputPrice: "6e-6",
|
|
1385
|
+
cachedInputPrice: "0.24e-6",
|
|
1386
|
+
cacheReadInputPrice: "0.12e-6",
|
|
1387
|
+
cacheWriteInputPrice: "1.5e-6",
|
|
1388
|
+
pricingTiers: [
|
|
1389
|
+
{
|
|
1390
|
+
name: "Up to 32K",
|
|
1391
|
+
upToTokens: 32000,
|
|
1392
|
+
inputPrice: "1.2e-6",
|
|
1393
|
+
outputPrice: "6e-6",
|
|
1394
|
+
cachedInputPrice: "0.24e-6",
|
|
1395
|
+
cacheReadInputPrice: "0.12e-6",
|
|
1396
|
+
cacheWriteInputPrice: "1.5e-6",
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
name: "32K-128K",
|
|
1400
|
+
upToTokens: 128000,
|
|
1401
|
+
inputPrice: "2.4e-6",
|
|
1402
|
+
outputPrice: "12e-6",
|
|
1403
|
+
cachedInputPrice: "0.48e-6",
|
|
1404
|
+
cacheReadInputPrice: "0.24e-6",
|
|
1405
|
+
cacheWriteInputPrice: "3e-6",
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
name: "128K-256K",
|
|
1409
|
+
upToTokens: 256000,
|
|
1410
|
+
inputPrice: "3e-6",
|
|
1411
|
+
outputPrice: "15e-6",
|
|
1412
|
+
cachedInputPrice: "0.6e-6",
|
|
1413
|
+
cacheReadInputPrice: "0.3e-6",
|
|
1414
|
+
cacheWriteInputPrice: "3.75e-6",
|
|
1415
|
+
},
|
|
1416
|
+
],
|
|
1350
1417
|
requestPrice: "0",
|
|
1351
1418
|
contextSize: 256000,
|
|
1352
1419
|
maxOutput: 32800,
|
|
@@ -1421,14 +1488,21 @@ export const alibabaModels = [
|
|
|
1421
1488
|
cacheReadInputPrice: "0.165e-6",
|
|
1422
1489
|
cacheWriteInputPrice: "2.0625e-6",
|
|
1423
1490
|
},
|
|
1424
|
-
{
|
|
1491
|
+
{
|
|
1492
|
+
id: "us-virginia",
|
|
1493
|
+
inputPrice: "1.65e-6",
|
|
1494
|
+
outputPrice: "4.951e-6",
|
|
1495
|
+
cachedInputPrice: "0.33e-6",
|
|
1496
|
+
cacheReadInputPrice: "0.165e-6",
|
|
1497
|
+
cacheWriteInputPrice: "2.0625e-6",
|
|
1498
|
+
},
|
|
1425
1499
|
{
|
|
1426
1500
|
id: "cn-beijing",
|
|
1427
|
-
inputPrice: "1.
|
|
1428
|
-
outputPrice: "
|
|
1429
|
-
cachedInputPrice: "0.
|
|
1430
|
-
cacheReadInputPrice: "0.
|
|
1431
|
-
cacheWriteInputPrice: "2.
|
|
1501
|
+
inputPrice: "1.65e-6",
|
|
1502
|
+
outputPrice: "4.951e-6",
|
|
1503
|
+
cachedInputPrice: "0.33e-6",
|
|
1504
|
+
cacheReadInputPrice: "0.165e-6",
|
|
1505
|
+
cacheWriteInputPrice: "2.0625e-6",
|
|
1432
1506
|
},
|
|
1433
1507
|
],
|
|
1434
1508
|
requestPrice: "0",
|
|
@@ -1590,8 +1664,62 @@ export const alibabaModels = [
|
|
|
1590
1664
|
},
|
|
1591
1665
|
],
|
|
1592
1666
|
},
|
|
1593
|
-
{
|
|
1594
|
-
|
|
1667
|
+
{
|
|
1668
|
+
id: "us-virginia",
|
|
1669
|
+
inputPrice: "0.276e-6",
|
|
1670
|
+
outputPrice: "1.101e-6",
|
|
1671
|
+
cachedInputPrice: "0.0552e-6",
|
|
1672
|
+
cacheReadInputPrice: "0.0276e-6",
|
|
1673
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
1674
|
+
pricingTiers: [
|
|
1675
|
+
{
|
|
1676
|
+
name: "Up to 256K",
|
|
1677
|
+
upToTokens: 256000,
|
|
1678
|
+
inputPrice: "0.276e-6",
|
|
1679
|
+
outputPrice: "1.101e-6",
|
|
1680
|
+
cachedInputPrice: "0.0552e-6",
|
|
1681
|
+
cacheReadInputPrice: "0.0276e-6",
|
|
1682
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
name: "Over 256K",
|
|
1686
|
+
upToTokens: Infinity,
|
|
1687
|
+
inputPrice: "0.826e-6",
|
|
1688
|
+
outputPrice: "3.301e-6",
|
|
1689
|
+
cachedInputPrice: "0.1652e-6",
|
|
1690
|
+
cacheReadInputPrice: "0.0826e-6",
|
|
1691
|
+
cacheWriteInputPrice: "1.0325e-6",
|
|
1692
|
+
},
|
|
1693
|
+
],
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
id: "cn-beijing",
|
|
1697
|
+
inputPrice: "0.276e-6",
|
|
1698
|
+
outputPrice: "1.101e-6",
|
|
1699
|
+
cachedInputPrice: "0.0552e-6",
|
|
1700
|
+
cacheReadInputPrice: "0.0276e-6",
|
|
1701
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
1702
|
+
pricingTiers: [
|
|
1703
|
+
{
|
|
1704
|
+
name: "Up to 256K",
|
|
1705
|
+
upToTokens: 256000,
|
|
1706
|
+
inputPrice: "0.276e-6",
|
|
1707
|
+
outputPrice: "1.101e-6",
|
|
1708
|
+
cachedInputPrice: "0.0552e-6",
|
|
1709
|
+
cacheReadInputPrice: "0.0276e-6",
|
|
1710
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
name: "Over 256K",
|
|
1714
|
+
upToTokens: Infinity,
|
|
1715
|
+
inputPrice: "0.826e-6",
|
|
1716
|
+
outputPrice: "3.301e-6",
|
|
1717
|
+
cachedInputPrice: "0.1652e-6",
|
|
1718
|
+
cacheReadInputPrice: "0.0826e-6",
|
|
1719
|
+
cacheWriteInputPrice: "1.0325e-6",
|
|
1720
|
+
},
|
|
1721
|
+
],
|
|
1722
|
+
},
|
|
1595
1723
|
],
|
|
1596
1724
|
requestPrice: "0",
|
|
1597
1725
|
contextSize: 1000000,
|
|
@@ -1673,9 +1801,117 @@ export const alibabaModels = [
|
|
|
1673
1801
|
],
|
|
1674
1802
|
regions: [
|
|
1675
1803
|
{ id: "singapore" },
|
|
1676
|
-
{
|
|
1677
|
-
|
|
1678
|
-
|
|
1804
|
+
{
|
|
1805
|
+
id: "eu-frankfurt",
|
|
1806
|
+
inputPrice: "0.028e-6",
|
|
1807
|
+
outputPrice: "0.110e-6",
|
|
1808
|
+
cachedInputPrice: "0.0056e-6",
|
|
1809
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1810
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1811
|
+
pricingTiers: [
|
|
1812
|
+
{
|
|
1813
|
+
name: "Up to 32K",
|
|
1814
|
+
upToTokens: 32000,
|
|
1815
|
+
inputPrice: "0.028e-6",
|
|
1816
|
+
outputPrice: "0.110e-6",
|
|
1817
|
+
cachedInputPrice: "0.0056e-6",
|
|
1818
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1819
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
name: "32K-256K",
|
|
1823
|
+
upToTokens: 256000,
|
|
1824
|
+
inputPrice: "0.083e-6",
|
|
1825
|
+
outputPrice: "0.330e-6",
|
|
1826
|
+
cachedInputPrice: "0.0166e-6",
|
|
1827
|
+
cacheReadInputPrice: "0.0083e-6",
|
|
1828
|
+
cacheWriteInputPrice: "0.10375e-6",
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
name: "256K-1M",
|
|
1832
|
+
upToTokens: 1000000,
|
|
1833
|
+
inputPrice: "0.165e-6",
|
|
1834
|
+
outputPrice: "0.660e-6",
|
|
1835
|
+
cachedInputPrice: "0.033e-6",
|
|
1836
|
+
cacheReadInputPrice: "0.0165e-6",
|
|
1837
|
+
cacheWriteInputPrice: "0.20625e-6",
|
|
1838
|
+
},
|
|
1839
|
+
],
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
id: "us-virginia",
|
|
1843
|
+
inputPrice: "0.028e-6",
|
|
1844
|
+
outputPrice: "0.110e-6",
|
|
1845
|
+
cachedInputPrice: "0.0056e-6",
|
|
1846
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1847
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1848
|
+
pricingTiers: [
|
|
1849
|
+
{
|
|
1850
|
+
name: "Up to 32K",
|
|
1851
|
+
upToTokens: 32000,
|
|
1852
|
+
inputPrice: "0.028e-6",
|
|
1853
|
+
outputPrice: "0.110e-6",
|
|
1854
|
+
cachedInputPrice: "0.0056e-6",
|
|
1855
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1856
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
name: "32K-256K",
|
|
1860
|
+
upToTokens: 256000,
|
|
1861
|
+
inputPrice: "0.083e-6",
|
|
1862
|
+
outputPrice: "0.330e-6",
|
|
1863
|
+
cachedInputPrice: "0.0166e-6",
|
|
1864
|
+
cacheReadInputPrice: "0.0083e-6",
|
|
1865
|
+
cacheWriteInputPrice: "0.10375e-6",
|
|
1866
|
+
},
|
|
1867
|
+
{
|
|
1868
|
+
name: "256K-1M",
|
|
1869
|
+
upToTokens: 1000000,
|
|
1870
|
+
inputPrice: "0.165e-6",
|
|
1871
|
+
outputPrice: "0.660e-6",
|
|
1872
|
+
cachedInputPrice: "0.033e-6",
|
|
1873
|
+
cacheReadInputPrice: "0.0165e-6",
|
|
1874
|
+
cacheWriteInputPrice: "0.20625e-6",
|
|
1875
|
+
},
|
|
1876
|
+
],
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
id: "cn-beijing",
|
|
1880
|
+
inputPrice: "0.028e-6",
|
|
1881
|
+
outputPrice: "0.110e-6",
|
|
1882
|
+
cachedInputPrice: "0.0056e-6",
|
|
1883
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1884
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1885
|
+
pricingTiers: [
|
|
1886
|
+
{
|
|
1887
|
+
name: "Up to 32K",
|
|
1888
|
+
upToTokens: 32000,
|
|
1889
|
+
inputPrice: "0.028e-6",
|
|
1890
|
+
outputPrice: "0.110e-6",
|
|
1891
|
+
cachedInputPrice: "0.0056e-6",
|
|
1892
|
+
cacheReadInputPrice: "0.0028e-6",
|
|
1893
|
+
cacheWriteInputPrice: "0.035e-6",
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
name: "32K-256K",
|
|
1897
|
+
upToTokens: 256000,
|
|
1898
|
+
inputPrice: "0.083e-6",
|
|
1899
|
+
outputPrice: "0.330e-6",
|
|
1900
|
+
cachedInputPrice: "0.0166e-6",
|
|
1901
|
+
cacheReadInputPrice: "0.0083e-6",
|
|
1902
|
+
cacheWriteInputPrice: "0.10375e-6",
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
name: "256K-1M",
|
|
1906
|
+
upToTokens: 1000000,
|
|
1907
|
+
inputPrice: "0.165e-6",
|
|
1908
|
+
outputPrice: "0.660e-6",
|
|
1909
|
+
cachedInputPrice: "0.033e-6",
|
|
1910
|
+
cacheReadInputPrice: "0.0165e-6",
|
|
1911
|
+
cacheWriteInputPrice: "0.20625e-6",
|
|
1912
|
+
},
|
|
1913
|
+
],
|
|
1914
|
+
},
|
|
1679
1915
|
],
|
|
1680
1916
|
requestPrice: "0",
|
|
1681
1917
|
contextSize: 1000000,
|
|
@@ -3194,6 +3430,25 @@ export const alibabaModels = [
|
|
|
3194
3430
|
inputPrice: "0.5e-6",
|
|
3195
3431
|
outputPrice: "3e-6",
|
|
3196
3432
|
cachedInputPrice: "0.05e-6",
|
|
3433
|
+
cacheWriteInputPrice: "0.625e-6",
|
|
3434
|
+
pricingTiers: [
|
|
3435
|
+
{
|
|
3436
|
+
name: "Up to 256K",
|
|
3437
|
+
upToTokens: 256000,
|
|
3438
|
+
inputPrice: "0.5e-6",
|
|
3439
|
+
outputPrice: "3e-6",
|
|
3440
|
+
cachedInputPrice: "0.05e-6",
|
|
3441
|
+
cacheWriteInputPrice: "0.625e-6",
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
name: "Over 256K",
|
|
3445
|
+
upToTokens: Infinity,
|
|
3446
|
+
inputPrice: "2e-6",
|
|
3447
|
+
outputPrice: "6e-6",
|
|
3448
|
+
cachedInputPrice: "0.2e-6",
|
|
3449
|
+
cacheWriteInputPrice: "2.5e-6",
|
|
3450
|
+
},
|
|
3451
|
+
],
|
|
3197
3452
|
regions: [
|
|
3198
3453
|
{ id: "singapore" },
|
|
3199
3454
|
{
|
|
@@ -3201,12 +3456,79 @@ export const alibabaModels = [
|
|
|
3201
3456
|
inputPrice: "0.276e-6",
|
|
3202
3457
|
outputPrice: "1.651e-6",
|
|
3203
3458
|
cachedInputPrice: "0.0276e-6",
|
|
3459
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3460
|
+
pricingTiers: [
|
|
3461
|
+
{
|
|
3462
|
+
name: "Up to 256K",
|
|
3463
|
+
upToTokens: 256000,
|
|
3464
|
+
inputPrice: "0.276e-6",
|
|
3465
|
+
outputPrice: "1.651e-6",
|
|
3466
|
+
cachedInputPrice: "0.0276e-6",
|
|
3467
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3468
|
+
},
|
|
3469
|
+
{
|
|
3470
|
+
name: "Over 256K",
|
|
3471
|
+
upToTokens: Infinity,
|
|
3472
|
+
inputPrice: "1.101e-6",
|
|
3473
|
+
outputPrice: "6.602e-6",
|
|
3474
|
+
cachedInputPrice: "0.1101e-6",
|
|
3475
|
+
cacheWriteInputPrice: "1.37625e-6",
|
|
3476
|
+
},
|
|
3477
|
+
],
|
|
3478
|
+
},
|
|
3479
|
+
{
|
|
3480
|
+
id: "us-virginia",
|
|
3481
|
+
inputPrice: "0.276e-6",
|
|
3482
|
+
outputPrice: "1.651e-6",
|
|
3483
|
+
cachedInputPrice: "0.0276e-6",
|
|
3484
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3485
|
+
pricingTiers: [
|
|
3486
|
+
{
|
|
3487
|
+
name: "Up to 256K",
|
|
3488
|
+
upToTokens: 256000,
|
|
3489
|
+
inputPrice: "0.276e-6",
|
|
3490
|
+
outputPrice: "1.651e-6",
|
|
3491
|
+
cachedInputPrice: "0.0276e-6",
|
|
3492
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3493
|
+
},
|
|
3494
|
+
{
|
|
3495
|
+
name: "Over 256K",
|
|
3496
|
+
upToTokens: Infinity,
|
|
3497
|
+
inputPrice: "1.101e-6",
|
|
3498
|
+
outputPrice: "6.602e-6",
|
|
3499
|
+
cachedInputPrice: "0.1101e-6",
|
|
3500
|
+
cacheWriteInputPrice: "1.37625e-6",
|
|
3501
|
+
},
|
|
3502
|
+
],
|
|
3503
|
+
},
|
|
3504
|
+
{
|
|
3505
|
+
id: "cn-beijing",
|
|
3506
|
+
inputPrice: "0.276e-6",
|
|
3507
|
+
outputPrice: "1.651e-6",
|
|
3508
|
+
cachedInputPrice: "0.0276e-6",
|
|
3509
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3510
|
+
pricingTiers: [
|
|
3511
|
+
{
|
|
3512
|
+
name: "Up to 256K",
|
|
3513
|
+
upToTokens: 256000,
|
|
3514
|
+
inputPrice: "0.276e-6",
|
|
3515
|
+
outputPrice: "1.651e-6",
|
|
3516
|
+
cachedInputPrice: "0.0276e-6",
|
|
3517
|
+
cacheWriteInputPrice: "0.345e-6",
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
name: "Over 256K",
|
|
3521
|
+
upToTokens: Infinity,
|
|
3522
|
+
inputPrice: "1.101e-6",
|
|
3523
|
+
outputPrice: "6.602e-6",
|
|
3524
|
+
cachedInputPrice: "0.1101e-6",
|
|
3525
|
+
cacheWriteInputPrice: "1.37625e-6",
|
|
3526
|
+
},
|
|
3527
|
+
],
|
|
3204
3528
|
},
|
|
3205
|
-
{ id: "us-virginia" },
|
|
3206
|
-
{ id: "cn-beijing" },
|
|
3207
3529
|
],
|
|
3208
3530
|
requestPrice: "0",
|
|
3209
|
-
contextSize:
|
|
3531
|
+
contextSize: 1000000,
|
|
3210
3532
|
maxOutput: 65536,
|
|
3211
3533
|
reasoning: true,
|
|
3212
3534
|
reasoningEfforts: [
|
|
@@ -3251,13 +3573,25 @@ export const alibabaModels = [
|
|
|
3251
3573
|
{
|
|
3252
3574
|
providerId: "alibaba",
|
|
3253
3575
|
externalId: "qwen3.6-35b-a3b",
|
|
3254
|
-
inputPrice: "0.
|
|
3255
|
-
outputPrice: "
|
|
3576
|
+
inputPrice: "0.375e-6",
|
|
3577
|
+
outputPrice: "2.25e-6",
|
|
3256
3578
|
regions: [
|
|
3257
3579
|
{ id: "singapore" },
|
|
3258
|
-
{
|
|
3259
|
-
|
|
3260
|
-
|
|
3580
|
+
{
|
|
3581
|
+
id: "eu-frankfurt",
|
|
3582
|
+
inputPrice: "0.248e-6",
|
|
3583
|
+
outputPrice: "1.485e-6",
|
|
3584
|
+
},
|
|
3585
|
+
{
|
|
3586
|
+
id: "us-virginia",
|
|
3587
|
+
inputPrice: "0.248e-6",
|
|
3588
|
+
outputPrice: "1.485e-6",
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
id: "cn-beijing",
|
|
3592
|
+
inputPrice: "0.248e-6",
|
|
3593
|
+
outputPrice: "1.485e-6",
|
|
3594
|
+
},
|
|
3261
3595
|
],
|
|
3262
3596
|
requestPrice: "0",
|
|
3263
3597
|
contextSize: 262144,
|
|
@@ -3357,7 +3691,34 @@ export const alibabaModels = [
|
|
|
3357
3691
|
],
|
|
3358
3692
|
regions: [
|
|
3359
3693
|
{ id: "singapore" },
|
|
3360
|
-
{
|
|
3694
|
+
{
|
|
3695
|
+
id: "eu-frankfurt",
|
|
3696
|
+
inputPrice: "0.165e-6",
|
|
3697
|
+
outputPrice: "0.99e-6",
|
|
3698
|
+
cachedInputPrice: "0.033e-6",
|
|
3699
|
+
cacheReadInputPrice: "0.0165e-6",
|
|
3700
|
+
cacheWriteInputPrice: "0.20625e-6",
|
|
3701
|
+
pricingTiers: [
|
|
3702
|
+
{
|
|
3703
|
+
name: "Up to 256K",
|
|
3704
|
+
upToTokens: 256000,
|
|
3705
|
+
inputPrice: "0.165e-6",
|
|
3706
|
+
outputPrice: "0.99e-6",
|
|
3707
|
+
cachedInputPrice: "0.033e-6",
|
|
3708
|
+
cacheReadInputPrice: "0.0165e-6",
|
|
3709
|
+
cacheWriteInputPrice: "0.20625e-6",
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
name: "Over 256K",
|
|
3713
|
+
upToTokens: Infinity,
|
|
3714
|
+
inputPrice: "0.66e-6",
|
|
3715
|
+
outputPrice: "3.961e-6",
|
|
3716
|
+
cachedInputPrice: "0.132e-6",
|
|
3717
|
+
cacheReadInputPrice: "0.066e-6",
|
|
3718
|
+
cacheWriteInputPrice: "0.825e-6",
|
|
3719
|
+
},
|
|
3720
|
+
],
|
|
3721
|
+
},
|
|
3361
3722
|
{
|
|
3362
3723
|
id: "us-virginia",
|
|
3363
3724
|
inputPrice: "0.165e-6",
|