Add support for Alibaba Cloud Bailian Coding Plan, a coding-focused AI service that provides fixed monthly pricing for multiple models. Changes: - Add alicloud provider with OpenAI-compatible API endpoint - Support 8 models: qwen3.5-plus, kimi-k2.5, glm-5, MiniMax-M2.5, qwen3-max, qwen3-coder-next, qwen3-coder-plus, glm-4.7 - Use "ali" as provider alias (ali/model format) - Add API key validation and connection testing - Add frontend provider definition with "ALi" text icon Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
import pkg from "../../../package.json" with { type: "json" };
|
|
|
|
// App configuration
|
|
export const APP_CONFIG = {
|
|
name: "Endpoint Proxy",
|
|
description: "AI Infrastructure Management",
|
|
version: pkg.version,
|
|
};
|
|
|
|
// Theme configuration
|
|
export const THEME_CONFIG = {
|
|
storageKey: "theme",
|
|
defaultTheme: "system", // "light" | "dark" | "system"
|
|
};
|
|
|
|
// Subscription
|
|
export const SUBSCRIPTION_CONFIG = {
|
|
price: 1.0,
|
|
currency: "USD",
|
|
interval: "month",
|
|
planName: "Pro Plan",
|
|
};
|
|
|
|
// API endpoints
|
|
export const API_ENDPOINTS = {
|
|
users: "/api/users",
|
|
providers: "/api/providers",
|
|
payments: "/api/payments",
|
|
auth: "/api/auth",
|
|
};
|
|
|
|
// Provider API endpoints (for display only)
|
|
export const PROVIDER_ENDPOINTS = {
|
|
openrouter: "https://openrouter.ai/api/v1/chat/completions",
|
|
glm: "https://api.z.ai/api/anthropic/v1/messages",
|
|
"glm-cn": "https://open.bigmodel.cn/api/coding/paas/v4/chat/completions",
|
|
kimi: "https://api.kimi.com/coding/v1/messages",
|
|
minimax: "https://api.minimax.io/anthropic/v1/messages",
|
|
"minimax-cn": "https://api.minimaxi.com/anthropic/v1/messages",
|
|
alicloud: "https://coding.dashscope.aliyuncs.com/v1/chat/completions",
|
|
openai: "https://api.openai.com/v1/chat/completions",
|
|
anthropic: "https://api.anthropic.com/v1/messages",
|
|
gemini: "https://generativelanguage.googleapis.com/v1beta/models",
|
|
};
|
|
|
|
// Re-export from providers.js for backward compatibility
|
|
export {
|
|
FREE_PROVIDERS,
|
|
OAUTH_PROVIDERS,
|
|
APIKEY_PROVIDERS,
|
|
AI_PROVIDERS,
|
|
AUTH_METHODS,
|
|
} from "./providers.js";
|
|
|
|
// Re-export from models.js for backward compatibility
|
|
export {
|
|
PROVIDER_MODELS,
|
|
AI_MODELS,
|
|
} from "./models.js";
|