ask-llm-providers 0.13.6 → 0.14.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/ask/llm/cost_calculator.rb +46 -0
- data/lib/ask/llm/models.json +663 -142
- data/lib/ask/llm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '059aba40bfe3377f50d27058fb1aca61d99363fccd40cfcd80e81a329d903f61'
|
|
4
|
+
data.tar.gz: 5fc2ed0e2c88473f0ef8642e9eedbe6e1f387117f2260c7f37dc7c6eea75ec9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b01faf1af8a92e72223cdcf5a4bf4394f9a813b6531ea148c157e7b2aefa467aa72e76564377c863f651afd5e7a1215184346995ca8297104473df1126eace1
|
|
7
|
+
data.tar.gz: a1d5ece41399e472472efccae14301d30b6eb61f63f0d0f1c839f47d0d3c2e60b328bcb639d7c97aba60f2fa6d3b6866f84058ad63dade4989543efc93af01b8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## [0.13.7] — 2026-09-14
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
|
|
5
|
+
- **Command Code catalog carries the live rate card.** All 68 entries shipped with zeroed pricing, so cost accounting (token ledgers, margin math) saw every Command Code call as free. Each entry now has the provider's published per-million rates: input, output, and cache-read for every model, cache-write where published, plus `deepseek/deepseek-v4-flash-vision-exp` gains vision/image input. The four DeepSeek V4 models (v4.1-flash, v4-flash, v4-flash-vision-exp, v4-pro) also carry a `peak` tier — off-peak is standard; weekdays 01:00–04:00 and 06:00–10:00 UTC bill at 2x, weekends are fully off-peak (`metadata.peak_windows`).
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **`inclusionai/ling-3.0-flash-sante:free`** — the free Ling 3.0 Flash Sante model from the live Command Code `/models` listing.
|
|
10
|
+
|
|
1
11
|
## [0.13.6] — 2026-09-13
|
|
2
12
|
|
|
3
13
|
### Fixed
|
|
@@ -98,12 +98,58 @@ module Ask
|
|
|
98
98
|
result
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
+
# Which pricing tier applies at a given moment.
|
|
102
|
+
#
|
|
103
|
+
# Providers bill some models at a higher rate during peak windows
|
|
104
|
+
# (Command Code doubles the DeepSeek V4 family on weekday mornings).
|
|
105
|
+
# A model with no +peak_schedule+ in its metadata always bills at
|
|
106
|
+
# :standard. Windows are UTC.
|
|
107
|
+
#
|
|
108
|
+
# CostCalculator.tier_at(model) # now
|
|
109
|
+
# CostCalculator.tier_at(model, at: Time.utc(2026, 9, 14, 7)) # => :peak
|
|
110
|
+
#
|
|
111
|
+
# @return [Symbol] :peak or :standard
|
|
112
|
+
def tier_at(model, at: Time.now)
|
|
113
|
+
schedule = extract_metadata(model)["peak_schedule"]
|
|
114
|
+
return :standard unless schedule.is_a?(Array) && schedule.any?
|
|
115
|
+
|
|
116
|
+
moment = at.getutc
|
|
117
|
+
day = moment.strftime("%a").downcase
|
|
118
|
+
minute = (moment.hour * 60) + moment.min
|
|
119
|
+
|
|
120
|
+
in_window = schedule.any? do |window|
|
|
121
|
+
next false unless Array(window["days"]).map { |d| d.to_s.downcase }.include?(day)
|
|
122
|
+
|
|
123
|
+
from = clock_minutes(window["from"])
|
|
124
|
+
to = clock_minutes(window["to"])
|
|
125
|
+
next false unless from && to
|
|
126
|
+
|
|
127
|
+
minute >= from && minute < to
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
in_window ? :peak : :standard
|
|
131
|
+
end
|
|
132
|
+
|
|
101
133
|
private
|
|
102
134
|
|
|
103
135
|
def extract_pricing(model)
|
|
104
136
|
model.respond_to?(:pricing) ? model.pricing : model
|
|
105
137
|
end
|
|
106
138
|
|
|
139
|
+
def extract_metadata(model)
|
|
140
|
+
return model.metadata || {} if model.respond_to?(:metadata)
|
|
141
|
+
|
|
142
|
+
model.is_a?(Hash) ? (model[:metadata] || model["metadata"] || {}) : {}
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
# "06:00" => 360
|
|
146
|
+
def clock_minutes(value)
|
|
147
|
+
match = value.to_s.match(/\A(\d{1,2}):(\d{2})\z/)
|
|
148
|
+
return nil unless match
|
|
149
|
+
|
|
150
|
+
(match[1].to_i * 60) + match[2].to_i
|
|
151
|
+
end
|
|
152
|
+
|
|
107
153
|
def cost(tokens, rate)
|
|
108
154
|
return 0.0 unless rate && tokens > 0
|
|
109
155
|
(tokens * rate) / MILLION.to_f
|
data/lib/ask/llm/models.json
CHANGED
|
@@ -4654,8 +4654,13 @@
|
|
|
4654
4654
|
]
|
|
4655
4655
|
},
|
|
4656
4656
|
"pricing": {
|
|
4657
|
-
"
|
|
4658
|
-
|
|
4657
|
+
"text_tokens": {
|
|
4658
|
+
"standard": {
|
|
4659
|
+
"input_per_million": 0.3,
|
|
4660
|
+
"output_per_million": 1.2,
|
|
4661
|
+
"cache_read_input_per_million": 0.03
|
|
4662
|
+
}
|
|
4663
|
+
}
|
|
4659
4664
|
}
|
|
4660
4665
|
},
|
|
4661
4666
|
{
|
|
@@ -4676,8 +4681,13 @@
|
|
|
4676
4681
|
]
|
|
4677
4682
|
},
|
|
4678
4683
|
"pricing": {
|
|
4679
|
-
"
|
|
4680
|
-
|
|
4684
|
+
"text_tokens": {
|
|
4685
|
+
"standard": {
|
|
4686
|
+
"input_per_million": 0.3,
|
|
4687
|
+
"output_per_million": 1.2,
|
|
4688
|
+
"cache_read_input_per_million": 0.06
|
|
4689
|
+
}
|
|
4690
|
+
}
|
|
4681
4691
|
}
|
|
4682
4692
|
},
|
|
4683
4693
|
{
|
|
@@ -4698,8 +4708,13 @@
|
|
|
4698
4708
|
]
|
|
4699
4709
|
},
|
|
4700
4710
|
"pricing": {
|
|
4701
|
-
"
|
|
4702
|
-
|
|
4711
|
+
"text_tokens": {
|
|
4712
|
+
"standard": {
|
|
4713
|
+
"input_per_million": 0.3,
|
|
4714
|
+
"output_per_million": 1.2,
|
|
4715
|
+
"cache_read_input_per_million": 0.06
|
|
4716
|
+
}
|
|
4717
|
+
}
|
|
4703
4718
|
}
|
|
4704
4719
|
},
|
|
4705
4720
|
{
|
|
@@ -4720,8 +4735,14 @@
|
|
|
4720
4735
|
]
|
|
4721
4736
|
},
|
|
4722
4737
|
"pricing": {
|
|
4723
|
-
"
|
|
4724
|
-
|
|
4738
|
+
"text_tokens": {
|
|
4739
|
+
"standard": {
|
|
4740
|
+
"input_per_million": 1.3,
|
|
4741
|
+
"output_per_million": 7.8,
|
|
4742
|
+
"cache_read_input_per_million": 0.26,
|
|
4743
|
+
"cache_write_input_per_million": 1.63
|
|
4744
|
+
}
|
|
4745
|
+
}
|
|
4725
4746
|
}
|
|
4726
4747
|
},
|
|
4727
4748
|
{
|
|
@@ -4742,8 +4763,13 @@
|
|
|
4742
4763
|
]
|
|
4743
4764
|
},
|
|
4744
4765
|
"pricing": {
|
|
4745
|
-
"
|
|
4746
|
-
|
|
4766
|
+
"text_tokens": {
|
|
4767
|
+
"standard": {
|
|
4768
|
+
"input_per_million": 0.5,
|
|
4769
|
+
"output_per_million": 3.0,
|
|
4770
|
+
"cache_read_input_per_million": 0.1
|
|
4771
|
+
}
|
|
4772
|
+
}
|
|
4747
4773
|
}
|
|
4748
4774
|
},
|
|
4749
4775
|
{
|
|
@@ -4764,8 +4790,14 @@
|
|
|
4764
4790
|
]
|
|
4765
4791
|
},
|
|
4766
4792
|
"pricing": {
|
|
4767
|
-
"
|
|
4768
|
-
|
|
4793
|
+
"text_tokens": {
|
|
4794
|
+
"standard": {
|
|
4795
|
+
"input_per_million": 0.03,
|
|
4796
|
+
"output_per_million": 0.13,
|
|
4797
|
+
"cache_read_input_per_million": 0.006,
|
|
4798
|
+
"cache_write_input_per_million": 0.038
|
|
4799
|
+
}
|
|
4800
|
+
}
|
|
4769
4801
|
}
|
|
4770
4802
|
},
|
|
4771
4803
|
{
|
|
@@ -4786,8 +4818,14 @@
|
|
|
4786
4818
|
]
|
|
4787
4819
|
},
|
|
4788
4820
|
"pricing": {
|
|
4789
|
-
"
|
|
4790
|
-
|
|
4821
|
+
"text_tokens": {
|
|
4822
|
+
"standard": {
|
|
4823
|
+
"input_per_million": 2.5,
|
|
4824
|
+
"output_per_million": 7.5,
|
|
4825
|
+
"cache_read_input_per_million": 0.5,
|
|
4826
|
+
"cache_write_input_per_million": 3.13
|
|
4827
|
+
}
|
|
4828
|
+
}
|
|
4791
4829
|
}
|
|
4792
4830
|
},
|
|
4793
4831
|
{
|
|
@@ -4808,8 +4846,14 @@
|
|
|
4808
4846
|
]
|
|
4809
4847
|
},
|
|
4810
4848
|
"pricing": {
|
|
4811
|
-
"
|
|
4812
|
-
|
|
4849
|
+
"text_tokens": {
|
|
4850
|
+
"standard": {
|
|
4851
|
+
"input_per_million": 0.4,
|
|
4852
|
+
"output_per_million": 1.6,
|
|
4853
|
+
"cache_read_input_per_million": 0.08,
|
|
4854
|
+
"cache_write_input_per_million": 0.5
|
|
4855
|
+
}
|
|
4856
|
+
}
|
|
4813
4857
|
}
|
|
4814
4858
|
},
|
|
4815
4859
|
{
|
|
@@ -4830,8 +4874,13 @@
|
|
|
4830
4874
|
]
|
|
4831
4875
|
},
|
|
4832
4876
|
"pricing": {
|
|
4833
|
-
"
|
|
4834
|
-
|
|
4877
|
+
"text_tokens": {
|
|
4878
|
+
"standard": {
|
|
4879
|
+
"input_per_million": 0.4,
|
|
4880
|
+
"output_per_million": 3.0,
|
|
4881
|
+
"cache_read_input_per_million": 0.04
|
|
4882
|
+
}
|
|
4883
|
+
}
|
|
4835
4884
|
}
|
|
4836
4885
|
},
|
|
4837
4886
|
{
|
|
@@ -4852,8 +4901,13 @@
|
|
|
4852
4901
|
]
|
|
4853
4902
|
},
|
|
4854
4903
|
"pricing": {
|
|
4855
|
-
"
|
|
4856
|
-
|
|
4904
|
+
"text_tokens": {
|
|
4905
|
+
"standard": {
|
|
4906
|
+
"input_per_million": 0.16,
|
|
4907
|
+
"output_per_million": 0.47,
|
|
4908
|
+
"cache_read_input_per_million": 0.016
|
|
4909
|
+
}
|
|
4910
|
+
}
|
|
4857
4911
|
}
|
|
4858
4912
|
},
|
|
4859
4913
|
{
|
|
@@ -4874,8 +4928,13 @@
|
|
|
4874
4928
|
]
|
|
4875
4929
|
},
|
|
4876
4930
|
"pricing": {
|
|
4877
|
-
"
|
|
4878
|
-
|
|
4931
|
+
"text_tokens": {
|
|
4932
|
+
"standard": {
|
|
4933
|
+
"input_per_million": 2.0,
|
|
4934
|
+
"output_per_million": 6.0,
|
|
4935
|
+
"cache_read_input_per_million": 0.25
|
|
4936
|
+
}
|
|
4937
|
+
}
|
|
4879
4938
|
}
|
|
4880
4939
|
},
|
|
4881
4940
|
{
|
|
@@ -4896,8 +4955,13 @@
|
|
|
4896
4955
|
]
|
|
4897
4956
|
},
|
|
4898
4957
|
"pricing": {
|
|
4899
|
-
"
|
|
4900
|
-
|
|
4958
|
+
"text_tokens": {
|
|
4959
|
+
"standard": {
|
|
4960
|
+
"input_per_million": 2.0,
|
|
4961
|
+
"output_per_million": 6.0,
|
|
4962
|
+
"cache_read_input_per_million": 0.25
|
|
4963
|
+
}
|
|
4964
|
+
}
|
|
4901
4965
|
}
|
|
4902
4966
|
},
|
|
4903
4967
|
{
|
|
@@ -4918,8 +4982,14 @@
|
|
|
4918
4982
|
]
|
|
4919
4983
|
},
|
|
4920
4984
|
"pricing": {
|
|
4921
|
-
"
|
|
4922
|
-
|
|
4985
|
+
"text_tokens": {
|
|
4986
|
+
"standard": {
|
|
4987
|
+
"input_per_million": 10.0,
|
|
4988
|
+
"output_per_million": 50.0,
|
|
4989
|
+
"cache_read_input_per_million": 1.0,
|
|
4990
|
+
"cache_write_input_per_million": 12.5
|
|
4991
|
+
}
|
|
4992
|
+
}
|
|
4923
4993
|
}
|
|
4924
4994
|
},
|
|
4925
4995
|
{
|
|
@@ -4940,8 +5010,14 @@
|
|
|
4940
5010
|
]
|
|
4941
5011
|
},
|
|
4942
5012
|
"pricing": {
|
|
4943
|
-
"
|
|
4944
|
-
|
|
5013
|
+
"text_tokens": {
|
|
5014
|
+
"standard": {
|
|
5015
|
+
"input_per_million": 10.0,
|
|
5016
|
+
"output_per_million": 50.0,
|
|
5017
|
+
"cache_read_input_per_million": 0.25,
|
|
5018
|
+
"cache_write_input_per_million": 12.5
|
|
5019
|
+
}
|
|
5020
|
+
}
|
|
4945
5021
|
}
|
|
4946
5022
|
},
|
|
4947
5023
|
{
|
|
@@ -4962,8 +5038,14 @@
|
|
|
4962
5038
|
]
|
|
4963
5039
|
},
|
|
4964
5040
|
"pricing": {
|
|
4965
|
-
"
|
|
4966
|
-
|
|
5041
|
+
"text_tokens": {
|
|
5042
|
+
"standard": {
|
|
5043
|
+
"input_per_million": 1.0,
|
|
5044
|
+
"output_per_million": 5.0,
|
|
5045
|
+
"cache_read_input_per_million": 0.1,
|
|
5046
|
+
"cache_write_input_per_million": 1.25
|
|
5047
|
+
}
|
|
5048
|
+
}
|
|
4967
5049
|
}
|
|
4968
5050
|
},
|
|
4969
5051
|
{
|
|
@@ -4984,8 +5066,14 @@
|
|
|
4984
5066
|
]
|
|
4985
5067
|
},
|
|
4986
5068
|
"pricing": {
|
|
4987
|
-
"
|
|
4988
|
-
|
|
5069
|
+
"text_tokens": {
|
|
5070
|
+
"standard": {
|
|
5071
|
+
"input_per_million": 5.0,
|
|
5072
|
+
"output_per_million": 25.0,
|
|
5073
|
+
"cache_read_input_per_million": 0.5,
|
|
5074
|
+
"cache_write_input_per_million": 6.25
|
|
5075
|
+
}
|
|
5076
|
+
}
|
|
4989
5077
|
}
|
|
4990
5078
|
},
|
|
4991
5079
|
{
|
|
@@ -5006,8 +5094,14 @@
|
|
|
5006
5094
|
]
|
|
5007
5095
|
},
|
|
5008
5096
|
"pricing": {
|
|
5009
|
-
"
|
|
5010
|
-
|
|
5097
|
+
"text_tokens": {
|
|
5098
|
+
"standard": {
|
|
5099
|
+
"input_per_million": 5.0,
|
|
5100
|
+
"output_per_million": 25.0,
|
|
5101
|
+
"cache_read_input_per_million": 0.5,
|
|
5102
|
+
"cache_write_input_per_million": 6.25
|
|
5103
|
+
}
|
|
5104
|
+
}
|
|
5011
5105
|
}
|
|
5012
5106
|
},
|
|
5013
5107
|
{
|
|
@@ -5028,8 +5122,14 @@
|
|
|
5028
5122
|
]
|
|
5029
5123
|
},
|
|
5030
5124
|
"pricing": {
|
|
5031
|
-
"
|
|
5032
|
-
|
|
5125
|
+
"text_tokens": {
|
|
5126
|
+
"standard": {
|
|
5127
|
+
"input_per_million": 5.0,
|
|
5128
|
+
"output_per_million": 25.0,
|
|
5129
|
+
"cache_read_input_per_million": 0.5,
|
|
5130
|
+
"cache_write_input_per_million": 6.25
|
|
5131
|
+
}
|
|
5132
|
+
}
|
|
5033
5133
|
}
|
|
5034
5134
|
},
|
|
5035
5135
|
{
|
|
@@ -5050,8 +5150,14 @@
|
|
|
5050
5150
|
]
|
|
5051
5151
|
},
|
|
5052
5152
|
"pricing": {
|
|
5053
|
-
"
|
|
5054
|
-
|
|
5153
|
+
"text_tokens": {
|
|
5154
|
+
"standard": {
|
|
5155
|
+
"input_per_million": 3.0,
|
|
5156
|
+
"output_per_million": 15.0,
|
|
5157
|
+
"cache_read_input_per_million": 0.3,
|
|
5158
|
+
"cache_write_input_per_million": 3.75
|
|
5159
|
+
}
|
|
5160
|
+
}
|
|
5055
5161
|
}
|
|
5056
5162
|
},
|
|
5057
5163
|
{
|
|
@@ -5072,8 +5178,14 @@
|
|
|
5072
5178
|
]
|
|
5073
5179
|
},
|
|
5074
5180
|
"pricing": {
|
|
5075
|
-
"
|
|
5076
|
-
|
|
5181
|
+
"text_tokens": {
|
|
5182
|
+
"standard": {
|
|
5183
|
+
"input_per_million": 2.0,
|
|
5184
|
+
"output_per_million": 10.0,
|
|
5185
|
+
"cache_read_input_per_million": 0.2,
|
|
5186
|
+
"cache_write_input_per_million": 2.5
|
|
5187
|
+
}
|
|
5188
|
+
}
|
|
5077
5189
|
}
|
|
5078
5190
|
},
|
|
5079
5191
|
{
|
|
@@ -5096,8 +5208,47 @@
|
|
|
5096
5208
|
]
|
|
5097
5209
|
},
|
|
5098
5210
|
"pricing": {
|
|
5099
|
-
"
|
|
5100
|
-
|
|
5211
|
+
"text_tokens": {
|
|
5212
|
+
"standard": {
|
|
5213
|
+
"input_per_million": 0.15,
|
|
5214
|
+
"output_per_million": 0.6,
|
|
5215
|
+
"cache_read_input_per_million": 0.003
|
|
5216
|
+
},
|
|
5217
|
+
"peak": {
|
|
5218
|
+
"input_per_million": 0.3,
|
|
5219
|
+
"output_per_million": 1.2,
|
|
5220
|
+
"cache_read_input_per_million": 0.006
|
|
5221
|
+
}
|
|
5222
|
+
}
|
|
5223
|
+
},
|
|
5224
|
+
"metadata": {
|
|
5225
|
+
"peak_windows": "Mon-Fri 01:00-04:00 and 06:00-10:00 UTC bill at 2x (peak tier); weekends are fully off-peak",
|
|
5226
|
+
"peak_schedule": [
|
|
5227
|
+
{
|
|
5228
|
+
"days": [
|
|
5229
|
+
"mon",
|
|
5230
|
+
"tue",
|
|
5231
|
+
"wed",
|
|
5232
|
+
"thu",
|
|
5233
|
+
"fri"
|
|
5234
|
+
],
|
|
5235
|
+
"from": "01:00",
|
|
5236
|
+
"to": "04:00",
|
|
5237
|
+
"zone": "UTC"
|
|
5238
|
+
},
|
|
5239
|
+
{
|
|
5240
|
+
"days": [
|
|
5241
|
+
"mon",
|
|
5242
|
+
"tue",
|
|
5243
|
+
"wed",
|
|
5244
|
+
"thu",
|
|
5245
|
+
"fri"
|
|
5246
|
+
],
|
|
5247
|
+
"from": "06:00",
|
|
5248
|
+
"to": "10:00",
|
|
5249
|
+
"zone": "UTC"
|
|
5250
|
+
}
|
|
5251
|
+
]
|
|
5101
5252
|
}
|
|
5102
5253
|
},
|
|
5103
5254
|
{
|
|
@@ -5118,8 +5269,47 @@
|
|
|
5118
5269
|
]
|
|
5119
5270
|
},
|
|
5120
5271
|
"pricing": {
|
|
5121
|
-
"
|
|
5122
|
-
|
|
5272
|
+
"text_tokens": {
|
|
5273
|
+
"standard": {
|
|
5274
|
+
"input_per_million": 0.15,
|
|
5275
|
+
"output_per_million": 0.6,
|
|
5276
|
+
"cache_read_input_per_million": 0.003
|
|
5277
|
+
},
|
|
5278
|
+
"peak": {
|
|
5279
|
+
"input_per_million": 0.3,
|
|
5280
|
+
"output_per_million": 1.2,
|
|
5281
|
+
"cache_read_input_per_million": 0.006
|
|
5282
|
+
}
|
|
5283
|
+
}
|
|
5284
|
+
},
|
|
5285
|
+
"metadata": {
|
|
5286
|
+
"peak_windows": "Mon-Fri 01:00-04:00 and 06:00-10:00 UTC bill at 2x (peak tier); weekends are fully off-peak",
|
|
5287
|
+
"peak_schedule": [
|
|
5288
|
+
{
|
|
5289
|
+
"days": [
|
|
5290
|
+
"mon",
|
|
5291
|
+
"tue",
|
|
5292
|
+
"wed",
|
|
5293
|
+
"thu",
|
|
5294
|
+
"fri"
|
|
5295
|
+
],
|
|
5296
|
+
"from": "01:00",
|
|
5297
|
+
"to": "04:00",
|
|
5298
|
+
"zone": "UTC"
|
|
5299
|
+
},
|
|
5300
|
+
{
|
|
5301
|
+
"days": [
|
|
5302
|
+
"mon",
|
|
5303
|
+
"tue",
|
|
5304
|
+
"wed",
|
|
5305
|
+
"thu",
|
|
5306
|
+
"fri"
|
|
5307
|
+
],
|
|
5308
|
+
"from": "06:00",
|
|
5309
|
+
"to": "10:00",
|
|
5310
|
+
"zone": "UTC"
|
|
5311
|
+
}
|
|
5312
|
+
]
|
|
5123
5313
|
}
|
|
5124
5314
|
},
|
|
5125
5315
|
{
|
|
@@ -5140,8 +5330,13 @@
|
|
|
5140
5330
|
]
|
|
5141
5331
|
},
|
|
5142
5332
|
"pricing": {
|
|
5143
|
-
"
|
|
5144
|
-
|
|
5333
|
+
"text_tokens": {
|
|
5334
|
+
"standard": {
|
|
5335
|
+
"input_per_million": 0.28,
|
|
5336
|
+
"output_per_million": 0.56,
|
|
5337
|
+
"cache_read_input_per_million": 0.07
|
|
5338
|
+
}
|
|
5339
|
+
}
|
|
5145
5340
|
}
|
|
5146
5341
|
},
|
|
5147
5342
|
{
|
|
@@ -5151,19 +5346,60 @@
|
|
|
5151
5346
|
"context_window": 1000000,
|
|
5152
5347
|
"capabilities": [
|
|
5153
5348
|
"function_calling",
|
|
5154
|
-
"streaming"
|
|
5349
|
+
"streaming",
|
|
5350
|
+
"vision"
|
|
5155
5351
|
],
|
|
5156
5352
|
"modalities": {
|
|
5157
5353
|
"input": [
|
|
5158
|
-
"text"
|
|
5354
|
+
"text",
|
|
5355
|
+
"image"
|
|
5159
5356
|
],
|
|
5160
5357
|
"output": [
|
|
5161
5358
|
"text"
|
|
5162
5359
|
]
|
|
5163
5360
|
},
|
|
5164
5361
|
"pricing": {
|
|
5165
|
-
"
|
|
5166
|
-
|
|
5362
|
+
"text_tokens": {
|
|
5363
|
+
"standard": {
|
|
5364
|
+
"input_per_million": 0.15,
|
|
5365
|
+
"output_per_million": 0.6,
|
|
5366
|
+
"cache_read_input_per_million": 0.003
|
|
5367
|
+
},
|
|
5368
|
+
"peak": {
|
|
5369
|
+
"input_per_million": 0.3,
|
|
5370
|
+
"output_per_million": 1.2,
|
|
5371
|
+
"cache_read_input_per_million": 0.006
|
|
5372
|
+
}
|
|
5373
|
+
}
|
|
5374
|
+
},
|
|
5375
|
+
"metadata": {
|
|
5376
|
+
"peak_windows": "Mon-Fri 01:00-04:00 and 06:00-10:00 UTC bill at 2x (peak tier); weekends are fully off-peak",
|
|
5377
|
+
"peak_schedule": [
|
|
5378
|
+
{
|
|
5379
|
+
"days": [
|
|
5380
|
+
"mon",
|
|
5381
|
+
"tue",
|
|
5382
|
+
"wed",
|
|
5383
|
+
"thu",
|
|
5384
|
+
"fri"
|
|
5385
|
+
],
|
|
5386
|
+
"from": "01:00",
|
|
5387
|
+
"to": "04:00",
|
|
5388
|
+
"zone": "UTC"
|
|
5389
|
+
},
|
|
5390
|
+
{
|
|
5391
|
+
"days": [
|
|
5392
|
+
"mon",
|
|
5393
|
+
"tue",
|
|
5394
|
+
"wed",
|
|
5395
|
+
"thu",
|
|
5396
|
+
"fri"
|
|
5397
|
+
],
|
|
5398
|
+
"from": "06:00",
|
|
5399
|
+
"to": "10:00",
|
|
5400
|
+
"zone": "UTC"
|
|
5401
|
+
}
|
|
5402
|
+
]
|
|
5167
5403
|
}
|
|
5168
5404
|
},
|
|
5169
5405
|
{
|
|
@@ -5184,8 +5420,47 @@
|
|
|
5184
5420
|
]
|
|
5185
5421
|
},
|
|
5186
5422
|
"pricing": {
|
|
5187
|
-
"
|
|
5188
|
-
|
|
5423
|
+
"text_tokens": {
|
|
5424
|
+
"standard": {
|
|
5425
|
+
"input_per_million": 0.66,
|
|
5426
|
+
"output_per_million": 1.98,
|
|
5427
|
+
"cache_read_input_per_million": 0.022
|
|
5428
|
+
},
|
|
5429
|
+
"peak": {
|
|
5430
|
+
"input_per_million": 1.32,
|
|
5431
|
+
"output_per_million": 3.96,
|
|
5432
|
+
"cache_read_input_per_million": 0.044
|
|
5433
|
+
}
|
|
5434
|
+
}
|
|
5435
|
+
},
|
|
5436
|
+
"metadata": {
|
|
5437
|
+
"peak_windows": "Mon-Fri 01:00-04:00 and 06:00-10:00 UTC bill at 2x (peak tier); weekends are fully off-peak",
|
|
5438
|
+
"peak_schedule": [
|
|
5439
|
+
{
|
|
5440
|
+
"days": [
|
|
5441
|
+
"mon",
|
|
5442
|
+
"tue",
|
|
5443
|
+
"wed",
|
|
5444
|
+
"thu",
|
|
5445
|
+
"fri"
|
|
5446
|
+
],
|
|
5447
|
+
"from": "01:00",
|
|
5448
|
+
"to": "04:00",
|
|
5449
|
+
"zone": "UTC"
|
|
5450
|
+
},
|
|
5451
|
+
{
|
|
5452
|
+
"days": [
|
|
5453
|
+
"mon",
|
|
5454
|
+
"tue",
|
|
5455
|
+
"wed",
|
|
5456
|
+
"thu",
|
|
5457
|
+
"fri"
|
|
5458
|
+
],
|
|
5459
|
+
"from": "06:00",
|
|
5460
|
+
"to": "10:00",
|
|
5461
|
+
"zone": "UTC"
|
|
5462
|
+
}
|
|
5463
|
+
]
|
|
5189
5464
|
}
|
|
5190
5465
|
},
|
|
5191
5466
|
{
|
|
@@ -5206,8 +5481,13 @@
|
|
|
5206
5481
|
]
|
|
5207
5482
|
},
|
|
5208
5483
|
"pricing": {
|
|
5209
|
-
"
|
|
5210
|
-
|
|
5484
|
+
"text_tokens": {
|
|
5485
|
+
"standard": {
|
|
5486
|
+
"input_per_million": 0.25,
|
|
5487
|
+
"output_per_million": 1.5,
|
|
5488
|
+
"cache_read_input_per_million": 0.03
|
|
5489
|
+
}
|
|
5490
|
+
}
|
|
5211
5491
|
}
|
|
5212
5492
|
},
|
|
5213
5493
|
{
|
|
@@ -5228,8 +5508,13 @@
|
|
|
5228
5508
|
]
|
|
5229
5509
|
},
|
|
5230
5510
|
"pricing": {
|
|
5231
|
-
"
|
|
5232
|
-
|
|
5511
|
+
"text_tokens": {
|
|
5512
|
+
"standard": {
|
|
5513
|
+
"input_per_million": 1.5,
|
|
5514
|
+
"output_per_million": 9.0,
|
|
5515
|
+
"cache_read_input_per_million": 0.15
|
|
5516
|
+
}
|
|
5517
|
+
}
|
|
5233
5518
|
}
|
|
5234
5519
|
},
|
|
5235
5520
|
{
|
|
@@ -5250,8 +5535,13 @@
|
|
|
5250
5535
|
]
|
|
5251
5536
|
},
|
|
5252
5537
|
"pricing": {
|
|
5253
|
-
"
|
|
5254
|
-
|
|
5538
|
+
"text_tokens": {
|
|
5539
|
+
"standard": {
|
|
5540
|
+
"input_per_million": 0.3,
|
|
5541
|
+
"output_per_million": 2.5,
|
|
5542
|
+
"cache_read_input_per_million": 0.03
|
|
5543
|
+
}
|
|
5544
|
+
}
|
|
5255
5545
|
}
|
|
5256
5546
|
},
|
|
5257
5547
|
{
|
|
@@ -5272,8 +5562,13 @@
|
|
|
5272
5562
|
]
|
|
5273
5563
|
},
|
|
5274
5564
|
"pricing": {
|
|
5275
|
-
"
|
|
5276
|
-
|
|
5565
|
+
"text_tokens": {
|
|
5566
|
+
"standard": {
|
|
5567
|
+
"input_per_million": 1.5,
|
|
5568
|
+
"output_per_million": 7.5,
|
|
5569
|
+
"cache_read_input_per_million": 0.15
|
|
5570
|
+
}
|
|
5571
|
+
}
|
|
5277
5572
|
}
|
|
5278
5573
|
},
|
|
5279
5574
|
{
|
|
@@ -5294,8 +5589,14 @@
|
|
|
5294
5589
|
]
|
|
5295
5590
|
},
|
|
5296
5591
|
"pricing": {
|
|
5297
|
-
"
|
|
5298
|
-
|
|
5592
|
+
"text_tokens": {
|
|
5593
|
+
"standard": {
|
|
5594
|
+
"input_per_million": 1.5,
|
|
5595
|
+
"output_per_million": 7.5,
|
|
5596
|
+
"cache_read_input_per_million": 0.15,
|
|
5597
|
+
"cache_write_input_per_million": 0.08334
|
|
5598
|
+
}
|
|
5599
|
+
}
|
|
5299
5600
|
}
|
|
5300
5601
|
},
|
|
5301
5602
|
{
|
|
@@ -5316,8 +5617,13 @@
|
|
|
5316
5617
|
]
|
|
5317
5618
|
},
|
|
5318
5619
|
"pricing": {
|
|
5319
|
-
"
|
|
5320
|
-
|
|
5620
|
+
"text_tokens": {
|
|
5621
|
+
"standard": {
|
|
5622
|
+
"input_per_million": 1.5,
|
|
5623
|
+
"output_per_million": 7.5,
|
|
5624
|
+
"cache_read_input_per_million": 0.15
|
|
5625
|
+
}
|
|
5626
|
+
}
|
|
5321
5627
|
}
|
|
5322
5628
|
},
|
|
5323
5629
|
{
|
|
@@ -5338,8 +5644,13 @@
|
|
|
5338
5644
|
]
|
|
5339
5645
|
},
|
|
5340
5646
|
"pricing": {
|
|
5341
|
-
"
|
|
5342
|
-
|
|
5647
|
+
"text_tokens": {
|
|
5648
|
+
"standard": {
|
|
5649
|
+
"input_per_million": 2.0,
|
|
5650
|
+
"output_per_million": 8.0,
|
|
5651
|
+
"cache_read_input_per_million": 0.5
|
|
5652
|
+
}
|
|
5653
|
+
}
|
|
5343
5654
|
}
|
|
5344
5655
|
},
|
|
5345
5656
|
{
|
|
@@ -5360,8 +5671,13 @@
|
|
|
5360
5671
|
]
|
|
5361
5672
|
},
|
|
5362
5673
|
"pricing": {
|
|
5363
|
-
"
|
|
5364
|
-
|
|
5674
|
+
"text_tokens": {
|
|
5675
|
+
"standard": {
|
|
5676
|
+
"input_per_million": 2.5,
|
|
5677
|
+
"output_per_million": 15.0,
|
|
5678
|
+
"cache_read_input_per_million": 0.25
|
|
5679
|
+
}
|
|
5680
|
+
}
|
|
5365
5681
|
}
|
|
5366
5682
|
},
|
|
5367
5683
|
{
|
|
@@ -5382,8 +5698,13 @@
|
|
|
5382
5698
|
]
|
|
5383
5699
|
},
|
|
5384
5700
|
"pricing": {
|
|
5385
|
-
"
|
|
5386
|
-
|
|
5701
|
+
"text_tokens": {
|
|
5702
|
+
"standard": {
|
|
5703
|
+
"input_per_million": 0.75,
|
|
5704
|
+
"output_per_million": 4.5,
|
|
5705
|
+
"cache_read_input_per_million": 0.075
|
|
5706
|
+
}
|
|
5707
|
+
}
|
|
5387
5708
|
}
|
|
5388
5709
|
},
|
|
5389
5710
|
{
|
|
@@ -5404,8 +5725,13 @@
|
|
|
5404
5725
|
]
|
|
5405
5726
|
},
|
|
5406
5727
|
"pricing": {
|
|
5407
|
-
"
|
|
5408
|
-
|
|
5728
|
+
"text_tokens": {
|
|
5729
|
+
"standard": {
|
|
5730
|
+
"input_per_million": 5.0,
|
|
5731
|
+
"output_per_million": 30.0,
|
|
5732
|
+
"cache_read_input_per_million": 0.5
|
|
5733
|
+
}
|
|
5734
|
+
}
|
|
5409
5735
|
}
|
|
5410
5736
|
},
|
|
5411
5737
|
{
|
|
@@ -5426,8 +5752,14 @@
|
|
|
5426
5752
|
]
|
|
5427
5753
|
},
|
|
5428
5754
|
"pricing": {
|
|
5429
|
-
"
|
|
5430
|
-
|
|
5755
|
+
"text_tokens": {
|
|
5756
|
+
"standard": {
|
|
5757
|
+
"input_per_million": 0.2,
|
|
5758
|
+
"output_per_million": 1.2,
|
|
5759
|
+
"cache_read_input_per_million": 0.02,
|
|
5760
|
+
"cache_write_input_per_million": 0.25
|
|
5761
|
+
}
|
|
5762
|
+
}
|
|
5431
5763
|
}
|
|
5432
5764
|
},
|
|
5433
5765
|
{
|
|
@@ -5448,15 +5780,49 @@
|
|
|
5448
5780
|
]
|
|
5449
5781
|
},
|
|
5450
5782
|
"pricing": {
|
|
5451
|
-
"
|
|
5452
|
-
|
|
5783
|
+
"text_tokens": {
|
|
5784
|
+
"standard": {
|
|
5785
|
+
"input_per_million": 5.0,
|
|
5786
|
+
"output_per_million": 30.0,
|
|
5787
|
+
"cache_read_input_per_million": 0.5,
|
|
5788
|
+
"cache_write_input_per_million": 6.25
|
|
5789
|
+
}
|
|
5790
|
+
}
|
|
5791
|
+
}
|
|
5792
|
+
},
|
|
5793
|
+
{
|
|
5794
|
+
"id": "gpt-5.6-terra",
|
|
5795
|
+
"name": "GPT-5.6 Terra",
|
|
5796
|
+
"provider": "commandcode",
|
|
5797
|
+
"context_window": 1050000,
|
|
5798
|
+
"capabilities": [
|
|
5799
|
+
"function_calling",
|
|
5800
|
+
"streaming"
|
|
5801
|
+
],
|
|
5802
|
+
"modalities": {
|
|
5803
|
+
"input": [
|
|
5804
|
+
"text"
|
|
5805
|
+
],
|
|
5806
|
+
"output": [
|
|
5807
|
+
"text"
|
|
5808
|
+
]
|
|
5809
|
+
},
|
|
5810
|
+
"pricing": {
|
|
5811
|
+
"text_tokens": {
|
|
5812
|
+
"standard": {
|
|
5813
|
+
"input_per_million": 2.0,
|
|
5814
|
+
"output_per_million": 12.0,
|
|
5815
|
+
"cache_read_input_per_million": 0.2,
|
|
5816
|
+
"cache_write_input_per_million": 2.5
|
|
5817
|
+
}
|
|
5818
|
+
}
|
|
5453
5819
|
}
|
|
5454
5820
|
},
|
|
5455
5821
|
{
|
|
5456
|
-
"id": "
|
|
5457
|
-
"name": "
|
|
5822
|
+
"id": "inclusionai/ling-3.0-flash-sante:free",
|
|
5823
|
+
"name": "Ling 3.0 Flash Sante",
|
|
5458
5824
|
"provider": "commandcode",
|
|
5459
|
-
"context_window":
|
|
5825
|
+
"context_window": 262144,
|
|
5460
5826
|
"capabilities": [
|
|
5461
5827
|
"function_calling",
|
|
5462
5828
|
"streaming"
|
|
@@ -5470,8 +5836,13 @@
|
|
|
5470
5836
|
]
|
|
5471
5837
|
},
|
|
5472
5838
|
"pricing": {
|
|
5473
|
-
"
|
|
5474
|
-
|
|
5839
|
+
"text_tokens": {
|
|
5840
|
+
"standard": {
|
|
5841
|
+
"input_per_million": 0,
|
|
5842
|
+
"output_per_million": 0,
|
|
5843
|
+
"cache_read_input_per_million": 0
|
|
5844
|
+
}
|
|
5845
|
+
}
|
|
5475
5846
|
}
|
|
5476
5847
|
},
|
|
5477
5848
|
{
|
|
@@ -5492,8 +5863,13 @@
|
|
|
5492
5863
|
]
|
|
5493
5864
|
},
|
|
5494
5865
|
"pricing": {
|
|
5495
|
-
"
|
|
5496
|
-
|
|
5866
|
+
"text_tokens": {
|
|
5867
|
+
"standard": {
|
|
5868
|
+
"input_per_million": 0.0,
|
|
5869
|
+
"output_per_million": 0.0,
|
|
5870
|
+
"cache_read_input_per_million": 0.0
|
|
5871
|
+
}
|
|
5872
|
+
}
|
|
5497
5873
|
}
|
|
5498
5874
|
},
|
|
5499
5875
|
{
|
|
@@ -5514,8 +5890,13 @@
|
|
|
5514
5890
|
]
|
|
5515
5891
|
},
|
|
5516
5892
|
"pricing": {
|
|
5517
|
-
"
|
|
5518
|
-
|
|
5893
|
+
"text_tokens": {
|
|
5894
|
+
"standard": {
|
|
5895
|
+
"input_per_million": 1.25,
|
|
5896
|
+
"output_per_million": 4.25,
|
|
5897
|
+
"cache_read_input_per_million": 0.15
|
|
5898
|
+
}
|
|
5899
|
+
}
|
|
5519
5900
|
}
|
|
5520
5901
|
},
|
|
5521
5902
|
{
|
|
@@ -5536,8 +5917,13 @@
|
|
|
5536
5917
|
]
|
|
5537
5918
|
},
|
|
5538
5919
|
"pricing": {
|
|
5539
|
-
"
|
|
5540
|
-
|
|
5920
|
+
"text_tokens": {
|
|
5921
|
+
"standard": {
|
|
5922
|
+
"input_per_million": 1.25,
|
|
5923
|
+
"output_per_million": 4.25,
|
|
5924
|
+
"cache_read_input_per_million": 0.15
|
|
5925
|
+
}
|
|
5926
|
+
}
|
|
5541
5927
|
}
|
|
5542
5928
|
},
|
|
5543
5929
|
{
|
|
@@ -5558,8 +5944,13 @@
|
|
|
5558
5944
|
]
|
|
5559
5945
|
},
|
|
5560
5946
|
"pricing": {
|
|
5561
|
-
"
|
|
5562
|
-
|
|
5947
|
+
"text_tokens": {
|
|
5948
|
+
"standard": {
|
|
5949
|
+
"input_per_million": 0.1,
|
|
5950
|
+
"output_per_million": 0.2,
|
|
5951
|
+
"cache_read_input_per_million": 0.002
|
|
5952
|
+
}
|
|
5953
|
+
}
|
|
5563
5954
|
}
|
|
5564
5955
|
},
|
|
5565
5956
|
{
|
|
@@ -5580,8 +5971,13 @@
|
|
|
5580
5971
|
]
|
|
5581
5972
|
},
|
|
5582
5973
|
"pricing": {
|
|
5583
|
-
"
|
|
5584
|
-
|
|
5974
|
+
"text_tokens": {
|
|
5975
|
+
"standard": {
|
|
5976
|
+
"input_per_million": 1.25,
|
|
5977
|
+
"output_per_million": 4.25,
|
|
5978
|
+
"cache_read_input_per_million": 0.15
|
|
5979
|
+
}
|
|
5980
|
+
}
|
|
5585
5981
|
}
|
|
5586
5982
|
},
|
|
5587
5983
|
{
|
|
@@ -5602,8 +5998,13 @@
|
|
|
5602
5998
|
]
|
|
5603
5999
|
},
|
|
5604
6000
|
"pricing": {
|
|
5605
|
-
"
|
|
5606
|
-
|
|
6001
|
+
"text_tokens": {
|
|
6002
|
+
"standard": {
|
|
6003
|
+
"input_per_million": 0.1,
|
|
6004
|
+
"output_per_million": 0.2,
|
|
6005
|
+
"cache_read_input_per_million": 0.002
|
|
6006
|
+
}
|
|
6007
|
+
}
|
|
5607
6008
|
}
|
|
5608
6009
|
},
|
|
5609
6010
|
{
|
|
@@ -5624,8 +6025,13 @@
|
|
|
5624
6025
|
]
|
|
5625
6026
|
},
|
|
5626
6027
|
"pricing": {
|
|
5627
|
-
"
|
|
5628
|
-
|
|
6028
|
+
"text_tokens": {
|
|
6029
|
+
"standard": {
|
|
6030
|
+
"input_per_million": 0.6,
|
|
6031
|
+
"output_per_million": 3.0,
|
|
6032
|
+
"cache_read_input_per_million": 0.1
|
|
6033
|
+
}
|
|
6034
|
+
}
|
|
5629
6035
|
}
|
|
5630
6036
|
},
|
|
5631
6037
|
{
|
|
@@ -5646,8 +6052,13 @@
|
|
|
5646
6052
|
]
|
|
5647
6053
|
},
|
|
5648
6054
|
"pricing": {
|
|
5649
|
-
"
|
|
5650
|
-
|
|
6055
|
+
"text_tokens": {
|
|
6056
|
+
"standard": {
|
|
6057
|
+
"input_per_million": 0.95,
|
|
6058
|
+
"output_per_million": 4.0,
|
|
6059
|
+
"cache_read_input_per_million": 0.16
|
|
6060
|
+
}
|
|
6061
|
+
}
|
|
5651
6062
|
}
|
|
5652
6063
|
},
|
|
5653
6064
|
{
|
|
@@ -5668,8 +6079,13 @@
|
|
|
5668
6079
|
]
|
|
5669
6080
|
},
|
|
5670
6081
|
"pricing": {
|
|
5671
|
-
"
|
|
5672
|
-
|
|
6082
|
+
"text_tokens": {
|
|
6083
|
+
"standard": {
|
|
6084
|
+
"input_per_million": 0.95,
|
|
6085
|
+
"output_per_million": 4.0,
|
|
6086
|
+
"cache_read_input_per_million": 0.19
|
|
6087
|
+
}
|
|
6088
|
+
}
|
|
5673
6089
|
}
|
|
5674
6090
|
},
|
|
5675
6091
|
{
|
|
@@ -5690,8 +6106,13 @@
|
|
|
5690
6106
|
]
|
|
5691
6107
|
},
|
|
5692
6108
|
"pricing": {
|
|
5693
|
-
"
|
|
5694
|
-
|
|
6109
|
+
"text_tokens": {
|
|
6110
|
+
"standard": {
|
|
6111
|
+
"input_per_million": 1.9,
|
|
6112
|
+
"output_per_million": 8.0,
|
|
6113
|
+
"cache_read_input_per_million": 0.38
|
|
6114
|
+
}
|
|
6115
|
+
}
|
|
5695
6116
|
}
|
|
5696
6117
|
},
|
|
5697
6118
|
{
|
|
@@ -5712,8 +6133,13 @@
|
|
|
5712
6133
|
]
|
|
5713
6134
|
},
|
|
5714
6135
|
"pricing": {
|
|
5715
|
-
"
|
|
5716
|
-
|
|
6136
|
+
"text_tokens": {
|
|
6137
|
+
"standard": {
|
|
6138
|
+
"input_per_million": 3.0,
|
|
6139
|
+
"output_per_million": 15.0,
|
|
6140
|
+
"cache_read_input_per_million": 0.3
|
|
6141
|
+
}
|
|
6142
|
+
}
|
|
5717
6143
|
}
|
|
5718
6144
|
},
|
|
5719
6145
|
{
|
|
@@ -5734,8 +6160,13 @@
|
|
|
5734
6160
|
]
|
|
5735
6161
|
},
|
|
5736
6162
|
"pricing": {
|
|
5737
|
-
"
|
|
5738
|
-
|
|
6163
|
+
"text_tokens": {
|
|
6164
|
+
"standard": {
|
|
6165
|
+
"input_per_million": 0.6,
|
|
6166
|
+
"output_per_million": 2.4,
|
|
6167
|
+
"cache_read_input_per_million": 0.12
|
|
6168
|
+
}
|
|
6169
|
+
}
|
|
5739
6170
|
}
|
|
5740
6171
|
},
|
|
5741
6172
|
{
|
|
@@ -5756,8 +6187,13 @@
|
|
|
5756
6187
|
]
|
|
5757
6188
|
},
|
|
5758
6189
|
"pricing": {
|
|
5759
|
-
"
|
|
5760
|
-
|
|
6190
|
+
"text_tokens": {
|
|
6191
|
+
"standard": {
|
|
6192
|
+
"input_per_million": 0.0,
|
|
6193
|
+
"output_per_million": 0.0,
|
|
6194
|
+
"cache_read_input_per_million": 0.0
|
|
6195
|
+
}
|
|
6196
|
+
}
|
|
5761
6197
|
}
|
|
5762
6198
|
},
|
|
5763
6199
|
{
|
|
@@ -5778,8 +6214,13 @@
|
|
|
5778
6214
|
]
|
|
5779
6215
|
},
|
|
5780
6216
|
"pricing": {
|
|
5781
|
-
"
|
|
5782
|
-
|
|
6217
|
+
"text_tokens": {
|
|
6218
|
+
"standard": {
|
|
6219
|
+
"input_per_million": 5.0,
|
|
6220
|
+
"output_per_million": 30.0,
|
|
6221
|
+
"cache_read_input_per_million": 0.5
|
|
6222
|
+
}
|
|
6223
|
+
}
|
|
5783
6224
|
}
|
|
5784
6225
|
},
|
|
5785
6226
|
{
|
|
@@ -5800,8 +6241,13 @@
|
|
|
5800
6241
|
]
|
|
5801
6242
|
},
|
|
5802
6243
|
"pricing": {
|
|
5803
|
-
"
|
|
5804
|
-
|
|
6244
|
+
"text_tokens": {
|
|
6245
|
+
"standard": {
|
|
6246
|
+
"input_per_million": 0.1,
|
|
6247
|
+
"output_per_million": 0.3,
|
|
6248
|
+
"cache_read_input_per_million": 0.02
|
|
6249
|
+
}
|
|
6250
|
+
}
|
|
5805
6251
|
}
|
|
5806
6252
|
},
|
|
5807
6253
|
{
|
|
@@ -5822,8 +6268,13 @@
|
|
|
5822
6268
|
]
|
|
5823
6269
|
},
|
|
5824
6270
|
"pricing": {
|
|
5825
|
-
"
|
|
5826
|
-
|
|
6271
|
+
"text_tokens": {
|
|
6272
|
+
"standard": {
|
|
6273
|
+
"input_per_million": 0.2,
|
|
6274
|
+
"output_per_million": 1.15,
|
|
6275
|
+
"cache_read_input_per_million": 0.04
|
|
6276
|
+
}
|
|
6277
|
+
}
|
|
5827
6278
|
}
|
|
5828
6279
|
},
|
|
5829
6280
|
{
|
|
@@ -5844,8 +6295,13 @@
|
|
|
5844
6295
|
]
|
|
5845
6296
|
},
|
|
5846
6297
|
"pricing": {
|
|
5847
|
-
"
|
|
5848
|
-
|
|
6298
|
+
"text_tokens": {
|
|
6299
|
+
"standard": {
|
|
6300
|
+
"input_per_million": 0.14,
|
|
6301
|
+
"output_per_million": 0.58,
|
|
6302
|
+
"cache_read_input_per_million": 0.035
|
|
6303
|
+
}
|
|
6304
|
+
}
|
|
5849
6305
|
}
|
|
5850
6306
|
},
|
|
5851
6307
|
{
|
|
@@ -5866,8 +6322,13 @@
|
|
|
5866
6322
|
]
|
|
5867
6323
|
},
|
|
5868
6324
|
"pricing": {
|
|
5869
|
-
"
|
|
5870
|
-
|
|
6325
|
+
"text_tokens": {
|
|
6326
|
+
"standard": {
|
|
6327
|
+
"input_per_million": 0.834,
|
|
6328
|
+
"output_per_million": 2.501,
|
|
6329
|
+
"cache_read_input_per_million": 0.042
|
|
6330
|
+
}
|
|
6331
|
+
}
|
|
5871
6332
|
}
|
|
5872
6333
|
},
|
|
5873
6334
|
{
|
|
@@ -5888,8 +6349,13 @@
|
|
|
5888
6349
|
]
|
|
5889
6350
|
},
|
|
5890
6351
|
"pricing": {
|
|
5891
|
-
"
|
|
5892
|
-
|
|
6352
|
+
"text_tokens": {
|
|
6353
|
+
"standard": {
|
|
6354
|
+
"input_per_million": 1.0,
|
|
6355
|
+
"output_per_million": 4.05,
|
|
6356
|
+
"cache_read_input_per_million": 0.17
|
|
6357
|
+
}
|
|
6358
|
+
}
|
|
5893
6359
|
}
|
|
5894
6360
|
},
|
|
5895
6361
|
{
|
|
@@ -5910,8 +6376,13 @@
|
|
|
5910
6376
|
]
|
|
5911
6377
|
},
|
|
5912
6378
|
"pricing": {
|
|
5913
|
-
"
|
|
5914
|
-
|
|
6379
|
+
"text_tokens": {
|
|
6380
|
+
"standard": {
|
|
6381
|
+
"input_per_million": 0.5,
|
|
6382
|
+
"output_per_million": 1.2,
|
|
6383
|
+
"cache_read_input_per_million": 0.1
|
|
6384
|
+
}
|
|
6385
|
+
}
|
|
5915
6386
|
}
|
|
5916
6387
|
},
|
|
5917
6388
|
{
|
|
@@ -5932,8 +6403,13 @@
|
|
|
5932
6403
|
]
|
|
5933
6404
|
},
|
|
5934
6405
|
"pricing": {
|
|
5935
|
-
"
|
|
5936
|
-
|
|
6406
|
+
"text_tokens": {
|
|
6407
|
+
"standard": {
|
|
6408
|
+
"input_per_million": 2.0,
|
|
6409
|
+
"output_per_million": 6.0,
|
|
6410
|
+
"cache_read_input_per_million": 0.5
|
|
6411
|
+
}
|
|
6412
|
+
}
|
|
5937
6413
|
}
|
|
5938
6414
|
},
|
|
5939
6415
|
{
|
|
@@ -5954,8 +6430,13 @@
|
|
|
5954
6430
|
]
|
|
5955
6431
|
},
|
|
5956
6432
|
"pricing": {
|
|
5957
|
-
"
|
|
5958
|
-
|
|
6433
|
+
"text_tokens": {
|
|
6434
|
+
"standard": {
|
|
6435
|
+
"input_per_million": 2.0,
|
|
6436
|
+
"output_per_million": 6.0,
|
|
6437
|
+
"cache_read_input_per_million": 0.5
|
|
6438
|
+
}
|
|
6439
|
+
}
|
|
5959
6440
|
}
|
|
5960
6441
|
},
|
|
5961
6442
|
{
|
|
@@ -5976,8 +6457,13 @@
|
|
|
5976
6457
|
]
|
|
5977
6458
|
},
|
|
5978
6459
|
"pricing": {
|
|
5979
|
-
"
|
|
5980
|
-
|
|
6460
|
+
"text_tokens": {
|
|
6461
|
+
"standard": {
|
|
6462
|
+
"input_per_million": 0.14,
|
|
6463
|
+
"output_per_million": 0.28,
|
|
6464
|
+
"cache_read_input_per_million": 0.0028
|
|
6465
|
+
}
|
|
6466
|
+
}
|
|
5981
6467
|
}
|
|
5982
6468
|
},
|
|
5983
6469
|
{
|
|
@@ -5998,8 +6484,13 @@
|
|
|
5998
6484
|
]
|
|
5999
6485
|
},
|
|
6000
6486
|
"pricing": {
|
|
6001
|
-
"
|
|
6002
|
-
|
|
6487
|
+
"text_tokens": {
|
|
6488
|
+
"standard": {
|
|
6489
|
+
"input_per_million": 0.435,
|
|
6490
|
+
"output_per_million": 0.87,
|
|
6491
|
+
"cache_read_input_per_million": 0.0036
|
|
6492
|
+
}
|
|
6493
|
+
}
|
|
6003
6494
|
}
|
|
6004
6495
|
},
|
|
6005
6496
|
{
|
|
@@ -6020,8 +6511,13 @@
|
|
|
6020
6511
|
]
|
|
6021
6512
|
},
|
|
6022
6513
|
"pricing": {
|
|
6023
|
-
"
|
|
6024
|
-
|
|
6514
|
+
"text_tokens": {
|
|
6515
|
+
"standard": {
|
|
6516
|
+
"input_per_million": 0.15,
|
|
6517
|
+
"output_per_million": 0.5,
|
|
6518
|
+
"cache_read_input_per_million": 0.03
|
|
6519
|
+
}
|
|
6520
|
+
}
|
|
6025
6521
|
}
|
|
6026
6522
|
},
|
|
6027
6523
|
{
|
|
@@ -6042,8 +6538,13 @@
|
|
|
6042
6538
|
]
|
|
6043
6539
|
},
|
|
6044
6540
|
"pricing": {
|
|
6045
|
-
"
|
|
6046
|
-
|
|
6541
|
+
"text_tokens": {
|
|
6542
|
+
"standard": {
|
|
6543
|
+
"input_per_million": 1.0,
|
|
6544
|
+
"output_per_million": 3.2,
|
|
6545
|
+
"cache_read_input_per_million": 0.2
|
|
6546
|
+
}
|
|
6547
|
+
}
|
|
6047
6548
|
}
|
|
6048
6549
|
},
|
|
6049
6550
|
{
|
|
@@ -6064,8 +6565,13 @@
|
|
|
6064
6565
|
]
|
|
6065
6566
|
},
|
|
6066
6567
|
"pricing": {
|
|
6067
|
-
"
|
|
6068
|
-
|
|
6568
|
+
"text_tokens": {
|
|
6569
|
+
"standard": {
|
|
6570
|
+
"input_per_million": 1.4,
|
|
6571
|
+
"output_per_million": 4.4,
|
|
6572
|
+
"cache_read_input_per_million": 0.26
|
|
6573
|
+
}
|
|
6574
|
+
}
|
|
6069
6575
|
}
|
|
6070
6576
|
},
|
|
6071
6577
|
{
|
|
@@ -6086,8 +6592,13 @@
|
|
|
6086
6592
|
]
|
|
6087
6593
|
},
|
|
6088
6594
|
"pricing": {
|
|
6089
|
-
"
|
|
6090
|
-
|
|
6595
|
+
"text_tokens": {
|
|
6596
|
+
"standard": {
|
|
6597
|
+
"input_per_million": 1.4,
|
|
6598
|
+
"output_per_million": 4.4,
|
|
6599
|
+
"cache_read_input_per_million": 0.26
|
|
6600
|
+
}
|
|
6601
|
+
}
|
|
6091
6602
|
}
|
|
6092
6603
|
},
|
|
6093
6604
|
{
|
|
@@ -6108,8 +6619,13 @@
|
|
|
6108
6619
|
]
|
|
6109
6620
|
},
|
|
6110
6621
|
"pricing": {
|
|
6111
|
-
"
|
|
6112
|
-
|
|
6622
|
+
"text_tokens": {
|
|
6623
|
+
"standard": {
|
|
6624
|
+
"input_per_million": 3.0,
|
|
6625
|
+
"output_per_million": 10.25,
|
|
6626
|
+
"cache_read_input_per_million": 0.5
|
|
6627
|
+
}
|
|
6628
|
+
}
|
|
6113
6629
|
}
|
|
6114
6630
|
},
|
|
6115
6631
|
{
|
|
@@ -6130,8 +6646,13 @@
|
|
|
6130
6646
|
]
|
|
6131
6647
|
},
|
|
6132
6648
|
"pricing": {
|
|
6133
|
-
"
|
|
6134
|
-
|
|
6649
|
+
"text_tokens": {
|
|
6650
|
+
"standard": {
|
|
6651
|
+
"input_per_million": 1.4,
|
|
6652
|
+
"output_per_million": 4.4,
|
|
6653
|
+
"cache_read_input_per_million": 0.26
|
|
6654
|
+
}
|
|
6655
|
+
}
|
|
6135
6656
|
}
|
|
6136
6657
|
},
|
|
6137
6658
|
{
|
|
@@ -14456,4 +14977,4 @@
|
|
|
14456
14977
|
"pricing": {},
|
|
14457
14978
|
"created_at": "2026-01-28"
|
|
14458
14979
|
}
|
|
14459
|
-
]
|
|
14980
|
+
]
|
data/lib/ask/llm/version.rb
CHANGED