forked from continuedev/continue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
models.ts
1227 lines (1225 loc) Β· 34.2 KB
/
models.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { ILLM, ModelProvider } from "core";
import { ModelProviderTags } from "../../../components/modelSelection/utils";
import { InputDescriptor } from "./providers";
// A dimension is like parameter count - 7b, 13b, 34b, etc.
// You would set options to the field that should be changed for that option in the params field of ModelPackage
export interface PackageDimension {
name: string;
description: string;
options: { [key: string]: { [key: string]: any } };
}
export interface ModelPackage {
title: string;
icon?: string;
collectInputFor?: InputDescriptor[];
description: string;
refUrl?: string;
tags?: ModelProviderTags[];
params: {
model: ILLM["model"];
templateMessages?: ILLM["templateMessages"];
contextLength: ILLM["contextLength"];
stopTokens?: string[];
promptTemplates?: ILLM["promptTemplates"];
replace?: [string, string][];
[key: string]: any;
};
dimensions?: PackageDimension[];
providerOptions?: ModelProvider[];
isOpenSource: boolean;
}
export const models: { [key: string]: ModelPackage } = {
granite34bCodeInstruct: {
title: "Granite 34B Code Instruct",
description: "A highly capable code instruct model with 34 billion parameters by IBM",
params: {
title: "Granite 34B Code Instruct",
model: "granite-34b-code-instruct",
contextLength: 8192,
apiKey: "<API_KEY>",
},
icon: "ibm.png",
providerOptions: ["ibm"],
isOpenSource: true,
},
granite8bCodeInstruct: {
title: "Granite 8B Code Instruct",
description: "A highly capable code instruct model with 8 billion parameters by IBM",
params: {
title: "Granite 8B Code Instruct",
model: "granite-8b-code-instruct",
contextLength: 4096,
apiKey: "<API_KEY>",
},
icon: "ibm.png",
providerOptions: ["ibm"],
isOpenSource: true,
},
granite3bCodeInstruct: {
title: "Granite 3B Code Instruct",
description: "A highly capable code instruct model with 3 billion parameters by IBM",
params: {
title: "Granite 3B Code Instruct",
model: "granite-3b-code-instruct",
contextLength: 2048,
apiKey: "<API_KEY>",
},
icon: "ibm.png",
providerOptions: ["ibm"],
isOpenSource: true,
},
llama31Chat: {
title: "Llama3.1 Chat",
description: "A model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.1-8b",
model: "llama3.1-8b",
contextLength: 8192,
},
icon: "meta.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"8b": {
model: "llama3.1-8b",
title: "Llama3.1-8b",
},
"70b": {
model: "llama3.1-70b",
title: "Llama3.1-70b",
},
"405b": {
model: "llama3.1-405b",
title: "Llama3.1-405b",
},
},
},
],
providerOptions: [
"ollama",
"lmstudio",
"together",
"llama.cpp",
"replicate",
"sambanova",
"cerebras",
"nebius",
],
isOpenSource: true,
},
llama32Chat: {
title: "Llama3.2 Chat",
description:
"The latest model from Meta, fine-tuned for chat. Llama3.1 recommended - chat stayed the same",
refUrl: "",
params: {
title: "Llama3.2-11b",
model: "llama3.2-11b",
contextLength: 8192,
},
icon: "meta.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"1b": {
model: "llama3.2-1b",
title: "Llama3.2-1b",
},
"3b": {
model: "llama3.2-3b",
title: "Llama3.2-3b",
},
"11b": {
model: "llama3.2-11b",
title: "Llama3.2-11b",
},
"90b": {
model: "llama3.2-90b",
title: "Llama3.2-90b",
},
},
},
],
providerOptions: ["ollama", "groq", "llama.cpp"],
isOpenSource: true,
},
deepseek: {
title: "DeepSeek Coder",
description:
"A model pre-trained on 2 trillion tokens including 80+ programming languages and a repo-level corpus.",
params: {
title: "DeepSeek-7b",
model: "deepseek-7b",
contextLength: 4096,
},
icon: "deepseek.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"1b": {
model: "deepseek-1b",
title: "DeepSeek-1b",
},
"7b": {
model: "deepseek-7b",
title: "DeepSeek-7b",
},
"33b": {
model: "deepseek-33b",
title: "DeepSeek-33b",
},
},
},
],
providerOptions: ["ollama", "lmstudio", "llama.cpp"],
isOpenSource: true,
},
deepseekChatApi: {
title: "DeepSeek Chat",
description: "DeepSeek's best model for general chat use cases.",
params: {
title: "DeepSeek Chat",
model: "deepseek-chat",
contextLength: 128_000,
},
icon: "deepseek.png",
providerOptions: ["deepseek"],
isOpenSource: false,
},
deepseekCoderApi: {
title: "DeepSeek Coder",
description:
"A model pre-trained on 2 trillion tokens including 80+ programming languages and a repo-level corpus.",
params: {
title: "DeepSeek Coder",
model: "deepseek-coder",
contextLength: 128_000,
},
icon: "deepseek.png",
providerOptions: ["deepseek"],
isOpenSource: false,
},
deepseekCoder2Lite: {
title: "DeepSeek Coder 2 Lite",
description:
"DeepSeek-Coder-V2-Lite-Instruct is an open-source code language model that supports 338 programming languages and offers a context length of up to 128,000 tokens.",
params: {
title: "DeepSeek-2-lite",
model: "deepseek-2-lite",
contextLength: 128_000,
},
icon: "deepseek.png",
providerOptions: ["nebius"],
isOpenSource: true,
},
moonshotChat: {
title: "Moonshot Chat",
description: "Moonshot AI provides high-performance large language models",
refUrl: "https://platform.moonshot.cn/",
params: {
title: "Moonshot-v1-8k",
model: "moonshot-v1-8k",
contextLength: 8192,
},
icon: "moonshot.png",
dimensions: [
{
name: "Context Window",
description: "The size of the model's context window",
options: {
"8K": {
model: "moonshot-v1-8k",
title: "Moonshot-v1-8k",
contextLength: 8192,
},
"32K": {
model: "moonshot-v1-32k",
title: "Moonshot-v1-32k",
contextLength: 32768,
},
"128K": {
model: "moonshot-v1-128k",
title: "Moonshot-v1-128k",
contextLength: 131072,
},
},
},
],
providerOptions: ["moonshot"],
isOpenSource: false,
},
mistralOs: {
title: "Mistral",
description:
"A series of open-weight models created by Mistral AI, highly competent for code generation and other tasks",
params: {
title: "Mistral",
model: "mistral-7b",
contextLength: 4096,
},
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"7b": {
model: "mistral-7b",
title: "Mistral-7b",
},
"8x7b (MoE)": {
model: "mistral-8x7b",
title: "Mixtral",
},
"8x22b (MoE)": {
model: "mistral-8x22b",
title: "Mixtral",
},
},
},
],
icon: "mistral.png",
providerOptions: [
"ollama",
"lmstudio",
"together",
"llama.cpp",
"replicate",
"nebius",
],
isOpenSource: true,
},
codeLlamaInstruct: {
title: "CodeLlama Instruct",
description:
"A model from Meta, fine-tuned for code generation and conversation",
refUrl: "",
params: {
title: "CodeLlama-7b",
model: "codellama-7b",
contextLength: 4096,
},
icon: "meta.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"7b": {
model: "codellama-7b",
title: "CodeLlama-7b",
},
"13b": {
model: "codellama-13b",
title: "CodeLlama-13b",
},
"34b": {
model: "codellama-34b",
title: "CodeLlama-34b",
},
"70b": {
model: "codellama-70b",
title: "Codellama-70b",
},
},
},
],
providerOptions: [
"ollama",
"lmstudio",
"together",
"llama.cpp",
"replicate",
],
isOpenSource: true,
},
llama3170bTrial: {
title: "Codellama 70b (Free Trial)",
description:
"The best code model from Meta, fine-tuned for code generation and conversation",
refUrl: "",
params: {
title: "CodeLlama-70b",
model: "codellama-70b",
contextLength: 4096,
},
icon: "meta.png",
providerOptions: ["free-trial"],
isOpenSource: false,
},
llama31405bTrial: {
title: "Llama3.1 405b (Free Trial)",
description: "The latest Llama model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.1-405b",
model: "llama3.1-405b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["free-trial"],
isOpenSource: false,
},
mixtralTrial: {
title: "Mixtral (Free Trial)",
description:
"Mixtral 8x7b is a mixture of experts model created by Mistral AI",
refUrl: "",
params: {
title: "Mixtral",
model: "mistral-8x7b",
contextLength: 4096,
},
icon: "mistral.png",
providerOptions: ["free-trial", "groq"],
isOpenSource: false,
},
llama38bChat: {
title: "Llama3 8b",
description: "The latest Llama model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3-8b",
model: "llama3-8b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["groq"],
isOpenSource: false,
},
llama370bChat: {
title: "Llama3 70b Chat",
description: "The latest Llama model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3-70b",
model: "llama3-70b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["groq", "askSage"],
isOpenSource: false,
},
llama318bChat: {
title: "Llama3.1 8b Chat",
description: "A model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.1-8b",
model: "llama3.1-8b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["groq"],
isOpenSource: false,
},
llama3170bChat: {
title: "Llama3.1 70b Chat",
description: "A model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.1-70b",
model: "llama3.1-70b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["groq"],
isOpenSource: false,
},
llama31405bChat: {
title: "Llama3.1 405b Chat",
description: "A model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.1-405b",
model: "llama3.1-405b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["groq"],
isOpenSource: false,
},
llama3170bNemotron: {
title: "Llama 3.1 Nemotron 70B",
description:
"Llama-3.1-Nemotron-70B-Instruct is a large language model customized by NVIDIA to improve the helpfulness of LLM generated responses to user queries.",
params: {
title: "Llama 3.1 Nemotron 70B",
model: "llama3.1-70b-nemotron",
contextLength: 128_000,
},
icon: "meta.png",
isOpenSource: true,
},
llama321bChat: {
title: "Llama3.2 1b Chat",
description:
"The latest super-lightweight model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.2-1b",
model: "llama3.2-1b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["ollama", "groq", "llama.cpp", "sambanova"],
isOpenSource: false,
},
llama323bChat: {
title: "Llama3.2 3b Chat",
description: "The latest lightweight model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3.2-3b",
model: "llama3.2-3b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["ollama", "groq", "llama.cpp", "sambanova", "together"],
isOpenSource: false,
},
llama3211bChat: {
title: "Llama3.2 11b Chat",
description: "The latest lightweight multi-modal model from Meta",
refUrl: "",
params: {
title: "Llama3.2-11b",
model: "llama3.2-11b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["ollama", "groq", "llama.cpp", "together"],
isOpenSource: false,
},
llama3290bChat: {
title: "Llama3.2 90b Chat",
description: "The latest lightweight multi-modal model from Meta",
refUrl: "",
params: {
title: "Llama3.2-90b",
model: "llama3.2-90b",
contextLength: 8192,
},
icon: "meta.png",
providerOptions: ["ollama", "groq", "llama.cpp"],
isOpenSource: false,
},
llama3Chat: {
title: "Llama3 Chat",
description: "A model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama3-8b",
model: "llama3-8b",
contextLength: 8192,
},
icon: "meta.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"8b": {
model: "llama3-8b",
title: "Llama3-8b",
},
"70b": {
model: "llama3-70b",
title: "Llama3-70b",
},
},
},
],
providerOptions: [
"ollama",
"lmstudio",
"together",
"llama.cpp",
"replicate",
"nebius",
],
isOpenSource: true,
},
graniteCodeOpenSource: {
title: "Granite Code",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "granite-code",
contextLength: 20_000,
title: "Granite Code",
systemMessage: `You are Granite Chat, an AI language model developed by IBM. You are a cautious assistant. You carefully follow instructions. You are helpful and harmless and you follow ethical guidelines and promote positive behavior. You always respond to greetings (for example, hi, hello, g'day, morning, afternoon, evening, night, what's up, nice to meet you, sup, etc) with "Hello! I am Granite Chat, created by IBM. How can I help you today?". Please do not say anything else and do not start a conversation.`,
},
providerOptions: ["ollama", "lmstudio", "llama.cpp", "replicate"],
icon: "ibm.png",
isOpenSource: true,
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"3b": {
model: "granite-code-3b",
title: "Granite Code 3B",
},
"8b": {
model: "granite-code-8b",
title: "Granite Code 8B",
},
"20b": {
model: "granite-code-20b",
title: "Granite Code 20B",
},
"34b": {
model: "granite-code-34b",
title: "Granite Code 34B",
},
},
},
],
},
wizardCoder: {
title: "WizardCoder",
description:
"A CodeLlama-based code generation model from WizardLM, focused on Python",
refUrl: "",
params: {
title: "WizardCoder-7b",
model: "wizardcoder-7b",
contextLength: 4096,
},
icon: "wizardlm.png",
dimensions: [
{
name: "Parameter Count",
description: "The number of parameters in the model",
options: {
"7b": {
model: "wizardcoder-7b",
title: "WizardCoder-7b",
},
"13b": {
model: "wizardcoder-13b",
title: "WizardCoder-13b",
},
"34b": {
model: "wizardcoder-34b",
title: "WizardCoder-34b",
},
},
},
],
providerOptions: ["ollama", "lmstudio", "llama.cpp", "replicate"],
isOpenSource: true,
},
phindCodeLlama: {
title: "Phind CodeLlama (34b)",
description: "A finetune of CodeLlama by Phind",
icon: "meta.png",
params: {
title: "Phind CodeLlama",
model: "phind-codellama-34b",
contextLength: 4096,
},
providerOptions: [
"ollama",
"lmstudio",
"llama.cpp",
"replicate",
"free-trial",
],
isOpenSource: true,
},
codestral: {
title: "Codestral",
description:
"Codestral is an advanced generative model created by Mistral AI, tailored for coding tasks like fill-in-the-middle and code completion.",
params: {
title: "Codestral",
model: "codestral-latest",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: true,
},
codestralMamba: {
title: "Codestral Mamba",
description: "A Mamba 2 language model specialized in code generation.",
params: {
title: "Codestral Mamba",
model: "codestral-mamba-latest",
contextLength: 256_000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: true,
},
mistral7b: {
title: "Mistral 7B",
description:
"The first dense model released by Mistral AI, perfect for experimentation, customization, and quick iteration. At the time of the release, it matched the capabilities of models up to 30B parameters.",
params: {
title: "Mistral 7B",
model: "open-mistral-7b",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: false,
},
mistral8x7b: {
title: "Mixtral 8x7B",
description:
"A sparse mixture of experts model. As such, it leverages up to 45B parameters but only uses about 12B during inference, leading to better inference throughput at the cost of more vRAM.",
params: {
title: "Mixtral 8x7B",
model: "open-mixtral-8x7b",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: false,
},
mistral8x22b: {
title: "Mistral 8x22B",
description:
"A bigger sparse mixture of experts model. As such, it leverages up to 141B parameters but only uses about 39B during inference, leading to better inference throughput at the cost of more vRAM.",
params: {
title: "Mistral 8x22B",
model: "open-mixtral-8x22b",
contextLength: 64000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: false,
},
mistralSmall: {
title: "Mistral Small",
description:
"Suitable for simple tasks that one can do in bulk (Classification, Customer Support, or Text Generation)",
params: {
title: "Mistral Small",
model: "mistral-small-latest",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
isOpenSource: false,
},
mistralLarge: {
title: "Mistral Large",
description:
"Mistral's flagship model that's ideal for complex tasks that require large reasoning capabilities or are highly specialized (Synthetic Text Generation, Code Generation, RAG, or Agents).",
params: {
title: "Mistral Large",
model: "mistral-large-latest",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral", "askSage"],
isOpenSource: false,
},
mistralNemo: {
title: "Mistral Nemo",
description:
"Mistral Nemo Instruct is a large language model developed by Mistral AI and NVIDIA.",
params: {
title: "Mistral Nemo",
model: "mistral-nemo",
contextLength: 128_000,
},
icon: "mistral.png",
isOpenSource: true,
},
geminiPro: {
title: "Gemini Pro",
description: "A highly capable model created by Google DeepMind",
params: {
title: "Gemini Pro",
model: "gemini-pro",
contextLength: 32_000,
apiKey: "<API_KEY>",
},
icon: "gemini.png",
providerOptions: ["gemini"],
isOpenSource: false,
},
gemini15Pro: {
title: "Gemini 1.5 Pro",
description: "A newer Gemini model with 1M token context length",
params: {
title: "Gemini 1.5 Pro",
model: "gemini-1.5-pro-latest",
contextLength: 2_000_000,
apiKey: "<API_KEY>",
},
icon: "gemini.png",
providerOptions: ["gemini", "free-trial", "askSage"],
isOpenSource: false,
},
gemini15Flash: {
title: "Gemini 1.5 Flash",
description:
"Fast and versatile multimodal model for scaling across diverse tasks",
params: {
title: "Gemini 1.5 Flash",
model: "gemini-1.5-flash-latest",
contextLength: 1_000_000,
apiKey: "<API_KEY>",
},
icon: "gemini.png",
providerOptions: ["gemini"],
isOpenSource: false,
},
commandR: {
title: "Command R",
description:
"Command R is a scalable generative model targeting RAG and Tool Use to enable production-scale AI for enterprise.",
params: {
model: "command-r",
contextLength: 128_000,
title: "Command R",
apiKey: "",
},
providerOptions: ["cohere"],
icon: "cohere.png",
isOpenSource: false,
},
commandRPlus: {
title: "Command R+",
description:
"Command R+ is a state-of-the-art RAG-optimized model designed to tackle enterprise-grade workloads",
params: {
model: "command-r-plus",
contextLength: 128_000,
title: "Command R+",
apiKey: "",
},
providerOptions: ["cohere"],
icon: "cohere.png",
isOpenSource: false,
},
gpt4turbo: {
title: "GPT-4 Turbo",
description:
"A faster and more capable version of GPT-4 with longer context length and image support",
params: {
model: "gpt-4-turbo",
contextLength: 128_000,
title: "GPT-4 Turbo",
},
providerOptions: ["openai"],
icon: "openai.png",
isOpenSource: false,
},
gpt4o: {
title: "GPT-4o",
description:
"An even faster version of GPT-4 with stronger multi-modal capabilities.",
params: {
model: "gpt-4o",
contextLength: 128_000,
title: "GPT-4o",
systemMessage:
"You are an expert software developer. You give helpful and concise responses.",
},
providerOptions: ["openai", "free-trial", "askSage"],
icon: "openai.png",
isOpenSource: false,
},
gpt4omini: {
title: "GPT-4o Mini",
description:
"A model at less than half the price of gpt-3.5-turbo, but near gpt-4 in capabilities.",
params: {
model: "gpt-4o-mini",
contextLength: 128_000,
title: "GPT-4o mini",
systemMessage:
"You are an expert software developer. You give helpful and concise responses.",
},
providerOptions: ["openai", "askSage"],
icon: "openai.png",
isOpenSource: false,
},
gpt35turbo: {
title: "GPT-3.5-Turbo",
description:
"A faster, cheaper OpenAI model with slightly lower capabilities",
params: {
model: "gpt-3.5-turbo",
contextLength: 8096,
title: "GPT-3.5-Turbo",
},
providerOptions: ["openai", "free-trial", "askSage"],
icon: "openai.png",
isOpenSource: false,
},
claude35Sonnet: {
title: "Claude 3.5 Sonnet",
description:
"Anthropic's most intelligent model, but much less expensive than Claude 3 Opus",
params: {
model: "claude-3-5-sonnet-latest",
contextLength: 200_000,
title: "Claude 3.5 Sonnet",
apiKey: "",
},
providerOptions: ["anthropic", "free-trial", "askSage"],
icon: "anthropic.png",
isOpenSource: false,
},
claude3Opus: {
title: "Claude 3 Opus",
description:
"The most capable model in the Claude 3 series, beating GPT-4 on many benchmarks",
params: {
model: "claude-3-opus-20240229",
contextLength: 200_000,
title: "Claude 3 Opus",
apiKey: "",
},
providerOptions: ["anthropic", "askSage"],
icon: "anthropic.png",
isOpenSource: false,
},
claude3Sonnet: {
title: "Claude 3 Sonnet",
description:
"The second most capable model in the Claude 3 series: ideal balance of intelligence and speed",
params: {
model: "claude-3-sonnet-20240229",
contextLength: 200_000,
title: "Claude 3 Sonnet",
apiKey: "",
},
providerOptions: ["anthropic", "free-trial", "askSage"],
icon: "anthropic.png",
isOpenSource: false,
},
claude3Haiku: {
title: "Claude 3 Haiku",
description:
"The third most capable model in the Claude 3 series: fastest and most compact model for near-instant responsiveness",
params: {
model: "claude-3-haiku-20240307",
contextLength: 200_000,
title: "Claude 3 Haiku",
apiKey: "",
},
providerOptions: ["anthropic", "free-trial"],
icon: "anthropic.png",
isOpenSource: false,
},
graniteChat: {
title: "Granite Chat 13b",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-13b-chat-v2",
contextLength: 8_000,
title: "Granite Chat 13b",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},
graniteCode3b: {
title: "Granite Code 3b",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-3b-code-instruct",
contextLength: 2_000,
title: "Granite Code 3b",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},
graniteCode8b: {
title: "Granite Code 8b",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-8b-code-instruct",
contextLength: 4_000,
title: "Granite Code 8b",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},
graniteCode20b: {
title: "Granite Code 20b",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-20b-code-instruct",
contextLength: 8_000,
title: "Granite Code 20b",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},
graniteCode34b: {
title: "Granite Code 34b",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-34b-code-instruct",
contextLength: 8_000,
title: "Granite Code 34b",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},
granite3Instruct8b: {
title: "Granite 3.0 8b Instruct",
description:
"The Granite model series is a family of IBM-trained, dense decoder-only models, which are particularly well-suited for generative tasks.",
params: {
model: "ibm/granite-3-8b-instruct",
contextLength: 8_000,
title: "Granite 3.0 8b Instruct",
},
providerOptions: ["watsonx"],
icon: "WatsonX.png",
isOpenSource: false,
},