- Add Anthropic orange theme styling for official preset buttons - Auto-disable API Key input field when official preset is selected - Add isOfficial field for precise official preset identification - Enhance UX: official login requires no manual API Key input
77 lines
1.9 KiB
TypeScript
77 lines
1.9 KiB
TypeScript
/**
|
|
* 预设供应商配置模板
|
|
*/
|
|
export interface ProviderPreset {
|
|
name: string;
|
|
websiteUrl: string;
|
|
settingsConfig: object;
|
|
isOfficial?: boolean; // 标识是否为官方预设
|
|
}
|
|
|
|
export const providerPresets: ProviderPreset[] = [
|
|
{
|
|
name: "Claude官方登录",
|
|
websiteUrl: "https://www.anthropic.com/claude-code",
|
|
settingsConfig: {
|
|
env: {
|
|
},
|
|
},
|
|
isOfficial: true, // 明确标识为官方预设
|
|
},
|
|
{
|
|
name: "DeepSeek v3.1",
|
|
websiteUrl: "https://platform.deepseek.com",
|
|
settingsConfig: {
|
|
env: {
|
|
ANTHROPIC_BASE_URL: "https://api.deepseek.com/anthropic",
|
|
ANTHROPIC_AUTH_TOKEN: "sk-your-api-key-here",
|
|
ANTHROPIC_MODEL: "deepseek-chat",
|
|
ANTHROPIC_SMALL_FAST_MODEL: "deepseek-chat",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "智谱GLM",
|
|
websiteUrl: "https://open.bigmodel.cn",
|
|
settingsConfig: {
|
|
env: {
|
|
ANTHROPIC_BASE_URL: "https://open.bigmodel.cn/api/anthropic",
|
|
ANTHROPIC_AUTH_TOKEN: "sk-your-api-key-here",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "千问Qwen-Coder",
|
|
websiteUrl: "https://bailian.console.aliyun.com",
|
|
settingsConfig: {
|
|
env: {
|
|
ANTHROPIC_BASE_URL:
|
|
"https://dashscope.aliyuncs.com/api/v2/apps/claude-code-proxy",
|
|
ANTHROPIC_AUTH_TOKEN: "sk-your-api-key-here",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "Kimi k2",
|
|
websiteUrl: "https://platform.moonshot.cn/console",
|
|
settingsConfig: {
|
|
env: {
|
|
ANTHROPIC_BASE_URL: "https://api.moonshot.cn/anthropic",
|
|
ANTHROPIC_AUTH_TOKEN: "sk-your-api-key-here",
|
|
ANTHROPIC_MODEL: "kimi-k2-turbo-preview",
|
|
ANTHROPIC_SMALL_FAST_MODEL: "kimi-k2-turbo-preview",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "PackyCode",
|
|
websiteUrl: "https://www.packycode.com",
|
|
settingsConfig: {
|
|
env: {
|
|
ANTHROPIC_BASE_URL: "https://api.packycode.com",
|
|
ANTHROPIC_AUTH_TOKEN: "sk-your-api-key-here",
|
|
},
|
|
},
|
|
},
|
|
];
|