drapcode-constant 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- package/build/constants/aiModel.d.ts +24 -0
- package/build/constants/aiModel.js +37 -0
- package/build/index.d.ts +1 -0
- package/build/index.js +1 -0
- package/package.json +1 -1
@@ -0,0 +1,24 @@
|
|
1
|
+
export declare const OPEN_AI = "OPEN_AI";
|
2
|
+
export declare const CLAUDE_AI = "CLAUDE_AI";
|
3
|
+
export declare const DEEPSEEK_AI = "DEEPSEEK_AI";
|
4
|
+
export declare const aiModelTypes: string[];
|
5
|
+
export declare const openAiEngines: {
|
6
|
+
GPT_4_TURBO_2024_04_09: string;
|
7
|
+
GPT_4O_2024_05_13: string;
|
8
|
+
};
|
9
|
+
export declare const claudeAiEngines: {
|
10
|
+
CLAUDE_3_OPUS: string;
|
11
|
+
CLAUDE_3_HAIKU: string;
|
12
|
+
CLAUDE_3_5_SONNET_2024_06_20: string;
|
13
|
+
CLAUDE_3_5_SONNET_2024_10_22: string;
|
14
|
+
CLAUDE_3_5_SONNET_LATEST: string;
|
15
|
+
};
|
16
|
+
export declare const deepseekAiEngines: {
|
17
|
+
DEEP_SEEK_V3: string;
|
18
|
+
DEEP_SEEK_R1: string;
|
19
|
+
};
|
20
|
+
export declare const aiModelEngines: {
|
21
|
+
label: string;
|
22
|
+
value: string;
|
23
|
+
modelType: string;
|
24
|
+
}[];
|
@@ -0,0 +1,37 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.aiModelEngines = exports.deepseekAiEngines = exports.claudeAiEngines = exports.openAiEngines = exports.aiModelTypes = exports.DEEPSEEK_AI = exports.CLAUDE_AI = exports.OPEN_AI = void 0;
|
4
|
+
exports.OPEN_AI = "OPEN_AI";
|
5
|
+
exports.CLAUDE_AI = "CLAUDE_AI";
|
6
|
+
exports.DEEPSEEK_AI = "DEEPSEEK_AI";
|
7
|
+
exports.aiModelTypes = [exports.OPEN_AI, exports.CLAUDE_AI, exports.DEEPSEEK_AI];
|
8
|
+
exports.openAiEngines = {
|
9
|
+
// GPT_4_VISION: "gpt-4-vision-preview",
|
10
|
+
GPT_4_TURBO_2024_04_09: "gpt-4-turbo-2024-04-09",
|
11
|
+
GPT_4O_2024_05_13: "gpt-4o-2024-08-06",
|
12
|
+
};
|
13
|
+
exports.claudeAiEngines = {
|
14
|
+
// CLAUDE_3_SONNET: "claude-3-sonnet-20240229",
|
15
|
+
CLAUDE_3_OPUS: "claude-3-opus-20240229",
|
16
|
+
CLAUDE_3_HAIKU: "claude-3-haiku-20240307",
|
17
|
+
CLAUDE_3_5_SONNET_2024_06_20: "claude-3-5-sonnet-20240620",
|
18
|
+
CLAUDE_3_5_SONNET_2024_10_22: "claude-3-5-sonnet-20241022",
|
19
|
+
CLAUDE_3_5_SONNET_LATEST: "claude-3-5-sonnet-latest",
|
20
|
+
};
|
21
|
+
exports.deepseekAiEngines = {
|
22
|
+
DEEP_SEEK_V3: "DeepSeek-V3",
|
23
|
+
DEEP_SEEK_R1: "DeepSeek-R1",
|
24
|
+
};
|
25
|
+
exports.aiModelEngines = [
|
26
|
+
// { label: openAiEngines.GPT_4_VISION, value: openAiEngines.GPT_4_VISION, modelType: OPEN_AI },
|
27
|
+
{ label: exports.openAiEngines.GPT_4_TURBO_2024_04_09, value: exports.openAiEngines.GPT_4_TURBO_2024_04_09, modelType: exports.OPEN_AI },
|
28
|
+
{ label: exports.openAiEngines.GPT_4O_2024_05_13, value: exports.openAiEngines.GPT_4O_2024_05_13, modelType: exports.OPEN_AI },
|
29
|
+
// { label: claudeAiEngines.CLAUDE_3_SONNET, value: claudeAiEngines.CLAUDE_3_SONNET, modelType: CLAUDE_AI },
|
30
|
+
{ label: exports.claudeAiEngines.CLAUDE_3_OPUS, value: exports.claudeAiEngines.CLAUDE_3_OPUS, modelType: exports.CLAUDE_AI },
|
31
|
+
{ label: exports.claudeAiEngines.CLAUDE_3_HAIKU, value: exports.claudeAiEngines.CLAUDE_3_HAIKU, modelType: exports.CLAUDE_AI },
|
32
|
+
{ label: exports.claudeAiEngines.CLAUDE_3_5_SONNET_2024_06_20, value: exports.claudeAiEngines.CLAUDE_3_5_SONNET_2024_06_20, modelType: exports.CLAUDE_AI },
|
33
|
+
{ label: exports.claudeAiEngines.CLAUDE_3_5_SONNET_2024_10_22, value: exports.claudeAiEngines.CLAUDE_3_5_SONNET_2024_10_22, modelType: exports.CLAUDE_AI },
|
34
|
+
{ label: exports.claudeAiEngines.CLAUDE_3_5_SONNET_LATEST, value: exports.claudeAiEngines.CLAUDE_3_5_SONNET_LATEST, modelType: exports.CLAUDE_AI },
|
35
|
+
{ label: exports.deepseekAiEngines.DEEP_SEEK_V3, value: exports.deepseekAiEngines.DEEP_SEEK_V3, modelType: exports.DEEPSEEK_AI },
|
36
|
+
{ label: exports.deepseekAiEngines.DEEP_SEEK_R1, value: exports.deepseekAiEngines.DEEP_SEEK_R1, modelType: exports.DEEPSEEK_AI },
|
37
|
+
];
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
@@ -25,3 +25,4 @@ __exportStar(require("./constants/messages"), exports);
|
|
25
25
|
__exportStar(require("./constants/loan"), exports);
|
26
26
|
__exportStar(require("./constants/exportCode"), exports);
|
27
27
|
__exportStar(require("./constants/permissions"), exports);
|
28
|
+
__exportStar(require("./constants/aiModel"), exports);
|