drapcode-constant
Version:
Drapcode Constants
27 lines (26 loc) • 773 B
TypeScript
export declare const OPEN_AI = "OPEN_AI";
export declare const CLAUDE_AI = "CLAUDE_AI";
export declare const DEEPSEEK_AI = "DEEPSEEK_AI";
export declare const aiModelTypes: string[];
export declare const openAiEngines: {
GPT_4_TURBO_2024_04_09: string;
GPT_4O_2024_05_13: string;
};
export declare const claudeAiEngines: {
CLAUDE_3_OPUS: string;
CLAUDE_3_HAIKU: string;
CLAUDE_3_5_SONNET_2024_06_20: string;
CLAUDE_3_5_SONNET_2024_10_22: string;
CLAUDE_3_5_SONNET_LATEST: string;
CLAUDE_OPUS_4_0: string;
CLAUDE_SONNET_4_0: string;
};
export declare const deepseekAiEngines: {
DEEP_SEEK_V3: string;
DEEP_SEEK_R1: string;
};
export declare const aiModelEngines: {
label: string;
value: string;
modelType: string;
}[];