forked from continuedev/continue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
modelData.ts
1106 lines (1063 loc) · 31.3 KB
/
modelData.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
/*
This is the data that populates the model selection page.
*/
import { ModelName, ModelProvider } from "core";
import _ from "lodash";
import { ftl } from "../components/dialogs/FTCDialog";
export function updatedObj(old: any, pathToValue: { [key: string]: any }) {
const newObject = _.cloneDeep(old);
for (const key in pathToValue) {
if (typeof pathToValue[key] === "function") {
_.updateWith(newObject, key, pathToValue[key]);
} else {
_.updateWith(newObject, key, (__) => pathToValue[key]);
}
}
return newObject;
}
export enum ModelProviderTag {
"Requires API Key" = "Requires API Key",
"Local" = "Local",
"Free" = "Free",
"Open-Source" = "Open-Source",
}
export const MODEL_PROVIDER_TAG_COLORS: any = {};
MODEL_PROVIDER_TAG_COLORS[ModelProviderTag["Requires API Key"]] = "#FF0000";
MODEL_PROVIDER_TAG_COLORS[ModelProviderTag["Local"]] = "#00bb00";
MODEL_PROVIDER_TAG_COLORS[ModelProviderTag["Open-Source"]] = "#0033FF";
MODEL_PROVIDER_TAG_COLORS[ModelProviderTag["Free"]] = "#ffff00";
export enum CollectInputType {
"text" = "text",
"number" = "number",
"range" = "range",
}
export interface InputDescriptor {
inputType: CollectInputType;
key: string;
label: string;
placeholder?: string;
defaultValue?: string | number;
min?: number;
max?: number;
step?: number;
options?: string[];
required?: boolean;
description?: string;
[key: string]: any;
}
const contextLengthInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "contextLength",
label: "Context Length",
defaultValue: undefined,
required: false,
};
const temperatureInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "completionOptions.temperature",
label: "Temperature",
defaultValue: undefined,
required: false,
min: 0.0,
max: 1.0,
step: 0.01,
};
const topPInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "completionOptions.topP",
label: "Top-P",
defaultValue: undefined,
required: false,
min: 0,
max: 1,
step: 0.01,
};
const topKInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "completionOptions.topK",
label: "Top-K",
defaultValue: undefined,
required: false,
min: 0,
step: 1,
};
const presencePenaltyInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "completionOptions.presencePenalty",
label: "Presence Penalty",
defaultValue: undefined,
required: false,
min: 0,
max: 1,
step: 0.01,
};
const FrequencyPenaltyInput: InputDescriptor = {
inputType: CollectInputType.number,
key: "completionOptions.frequencyPenalty",
label: "Frequency Penalty",
defaultValue: undefined,
required: false,
min: 0,
max: 1,
step: 0.01,
};
const completionParamsInputs = [
contextLengthInput,
temperatureInput,
topKInput,
topPInput,
presencePenaltyInput,
FrequencyPenaltyInput,
];
const apiBaseInput: InputDescriptor = {
inputType: CollectInputType.text,
key: "apiBase",
label: "API Base",
placeholder: "e.g. http://localhost:8080",
required: false,
};
export interface DisplayInfo {
title: string;
icon?: string;
}
export interface ModelInfo extends DisplayInfo {
provider: ModelProvider;
description: string;
longDescription?: string;
tags?: ModelProviderTag[];
packages: ModelPackage[];
params?: any;
collectInputFor?: InputDescriptor[];
refPage?: string;
apiKeyUrl?: string;
downloadUrl?: string;
}
// 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 extends DisplayInfo {
collectInputFor?: InputDescriptor[];
description: string;
refUrl?: string;
tags?: ModelProviderTag[];
params: {
model: ModelName;
templateMessages?: string;
contextLength: number;
stopTokens?: string[];
promptTemplates?: any;
replace?: [string, string][];
[key: string]: any;
};
dimensions?: PackageDimension[];
providerOptions?: string[];
}
const codeLlamaInstruct: ModelPackage = {
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", "llamacpp", "replicate"],
};
const codellama70bTrial: ModelPackage = {
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: ["freetrial"],
};
const mixtralTrial: ModelPackage = {
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: ["freetrial", "groq"],
};
const llama38bChat: ModelPackage = {
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"],
};
const llama370bChat: ModelPackage = {
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"],
};
const llama270bChat: ModelPackage = {
title: "Llama2 70b Chat",
description: "The latest Llama model from Meta, fine-tuned for chat",
refUrl: "",
params: {
title: "Llama2-70b",
model: "llama2-70b",
contextLength: 4096,
},
icon: "meta.png",
providerOptions: ["groq"],
};
const llama3Chat: ModelPackage = {
title: "Llama3 Chat",
description: "The latest 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", "llamacpp", "replicate"],
};
const wizardCoder: ModelPackage = {
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", "llamacpp", "replicate"],
};
const phindCodeLlama: ModelPackage = {
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", "llamacpp", "replicate", "freetrial"],
};
const mistralOs: ModelPackage = {
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",
},
},
},
],
icon: "mistral.png",
providerOptions: ["ollama", "lmstudio", "together", "llamacpp", "replicate"],
};
const codestral: ModelPackage = {
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. Trained on more than 80 programming languages, Codestral demonstrates proficiency in both widely-used and less-common languages.",
params: {
title: "Codestral",
model: "codestral-latest",
contextLength: 32000,
},
icon: "mistral.png",
providerOptions: ["mistral"],
};
const mistral7b: ModelPackage = {
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"],
};
const mistral8x7b: ModelPackage = {
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"],
};
const mistral8x22b: ModelPackage = {
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"],
};
const mistralSmall: ModelPackage = {
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"],
};
const mistralLarge: ModelPackage = {
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"],
};
const geminiPro: ModelPackage = {
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"],
};
const gemini15Pro: ModelPackage = {
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: 1_000_000,
apiKey: "<API_KEY>",
},
icon: "gemini.png",
providerOptions: ["gemini", "freetrial"],
};
const gemini15Flash: ModelPackage = {
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"],
};
const deepseek: ModelPackage = {
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", "llamacpp"],
};
const commandR: ModelPackage = {
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",
};
const commandRPlus: ModelPackage = {
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",
};
const osModels = [
llama3Chat,
deepseek,
wizardCoder,
codeLlamaInstruct,
mistralOs,
phindCodeLlama,
];
const gpt4: ModelPackage = {
title: "GPT-4",
description: "The most powerful model from OpenAI",
params: {
model: "gpt-4",
contextLength: 8096,
title: "GPT-4",
},
providerOptions: ["openai", "freetrial"],
icon: "openai.png",
};
const gpt4turbo: ModelPackage = {
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",
};
const gpt4o: ModelPackage = {
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", "freetrial"],
icon: "openai.png",
};
const gpt35turbo: ModelPackage = {
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", "freetrial"],
icon: "openai.png",
};
const claude2: ModelPackage = {
title: "Claude 2",
description: "A highly capable model with a 100k context length",
params: {
model: "claude-2.1",
contextLength: 100_000,
title: "Claude 2",
apiKey: "",
},
providerOptions: ["anthropic"],
icon: "anthropic.png",
};
const claude3Opus: ModelPackage = {
title: "Claude 3 Opus",
description:
"Anthropic's most capable model, beating GPT-4 on many benchmarks",
params: {
model: "claude-3-opus-20240229",
contextLength: 200_000,
title: "Claude 3 Opus",
apiKey: "",
},
providerOptions: ["anthropic"],
icon: "anthropic.png",
};
const claude3Sonnet: ModelPackage = {
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", "freetrial"],
icon: "anthropic.png",
};
const claude3Haiku: ModelPackage = {
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", "freetrial"],
icon: "anthropic.png",
};
const AUTODETECT: ModelPackage = {
title: "Autodetect",
description:
"Automatically populate the model list by calling the /models endpoint of the server",
params: {
model: "AUTODETECT",
} as any,
providerOptions: [],
};
export const MODEL_INFO: (ModelPackage | string)[] = [
"OpenAI",
gpt4o,
gpt4turbo,
gpt35turbo,
"Anthropic",
claude3Opus,
claude3Sonnet,
claude3Haiku,
"Mistral",
codestral,
mistralLarge,
mistralSmall,
mistral8x22b,
mistral8x7b,
mistral7b,
"Cohere",
commandR,
commandRPlus,
"Gemini",
gemini15Pro,
geminiPro,
gemini15Flash,
"Open Source",
mistralOs,
llama3Chat,
deepseek,
// wizardCoder,
// codeLlamaInstruct,
// phindCodeLlama,
];
export const PROVIDER_INFO: { [key: string]: ModelInfo } = {
openai: {
title: "OpenAI",
provider: "openai",
description: "Use gpt-4, gpt-3.5-turbo, or any other OpenAI model",
longDescription:
"Use gpt-4, gpt-3.5-turbo, or any other OpenAI model. See [here](https://openai.com/product#made-for-developers) to obtain an API key.",
icon: "openai.png",
tags: [ModelProviderTag["Requires API Key"]],
packages: [
gpt4o,
gpt4turbo,
gpt35turbo,
// gpt4,
{
...AUTODETECT,
params: {
...AUTODETECT.params,
title: "OpenAI",
},
},
],
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your OpenAI API key",
required: true,
},
...completionParamsInputs,
],
apiKeyUrl: "https://platform.openai.com/account/api-keys",
},
anthropic: {
title: "Anthropic",
provider: "anthropic",
refPage: "anthropicllm",
description:
"Anthropic builds state-of-the-art models with large context length and high recall",
icon: "anthropic.png",
tags: [ModelProviderTag["Requires API Key"]],
longDescription:
"To get started with Anthropic models, you first need to sign up for the open beta [here](https://claude.ai/login) to obtain an API key.",
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Anthropic API key",
required: true,
},
...completionParamsInputs,
{
...contextLengthInput,
defaultValue: 100_000,
},
],
packages: [
claude3Opus,
claude3Sonnet,
claude3Haiku,
// claude2
],
apiKeyUrl: "https://console.anthropic.com/account/keys",
},
mistral: {
title: "Mistral API",
provider: "mistral",
description:
"The Mistral API provides seamless access to their models, including Codestral, Mistral 8x22B, Mistral Large, and more.",
icon: "mistral.png",
longDescription: `To get access to the Mistral API, obtain your API key from [here](https://console.mistral.ai/codestral) for Codestral or the [Mistral platform](https://docs.mistral.ai/) for all other models.`,
tags: [
ModelProviderTag["Requires API Key"],
ModelProviderTag["Open-Source"],
],
params: {
apiKey: "",
},
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Mistral API key",
required: true,
},
...completionParamsInputs,
],
packages: [
codestral,
mistralLarge,
mistralSmall,
mistral8x22b,
mistral8x7b,
mistral7b,
],
apiKeyUrl: "https://console.mistral.ai/codestral",
},
ollama: {
title: "Ollama",
provider: "ollama",
description:
"One of the fastest ways to get started with local models on Mac, Linux, or Windows",
longDescription:
'To get started with Ollama, follow these steps:\n1. Download from [ollama.ai](https://ollama.ai/) and open the application\n2. Open a terminal and run `ollama run <MODEL_NAME>`. Example model names are `codellama:7b-instruct` or `llama2:7b-text`. You can find the full list [here](https://ollama.ai/library).\n3. Make sure that the model name used in step 2 is the same as the one in config.json (e.g. `model="codellama:7b-instruct"`)\n4. Once the model has finished downloading, you can start asking questions through Continue.',
icon: "ollama.png",
tags: [ModelProviderTag["Local"], ModelProviderTag["Open-Source"]],
packages: [
{
...AUTODETECT,
params: {
...AUTODETECT.params,
title: "Ollama",
},
},
...osModels,
],
collectInputFor: [
...completionParamsInputs,
{ ...apiBaseInput, defaultValue: "http://localhost:11434" },
],
downloadUrl: "https://ollama.ai/",
},
cohere: {
title: "Cohere",
provider: "cohere",
refPage: "cohere",
description:
"Optimized for enterprise generative AI, search and discovery, and advanced retrieval.",
icon: "cohere.png",
tags: [ModelProviderTag["Requires API Key"]],
longDescription:
"To use Cohere, visit the [Cohere dashboard](https://dashboard.cohere.com/api-keys) to create an API key.",
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Cohere API key",
required: true,
},
...completionParamsInputs,
],
packages: [commandR, commandRPlus],
},
groq: {
title: "Groq",
provider: "groq",
icon: "groq.png",
description:
"Groq is the fastest LLM provider by a wide margin, using 'LPUs' to serve open-source models at blazing speed.",
longDescription:
"To get started with Groq, obtain an API key from their website [here](https://wow.groq.com/).",
tags: [
ModelProviderTag["Requires API Key"],
ModelProviderTag["Open-Source"],
],
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Groq API key",
required: true,
},
],
packages: [
llama370bChat,
llama38bChat,
{ ...mixtralTrial, title: "Mixtral" },
llama270bChat,
{
...AUTODETECT,
params: {
...AUTODETECT.params,
title: "Groq",
},
},
,
],
apiKeyUrl: "https://console.groq.com/keys",
},
together: {
title: "TogetherAI",
provider: "together",
refPage: "togetherllm",
description:
"Use the TogetherAI API for extremely fast streaming of open-source models",
icon: "together.png",
longDescription: `Together is a hosted service that provides extremely fast streaming of open-source language models. To get started with Together:\n1. Obtain an API key from [here](https://together.ai)\n2. Paste below\n3. Select a model preset`,
tags: [
ModelProviderTag["Requires API Key"],
ModelProviderTag["Open-Source"],
],
params: {
apiKey: "",
},
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your TogetherAI API key",
required: true,
},
...completionParamsInputs,
],
packages: [llama3Chat, codeLlamaInstruct, mistralOs].map((p) => {
p.params.contextLength = 4096;
return p;
}),
},
gemini: {
title: "Google Gemini API",
provider: "gemini",
refPage: "geminiapi",
description:
"Try out Google's state-of-the-art Gemini model from their API.",
longDescription: `To get started with Google Gemini API, obtain your API key from [here](https://ai.google.dev/tutorials/workspace_auth_quickstart) and paste it below.`,
icon: "gemini.png",
tags: [ModelProviderTag["Requires API Key"]],
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Gemini API key",
required: true,
},
],
packages: [gemini15Pro, geminiPro, gemini15Flash],
apiKeyUrl: "https://aistudio.google.com/app/apikey",
},
lmstudio: {
title: "LM Studio",
provider: "lmstudio",
description:
"One of the fastest ways to get started with local models on Mac or Windows",
longDescription:
"LMStudio provides a professional and well-designed GUI for exploring, configuring, and serving LLMs. It is available on both Mac and Windows. To get started:\n1. Download from [lmstudio.ai](https://lmstudio.ai/) and open the application\n2. Search for and download the desired model from the home screen of LMStudio.\n3. In the left-bar, click the '<->' icon to open the Local Inference Server and press 'Start Server'.\n4. Once your model is loaded and the server has started, you can begin using Continue.",
icon: "lmstudio.png",
tags: [ModelProviderTag["Local"], ModelProviderTag["Open-Source"]],
params: {
apiBase: "http://localhost:1234/v1/",
},
packages: [
{
...AUTODETECT,
params: {
...AUTODETECT.params,
title: "LM Studio",
},
},
...osModels,
],
collectInputFor: [...completionParamsInputs],
downloadUrl: "https://lmstudio.ai/",
},
llamafile: {
title: "llamafile",
provider: "llamafile",
icon: "llamafile.png",
description:
"llamafiles are a self-contained binary to run an open-source LLM",
longDescription: `To get started with llamafiles, find and download a binary on their [GitHub repo](https://github.com/Mozilla-Ocho/llamafile?tab=readme-ov-file#quickstart). Then run it with the following command:\n\n\`\`\`shell\nchmod +x ./llamafile\n./llamafile\n\`\`\``,
tags: [ModelProviderTag["Local"], ModelProviderTag["Open-Source"]],
packages: osModels,
collectInputFor: [...completionParamsInputs],
downloadUrl:
"https://github.com/Mozilla-Ocho/llamafile?tab=readme-ov-file#quickstart",
},
replicate: {
title: "Replicate",
provider: "replicate",
refPage: "replicatellm",
description: "Use the Replicate API to run open-source models",
longDescription: `Replicate is a hosted service that makes it easy to run ML models. To get started with Replicate:\n1. Obtain an API key from [here](https://replicate.com)\n2. Paste below\n3. Select a model preset`,
params: {
apiKey: "",
},
collectInputFor: [
{
inputType: CollectInputType.text,
key: "apiKey",
label: "API Key",
placeholder: "Enter your Replicate API key",
required: true,