-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstants.ts
77 lines (74 loc) · 2.17 KB
/
constants.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
/**
* Defines the types of providers available in the application.
* These types are used to categorize different functionalities.
*/
export const PROVIDER_TYPES = ["chat", "completion"] as const;
/**
* Defines the models that are allowed to be used for completions.
* Each model has a regex pattern to match the model name, a context window size,
* a type, and a tokenizer URL.
*/
export const ALLOWED_COMPLETION_MODELS = [
{
regex: "^gpt-3.5-turbo-.*instruct",
contextWindow: 4000,
tokenizerUrl:
"https://cdn.jsdelivr.net/gh/flexpilot-ai/vscode-extension/tokenizers/cl100k_base.json",
},
{
regex: "^codestral-(?!.*mamba)",
contextWindow: 31500,
tokenizerUrl:
"https://cdn.jsdelivr.net/gh/flexpilot-ai/vscode-extension/tokenizers/codestral-v0.1.json",
},
{
regex: "^gpt-35-turbo-.*instruct",
contextWindow: 4000,
tokenizerUrl:
"https://cdn.jsdelivr.net/gh/flexpilot-ai/vscode-extension/tokenizers/cl100k_base.json",
},
{
regex: "Qwen/Qwen2.5-Coder-32B-Instruct",
contextWindow: 31500,
tokenizerUrl:
"https://cdn.jsdelivr.net/gh/flexpilot-ai/vscode-extension/tokenizers/cl100k_base.json",
},
];
/**
* Defines the various locations or contexts where AI assistance is provided.
* Each location has a name, description, and associated provider type.
*/
export const LOCATIONS = [
{
name: "Chat Suggestions",
description: "Suggestions that appear in the panel chat",
type: "chat",
},
{
name: "Chat Title",
description: "Dynamically generated title for the chat",
type: "chat",
},
{
name: "Inline Chat",
description: "Chat used inline inside an active file",
type: "chat",
},
{
name: "Panel Chat",
description: "Chat that appears on the panel on the side",
type: "chat",
},
{
name: "Commit Message",
description: "Used to generate commit messages for source control",
type: "chat",
},
{
name: "Inline Completion",
description: "Completion suggestions in the active file",
type: "completion",
},
] as const;
// Note: The 'as const' assertion ensures that the array is read-only
// and its contents are treated as literal types.