ask-llm-providers 0.7.0 → 0.8.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 +16 -0
- data/lib/ask/llm/cost_calculator.rb +65 -37
- data/lib/ask/llm/models/anthropic.json +367 -0
- data/lib/ask/llm/models/bedrock.json +140 -0
- data/lib/ask/llm/models/deepseek.json +213 -0
- data/lib/ask/llm/models/gemini.json +394 -0
- data/lib/ask/llm/models/meta.json +299 -0
- data/lib/ask/llm/models/mistral.json +404 -0
- data/lib/ask/llm/models/moonshot.json +198 -0
- data/lib/ask/llm/models/nvidia_nim.json +289 -0
- data/lib/ask/llm/models/openai.json +695 -0
- data/lib/ask/llm/models/perplexity.json +29 -0
- data/lib/ask/llm/models/xai.json +52 -0
- data/lib/ask/llm/sources/openrouter.rb +176 -0
- data/lib/ask/llm/version.rb +1 -1
- metadata +5 -1
|
@@ -123,5 +123,218 @@
|
|
|
123
123
|
},
|
|
124
124
|
"knowledge_cutoff": "2025-05",
|
|
125
125
|
"created_at": "2026-04-24"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "deepseek-chat-v3-0324",
|
|
129
|
+
"name": "DeepSeek: DeepSeek V3 0324",
|
|
130
|
+
"provider": "deepseek",
|
|
131
|
+
"context_window": 163840,
|
|
132
|
+
"max_output_tokens": 65536,
|
|
133
|
+
"capabilities": [],
|
|
134
|
+
"modalities": {
|
|
135
|
+
"input": [
|
|
136
|
+
"text"
|
|
137
|
+
],
|
|
138
|
+
"output": [
|
|
139
|
+
"text"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
"pricing": {
|
|
143
|
+
"text_tokens": {
|
|
144
|
+
"standard": {
|
|
145
|
+
"input_per_million": 0.27,
|
|
146
|
+
"output_per_million": 1.12,
|
|
147
|
+
"cache_read_input_per_million": 0.135
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"architecture": "text->text",
|
|
152
|
+
"source": "openrouter"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "deepseek-chat-v3.1",
|
|
156
|
+
"name": "DeepSeek: DeepSeek V3.1",
|
|
157
|
+
"provider": "deepseek",
|
|
158
|
+
"context_window": 163840,
|
|
159
|
+
"max_output_tokens": 32768,
|
|
160
|
+
"capabilities": [],
|
|
161
|
+
"modalities": {
|
|
162
|
+
"input": [
|
|
163
|
+
"text"
|
|
164
|
+
],
|
|
165
|
+
"output": [
|
|
166
|
+
"text"
|
|
167
|
+
]
|
|
168
|
+
},
|
|
169
|
+
"pricing": {
|
|
170
|
+
"text_tokens": {
|
|
171
|
+
"standard": {
|
|
172
|
+
"input_per_million": 0.25,
|
|
173
|
+
"output_per_million": 0.95,
|
|
174
|
+
"cache_read_input_per_million": 0.13
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"architecture": "text->text",
|
|
179
|
+
"source": "openrouter"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"id": "deepseek-v3.1-terminus",
|
|
183
|
+
"name": "DeepSeek: DeepSeek V3.1 Terminus",
|
|
184
|
+
"provider": "deepseek",
|
|
185
|
+
"context_window": 131072,
|
|
186
|
+
"max_output_tokens": 32768,
|
|
187
|
+
"capabilities": [],
|
|
188
|
+
"modalities": {
|
|
189
|
+
"input": [
|
|
190
|
+
"text"
|
|
191
|
+
],
|
|
192
|
+
"output": [
|
|
193
|
+
"text"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"pricing": {
|
|
197
|
+
"text_tokens": {
|
|
198
|
+
"standard": {
|
|
199
|
+
"input_per_million": 0.27,
|
|
200
|
+
"output_per_million": 1.0,
|
|
201
|
+
"cache_read_input_per_million": 0.135
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"architecture": "text->text",
|
|
206
|
+
"source": "openrouter"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"id": "deepseek-v3.2",
|
|
210
|
+
"name": "DeepSeek: DeepSeek V3.2",
|
|
211
|
+
"provider": "deepseek",
|
|
212
|
+
"context_window": 163840,
|
|
213
|
+
"max_output_tokens": 65536,
|
|
214
|
+
"capabilities": [],
|
|
215
|
+
"modalities": {
|
|
216
|
+
"input": [
|
|
217
|
+
"text"
|
|
218
|
+
],
|
|
219
|
+
"output": [
|
|
220
|
+
"text"
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
"pricing": {
|
|
224
|
+
"text_tokens": {
|
|
225
|
+
"standard": {
|
|
226
|
+
"input_per_million": 0.269,
|
|
227
|
+
"output_per_million": 0.4,
|
|
228
|
+
"cache_read_input_per_million": 0.1345
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
"architecture": "text->text",
|
|
233
|
+
"source": "openrouter"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "deepseek-v3.2-exp",
|
|
237
|
+
"name": "DeepSeek: DeepSeek V3.2 Exp",
|
|
238
|
+
"provider": "deepseek",
|
|
239
|
+
"context_window": 163840,
|
|
240
|
+
"max_output_tokens": 65536,
|
|
241
|
+
"capabilities": [],
|
|
242
|
+
"modalities": {
|
|
243
|
+
"input": [
|
|
244
|
+
"text"
|
|
245
|
+
],
|
|
246
|
+
"output": [
|
|
247
|
+
"text"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
"pricing": {
|
|
251
|
+
"text_tokens": {
|
|
252
|
+
"standard": {
|
|
253
|
+
"input_per_million": 0.27,
|
|
254
|
+
"output_per_million": 0.41
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"architecture": "text->text",
|
|
259
|
+
"source": "openrouter"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"id": "deepseek-r1",
|
|
263
|
+
"name": "DeepSeek: R1",
|
|
264
|
+
"provider": "deepseek",
|
|
265
|
+
"context_window": 163840,
|
|
266
|
+
"max_output_tokens": 16000,
|
|
267
|
+
"capabilities": [],
|
|
268
|
+
"modalities": {
|
|
269
|
+
"input": [
|
|
270
|
+
"text"
|
|
271
|
+
],
|
|
272
|
+
"output": [
|
|
273
|
+
"text"
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
"pricing": {
|
|
277
|
+
"text_tokens": {
|
|
278
|
+
"standard": {
|
|
279
|
+
"input_per_million": 0.7,
|
|
280
|
+
"output_per_million": 2.5
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"architecture": "text->text",
|
|
285
|
+
"source": "openrouter"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"id": "deepseek-r1-0528",
|
|
289
|
+
"name": "DeepSeek: R1 0528",
|
|
290
|
+
"provider": "deepseek",
|
|
291
|
+
"context_window": 163840,
|
|
292
|
+
"max_output_tokens": 32768,
|
|
293
|
+
"capabilities": [],
|
|
294
|
+
"modalities": {
|
|
295
|
+
"input": [
|
|
296
|
+
"text"
|
|
297
|
+
],
|
|
298
|
+
"output": [
|
|
299
|
+
"text"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
"pricing": {
|
|
303
|
+
"text_tokens": {
|
|
304
|
+
"standard": {
|
|
305
|
+
"input_per_million": 0.5,
|
|
306
|
+
"output_per_million": 2.15,
|
|
307
|
+
"cache_read_input_per_million": 0.35
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"architecture": "text->text",
|
|
312
|
+
"source": "openrouter"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"id": "deepseek-r1-distill-llama-70b",
|
|
316
|
+
"name": "DeepSeek: R1 Distill Llama 70B",
|
|
317
|
+
"provider": "deepseek",
|
|
318
|
+
"context_window": 128000,
|
|
319
|
+
"max_output_tokens": 8192,
|
|
320
|
+
"capabilities": [],
|
|
321
|
+
"modalities": {
|
|
322
|
+
"input": [
|
|
323
|
+
"text"
|
|
324
|
+
],
|
|
325
|
+
"output": [
|
|
326
|
+
"text"
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
"pricing": {
|
|
330
|
+
"text_tokens": {
|
|
331
|
+
"standard": {
|
|
332
|
+
"input_per_million": 0.8,
|
|
333
|
+
"output_per_million": 0.8
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"architecture": "text->text",
|
|
338
|
+
"source": "openrouter"
|
|
126
339
|
}
|
|
127
340
|
]
|
|
@@ -716,6 +716,400 @@
|
|
|
716
716
|
"pricing": {},
|
|
717
717
|
"created_at": "2026-04-02"
|
|
718
718
|
},
|
|
719
|
+
{
|
|
720
|
+
"id": "gemini-2.5-pro-preview-05-06",
|
|
721
|
+
"name": "Google: Gemini 2.5 Pro Preview 05-06",
|
|
722
|
+
"provider": "gemini",
|
|
723
|
+
"context_window": 1048576,
|
|
724
|
+
"max_output_tokens": 65535,
|
|
725
|
+
"capabilities": [],
|
|
726
|
+
"modalities": {
|
|
727
|
+
"input": [
|
|
728
|
+
"text"
|
|
729
|
+
],
|
|
730
|
+
"output": [
|
|
731
|
+
"text"
|
|
732
|
+
]
|
|
733
|
+
},
|
|
734
|
+
"pricing": {
|
|
735
|
+
"text_tokens": {
|
|
736
|
+
"standard": {
|
|
737
|
+
"input_per_million": 1.25,
|
|
738
|
+
"output_per_million": 10.0,
|
|
739
|
+
"cache_read_input_per_million": 0.125,
|
|
740
|
+
"cache_write_input_per_million": 0.375
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"images": {
|
|
744
|
+
"standard": {
|
|
745
|
+
"input_per_million": 1.25
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
"architecture": "text+image+file+audio+video->text",
|
|
750
|
+
"source": "openrouter"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
"id": "gemini-2.5-pro-preview",
|
|
754
|
+
"name": "Google: Gemini 2.5 Pro Preview 06-05",
|
|
755
|
+
"provider": "gemini",
|
|
756
|
+
"context_window": 1048576,
|
|
757
|
+
"max_output_tokens": 65536,
|
|
758
|
+
"capabilities": [],
|
|
759
|
+
"modalities": {
|
|
760
|
+
"input": [
|
|
761
|
+
"text"
|
|
762
|
+
],
|
|
763
|
+
"output": [
|
|
764
|
+
"text"
|
|
765
|
+
]
|
|
766
|
+
},
|
|
767
|
+
"pricing": {
|
|
768
|
+
"text_tokens": {
|
|
769
|
+
"standard": {
|
|
770
|
+
"input_per_million": 1.25,
|
|
771
|
+
"output_per_million": 10.0,
|
|
772
|
+
"cache_read_input_per_million": 0.125,
|
|
773
|
+
"cache_write_input_per_million": 0.375
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"images": {
|
|
777
|
+
"standard": {
|
|
778
|
+
"input_per_million": 1.25
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
"architecture": "text+image+file+audio->text",
|
|
783
|
+
"source": "openrouter"
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"id": "gemma-2-27b-it",
|
|
787
|
+
"name": "Google: Gemma 2 27B",
|
|
788
|
+
"provider": "gemini",
|
|
789
|
+
"context_window": 8192,
|
|
790
|
+
"max_output_tokens": 2048,
|
|
791
|
+
"capabilities": [],
|
|
792
|
+
"modalities": {
|
|
793
|
+
"input": [
|
|
794
|
+
"text"
|
|
795
|
+
],
|
|
796
|
+
"output": [
|
|
797
|
+
"text"
|
|
798
|
+
]
|
|
799
|
+
},
|
|
800
|
+
"pricing": {
|
|
801
|
+
"text_tokens": {
|
|
802
|
+
"standard": {
|
|
803
|
+
"input_per_million": 0.65,
|
|
804
|
+
"output_per_million": 0.65
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
},
|
|
808
|
+
"architecture": "text->text",
|
|
809
|
+
"source": "openrouter"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"id": "gemma-3-12b-it",
|
|
813
|
+
"name": "Google: Gemma 3 12B",
|
|
814
|
+
"provider": "gemini",
|
|
815
|
+
"context_window": 131072,
|
|
816
|
+
"max_output_tokens": 16384,
|
|
817
|
+
"capabilities": [
|
|
818
|
+
"vision"
|
|
819
|
+
],
|
|
820
|
+
"modalities": {
|
|
821
|
+
"input": [
|
|
822
|
+
"text",
|
|
823
|
+
"image"
|
|
824
|
+
],
|
|
825
|
+
"output": [
|
|
826
|
+
"text"
|
|
827
|
+
]
|
|
828
|
+
},
|
|
829
|
+
"pricing": {
|
|
830
|
+
"text_tokens": {
|
|
831
|
+
"standard": {
|
|
832
|
+
"input_per_million": 0.05,
|
|
833
|
+
"output_per_million": 0.15
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
"architecture": "text+image->text",
|
|
838
|
+
"source": "openrouter"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"id": "gemma-3-27b-it",
|
|
842
|
+
"name": "Google: Gemma 3 27B",
|
|
843
|
+
"provider": "gemini",
|
|
844
|
+
"context_window": 131072,
|
|
845
|
+
"max_output_tokens": 131072,
|
|
846
|
+
"capabilities": [
|
|
847
|
+
"vision"
|
|
848
|
+
],
|
|
849
|
+
"modalities": {
|
|
850
|
+
"input": [
|
|
851
|
+
"text",
|
|
852
|
+
"image"
|
|
853
|
+
],
|
|
854
|
+
"output": [
|
|
855
|
+
"text"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
"pricing": {
|
|
859
|
+
"text_tokens": {
|
|
860
|
+
"standard": {
|
|
861
|
+
"input_per_million": 0.08,
|
|
862
|
+
"output_per_million": 0.45,
|
|
863
|
+
"cache_read_input_per_million": 0.04
|
|
864
|
+
}
|
|
865
|
+
}
|
|
866
|
+
},
|
|
867
|
+
"architecture": "text+image->text",
|
|
868
|
+
"source": "openrouter"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"id": "gemma-3-4b-it",
|
|
872
|
+
"name": "Google: Gemma 3 4B",
|
|
873
|
+
"provider": "gemini",
|
|
874
|
+
"context_window": 131072,
|
|
875
|
+
"max_output_tokens": 16384,
|
|
876
|
+
"capabilities": [
|
|
877
|
+
"vision"
|
|
878
|
+
],
|
|
879
|
+
"modalities": {
|
|
880
|
+
"input": [
|
|
881
|
+
"text",
|
|
882
|
+
"image"
|
|
883
|
+
],
|
|
884
|
+
"output": [
|
|
885
|
+
"text"
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
"pricing": {
|
|
889
|
+
"text_tokens": {
|
|
890
|
+
"standard": {
|
|
891
|
+
"input_per_million": 0.05,
|
|
892
|
+
"output_per_million": 0.1
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
},
|
|
896
|
+
"architecture": "text+image->text",
|
|
897
|
+
"source": "openrouter"
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
"id": "gemma-3n-e4b-it",
|
|
901
|
+
"name": "Google: Gemma 3n 4B",
|
|
902
|
+
"provider": "gemini",
|
|
903
|
+
"context_window": 32768,
|
|
904
|
+
"capabilities": [],
|
|
905
|
+
"modalities": {
|
|
906
|
+
"input": [
|
|
907
|
+
"text"
|
|
908
|
+
],
|
|
909
|
+
"output": [
|
|
910
|
+
"text"
|
|
911
|
+
]
|
|
912
|
+
},
|
|
913
|
+
"pricing": {
|
|
914
|
+
"text_tokens": {
|
|
915
|
+
"standard": {
|
|
916
|
+
"input_per_million": 0.06,
|
|
917
|
+
"output_per_million": 0.12
|
|
918
|
+
}
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"architecture": "text->text",
|
|
922
|
+
"source": "openrouter"
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
"id": "gemma-4-26b-a4b-it:free",
|
|
926
|
+
"name": "Google: Gemma 4 26B A4B (free)",
|
|
927
|
+
"provider": "gemini",
|
|
928
|
+
"context_window": 262144,
|
|
929
|
+
"max_output_tokens": 32768,
|
|
930
|
+
"capabilities": [],
|
|
931
|
+
"modalities": {
|
|
932
|
+
"input": [
|
|
933
|
+
"text"
|
|
934
|
+
],
|
|
935
|
+
"output": [
|
|
936
|
+
"text"
|
|
937
|
+
]
|
|
938
|
+
},
|
|
939
|
+
"pricing": {
|
|
940
|
+
"text_tokens": {
|
|
941
|
+
"standard": {
|
|
942
|
+
"input_per_million": 0.0,
|
|
943
|
+
"output_per_million": 0.0
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
},
|
|
947
|
+
"architecture": "text+image+video->text",
|
|
948
|
+
"source": "openrouter"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"id": "gemma-4-31b-it:free",
|
|
952
|
+
"name": "Google: Gemma 4 31B (free)",
|
|
953
|
+
"provider": "gemini",
|
|
954
|
+
"context_window": 262144,
|
|
955
|
+
"max_output_tokens": 32768,
|
|
956
|
+
"capabilities": [],
|
|
957
|
+
"modalities": {
|
|
958
|
+
"input": [
|
|
959
|
+
"text"
|
|
960
|
+
],
|
|
961
|
+
"output": [
|
|
962
|
+
"text"
|
|
963
|
+
]
|
|
964
|
+
},
|
|
965
|
+
"pricing": {
|
|
966
|
+
"text_tokens": {
|
|
967
|
+
"standard": {
|
|
968
|
+
"input_per_million": 0.0,
|
|
969
|
+
"output_per_million": 0.0
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"architecture": "text+image+video->text",
|
|
974
|
+
"source": "openrouter"
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"id": "lyria-3-clip-preview",
|
|
978
|
+
"name": "Google: Lyria 3 Clip Preview",
|
|
979
|
+
"provider": "gemini",
|
|
980
|
+
"context_window": 1048576,
|
|
981
|
+
"max_output_tokens": 65536,
|
|
982
|
+
"capabilities": [],
|
|
983
|
+
"modalities": {
|
|
984
|
+
"input": [
|
|
985
|
+
"text"
|
|
986
|
+
],
|
|
987
|
+
"output": [
|
|
988
|
+
"text"
|
|
989
|
+
]
|
|
990
|
+
},
|
|
991
|
+
"pricing": {
|
|
992
|
+
"text_tokens": {
|
|
993
|
+
"standard": {
|
|
994
|
+
"input_per_million": 0.0,
|
|
995
|
+
"output_per_million": 0.0
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"architecture": "text+image->text+audio",
|
|
1000
|
+
"source": "openrouter"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"id": "lyria-3-pro-preview",
|
|
1004
|
+
"name": "Google: Lyria 3 Pro Preview",
|
|
1005
|
+
"provider": "gemini",
|
|
1006
|
+
"context_window": 1048576,
|
|
1007
|
+
"max_output_tokens": 65536,
|
|
1008
|
+
"capabilities": [],
|
|
1009
|
+
"modalities": {
|
|
1010
|
+
"input": [
|
|
1011
|
+
"text"
|
|
1012
|
+
],
|
|
1013
|
+
"output": [
|
|
1014
|
+
"text"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
"pricing": {
|
|
1018
|
+
"text_tokens": {
|
|
1019
|
+
"standard": {
|
|
1020
|
+
"input_per_million": 0.0,
|
|
1021
|
+
"output_per_million": 0.0
|
|
1022
|
+
}
|
|
1023
|
+
}
|
|
1024
|
+
},
|
|
1025
|
+
"architecture": "text+image->text+audio",
|
|
1026
|
+
"source": "openrouter"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"id": "gemini-3.1-flash-image",
|
|
1030
|
+
"name": "Google: Nano Banana 2 (Gemini 3.1 Flash Image)",
|
|
1031
|
+
"provider": "gemini",
|
|
1032
|
+
"context_window": 131072,
|
|
1033
|
+
"max_output_tokens": 32768,
|
|
1034
|
+
"capabilities": [],
|
|
1035
|
+
"modalities": {
|
|
1036
|
+
"input": [
|
|
1037
|
+
"text"
|
|
1038
|
+
],
|
|
1039
|
+
"output": [
|
|
1040
|
+
"text"
|
|
1041
|
+
]
|
|
1042
|
+
},
|
|
1043
|
+
"pricing": {
|
|
1044
|
+
"text_tokens": {
|
|
1045
|
+
"standard": {
|
|
1046
|
+
"input_per_million": 0.5,
|
|
1047
|
+
"output_per_million": 3.0
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
"architecture": "text+image->text+image",
|
|
1052
|
+
"source": "openrouter"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"id": "gemini-3.1-flash-lite-image",
|
|
1056
|
+
"name": "Google: Nano Banana 2 Lite (Gemini 3.1 Flash Lite Image)",
|
|
1057
|
+
"provider": "gemini",
|
|
1058
|
+
"context_window": 65536,
|
|
1059
|
+
"max_output_tokens": 65536,
|
|
1060
|
+
"capabilities": [],
|
|
1061
|
+
"modalities": {
|
|
1062
|
+
"input": [
|
|
1063
|
+
"text"
|
|
1064
|
+
],
|
|
1065
|
+
"output": [
|
|
1066
|
+
"text"
|
|
1067
|
+
]
|
|
1068
|
+
},
|
|
1069
|
+
"pricing": {
|
|
1070
|
+
"text_tokens": {
|
|
1071
|
+
"standard": {
|
|
1072
|
+
"input_per_million": 0.25,
|
|
1073
|
+
"output_per_million": 1.5
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
},
|
|
1077
|
+
"architecture": "text+image->text+image",
|
|
1078
|
+
"source": "openrouter"
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
"id": "gemini-3-pro-image",
|
|
1082
|
+
"name": "Google: Nano Banana Pro (Gemini 3 Pro Image)",
|
|
1083
|
+
"provider": "gemini",
|
|
1084
|
+
"context_window": 65536,
|
|
1085
|
+
"max_output_tokens": 32768,
|
|
1086
|
+
"capabilities": [],
|
|
1087
|
+
"modalities": {
|
|
1088
|
+
"input": [
|
|
1089
|
+
"text"
|
|
1090
|
+
],
|
|
1091
|
+
"output": [
|
|
1092
|
+
"text"
|
|
1093
|
+
]
|
|
1094
|
+
},
|
|
1095
|
+
"pricing": {
|
|
1096
|
+
"text_tokens": {
|
|
1097
|
+
"standard": {
|
|
1098
|
+
"input_per_million": 2.0,
|
|
1099
|
+
"output_per_million": 12.0,
|
|
1100
|
+
"cache_read_input_per_million": 0.2,
|
|
1101
|
+
"cache_write_input_per_million": 0.375
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
"images": {
|
|
1105
|
+
"standard": {
|
|
1106
|
+
"input_per_million": 2.0
|
|
1107
|
+
}
|
|
1108
|
+
}
|
|
1109
|
+
},
|
|
1110
|
+
"architecture": "text+image->text+image",
|
|
1111
|
+
"source": "openrouter"
|
|
1112
|
+
},
|
|
719
1113
|
{
|
|
720
1114
|
"id": "gemini-2.5-flash-image",
|
|
721
1115
|
"name": "Nano Banana",
|