Release / update-version (push) Has been cancelled
Release / build-frontend (push) Has been cancelled
Release / release (push) Has been cancelled
Release / sync-version-file (push) Has been cancelled
CI / shell (push) Canceled after 0s
CI / test (push) Canceled after 0s
CI / frontend (push) Canceled after 0s
CI / golangci-lint (push) Canceled after 0s
Security Scan / backend-security (push) Canceled after 0s
Security Scan / frontend-security (push) Canceled after 0s
184 lines
8.2 KiB
Go
184 lines
8.2 KiB
Go
package domain
|
||
|
||
// Status constants
|
||
const (
|
||
StatusActive = "active"
|
||
StatusDisabled = "disabled"
|
||
StatusError = "error"
|
||
StatusUnused = "unused"
|
||
StatusUsed = "used"
|
||
StatusExpired = "expired"
|
||
)
|
||
|
||
// Role constants
|
||
const (
|
||
RoleAdmin = "admin"
|
||
RoleUser = "user"
|
||
)
|
||
|
||
// Platform constants
|
||
const (
|
||
PlatformAnthropic = "anthropic"
|
||
PlatformOpenAI = "openai"
|
||
PlatformGemini = "gemini"
|
||
PlatformAntigravity = "antigravity"
|
||
PlatformGrok = "grok"
|
||
// 国产 OpenAI 兼容供应商(经 OpenAI 网关转发,按 Chat Completions 协议)。
|
||
PlatformKimi = "kimi" // Kimi (月之暗面 / Moonshot)
|
||
PlatformZhipu = "zhipu" // 智谱 GLM (bigmodel)
|
||
PlatformDeepseek = "deepseek" // DeepSeek
|
||
PlatformComposite = "composite"
|
||
)
|
||
|
||
// Account mode constants 区分国产供应商的「按量付费(余额)」与「Coding Plan」两种接入方式。
|
||
// 存储于 credentials["account_mode"],决定 base_url 预设与额度监控方式。
|
||
const (
|
||
AccountModePayG = "payg" // 按量付费:消耗余额,做余额检测冷却
|
||
AccountModeCoding = "coding" // Coding Plan:滚动用量窗口冷却(5h / weekly)
|
||
)
|
||
|
||
// API protocol constants 国产供应商的上游 API 协议维度。存储于
|
||
// credentials["api_protocol"],与 account_mode 正交:协议决定转发端点与格式,
|
||
// 模式决定额度监控方式。同协议请求零转换直通;跨协议组合才走转换链。
|
||
const (
|
||
APIProtocolChatCompletions = "chat_completions" // OpenAI Chat Completions(默认)
|
||
APIProtocolAnthropic = "anthropic" // 原生 Anthropic /v1/messages(适配 Claude Code)
|
||
APIProtocolResponses = "responses" // OpenAI Responses(仅 deepseek,适配 Codex)
|
||
APIProtocolAdaptive = "adaptive" // 按入站协议优先选择供应商原生端点
|
||
)
|
||
|
||
// Account type constants
|
||
const (
|
||
AccountTypeOAuth = "oauth" // OAuth类型账号(full scope: profile + inference)
|
||
AccountTypeSetupToken = "setup-token" // Setup Token类型账号(inference only scope)
|
||
AccountTypeAPIKey = "apikey" // API Key类型账号
|
||
AccountTypeUpstream = "upstream" // 上游透传类型账号(通过 Base URL + API Key 连接上游)
|
||
AccountTypeBedrock = "bedrock" // AWS Bedrock 类型账号(通过 SigV4 签名或 API Key 连接 Bedrock,由 credentials.auth_mode 区分)
|
||
AccountTypeServiceAccount = "service_account" // Google Service Account 类型账号(用于 Vertex AI)
|
||
)
|
||
|
||
// Redeem type constants
|
||
const (
|
||
RedeemTypeBalance = "balance"
|
||
RedeemTypeConcurrency = "concurrency"
|
||
RedeemTypeSubscription = "subscription"
|
||
RedeemTypeInvitation = "invitation"
|
||
)
|
||
|
||
// PromoCode status constants
|
||
const (
|
||
PromoCodeStatusActive = "active"
|
||
PromoCodeStatusDisabled = "disabled"
|
||
)
|
||
|
||
// Admin adjustment type constants
|
||
const (
|
||
AdjustmentTypeAdminBalance = "admin_balance" // 管理员调整余额
|
||
AdjustmentTypeAdminConcurrency = "admin_concurrency" // 管理员调整并发数
|
||
)
|
||
|
||
// Group subscription type constants
|
||
const (
|
||
SubscriptionTypeStandard = "standard" // 标准计费模式(按余额扣费)
|
||
SubscriptionTypeSubscription = "subscription" // 订阅模式(按限额控制)
|
||
)
|
||
|
||
// Subscription status constants
|
||
const (
|
||
SubscriptionStatusActive = "active"
|
||
SubscriptionStatusExpired = "expired"
|
||
SubscriptionStatusSuspended = "suspended"
|
||
)
|
||
|
||
// AntigravityGemini31ProAgentModel is the upstream route for Gemini 3.1 Pro High.
|
||
const AntigravityGemini31ProAgentModel = "gemini-pro-agent"
|
||
|
||
// DefaultAntigravityModelMapping 是 Antigravity 平台的默认模型映射
|
||
// 当账号未配置 model_mapping 时使用此默认值
|
||
// 与前端 useModelWhitelist.ts 中的 antigravityDefaultMappings 保持一致
|
||
var DefaultAntigravityModelMapping = map[string]string{
|
||
// Claude 白名单
|
||
"claude-fable-5": "claude-fable-5", // 官方模型
|
||
"claude-opus-4-8": "claude-opus-4-8", // 官方模型
|
||
"claude-opus-4-7": "claude-opus-4-7", // 官方模型
|
||
"claude-opus-4-6-thinking": "claude-opus-4-6-thinking", // 官方模型
|
||
"claude-opus-4-6": "claude-opus-4-6-thinking", // 简称映射
|
||
"claude-opus-4-5-thinking": "claude-opus-4-6-thinking", // 迁移旧模型
|
||
"claude-sonnet-4-6": "claude-sonnet-4-6",
|
||
"claude-sonnet-4-5": "claude-sonnet-4-5",
|
||
"claude-sonnet-4-5-thinking": "claude-sonnet-4-5-thinking",
|
||
// Claude 详细版本 ID 映射
|
||
"claude-opus-4-5-20251101": "claude-opus-4-6-thinking", // 迁移旧模型
|
||
"claude-sonnet-4-5-20250929": "claude-sonnet-4-5",
|
||
// Claude Haiku → Sonnet(无 Haiku 支持)
|
||
"claude-haiku-4-5": "claude-sonnet-4-6",
|
||
"claude-haiku-4-5-20251001": "claude-sonnet-4-6",
|
||
// Gemini 2.5 白名单
|
||
"gemini-2.5-flash": "gemini-2.5-flash",
|
||
"gemini-2.5-flash-image": "gemini-2.5-flash-image",
|
||
"gemini-2.5-flash-image-preview": "gemini-2.5-flash-image",
|
||
"gemini-2.5-flash-lite": "gemini-2.5-flash-lite",
|
||
"gemini-2.5-flash-thinking": "gemini-2.5-flash-thinking",
|
||
"gemini-2.5-pro": "gemini-2.5-pro",
|
||
// Gemini 3 白名单
|
||
"gemini-3-flash": "gemini-3-flash",
|
||
"gemini-3-pro-high": "gemini-3-pro-high",
|
||
"gemini-3-pro-low": "gemini-3-pro-low",
|
||
// Gemini 3 preview 映射
|
||
"gemini-3-flash-preview": "gemini-3-flash",
|
||
"gemini-3-pro-preview": "gemini-3-pro-high",
|
||
// Gemini 3.1 白名单
|
||
AntigravityGemini31ProAgentModel: AntigravityGemini31ProAgentModel,
|
||
"gemini-3.1-pro": AntigravityGemini31ProAgentModel,
|
||
"gemini-3.1-pro-high": AntigravityGemini31ProAgentModel,
|
||
"gemini-3.1-pro-low": "gemini-3.1-pro-low",
|
||
// Gemini 3.1 preview 映射
|
||
"gemini-3.1-pro-preview": AntigravityGemini31ProAgentModel,
|
||
// Gemini 3.1 image 白名单
|
||
"gemini-3.1-flash-image": "gemini-3.1-flash-image",
|
||
// Gemini 3.1 image preview 映射
|
||
"gemini-3.1-flash-image-preview": "gemini-3.1-flash-image",
|
||
// Gemini 3.6 Flash tiered models
|
||
"gemini-3.6-flash": "gemini-3.6-flash",
|
||
"gemini-3.6-flash-high": "gemini-3.6-flash-high",
|
||
"gemini-3.6-flash-low": "gemini-3.6-flash-low",
|
||
"gemini-3.6-flash-medium": "gemini-3.6-flash-medium",
|
||
"gemini-3.6-flash-tiered": "gemini-3.6-flash-tiered",
|
||
// Gemini 3 image 兼容映射(向 3.1 image 迁移)
|
||
"gemini-3-pro-image": "gemini-3.1-flash-image",
|
||
"gemini-3-pro-image-preview": "gemini-3.1-flash-image",
|
||
// 其他官方模型
|
||
"gpt-oss-120b-medium": "gpt-oss-120b-medium",
|
||
"tab_flash_lite_preview": "tab_flash_lite_preview",
|
||
}
|
||
|
||
// DefaultBedrockModelMapping 是 AWS Bedrock 平台的默认模型映射
|
||
// 将 Anthropic 标准模型名映射到 Bedrock 模型 ID
|
||
// 注意:此处的 "us." 前缀仅为默认值,ResolveBedrockModelID 会根据账号配置的
|
||
// aws_region 自动调整为匹配的区域前缀(如 eu.、apac.、jp. 等)
|
||
var DefaultBedrockModelMapping = map[string]string{
|
||
// Claude Fable
|
||
"claude-fable-5": "anthropic.claude-fable-5",
|
||
// Claude Opus
|
||
"claude-opus-5": "us.anthropic.claude-opus-5-v1",
|
||
"claude-opus-4-8": "us.anthropic.claude-opus-4-8-v1",
|
||
"claude-opus-4-7": "us.anthropic.claude-opus-4-7-v1",
|
||
"claude-opus-4-6-thinking": "us.anthropic.claude-opus-4-6-v1",
|
||
"claude-opus-4-6": "us.anthropic.claude-opus-4-6-v1",
|
||
"claude-opus-4-5-thinking": "us.anthropic.claude-opus-4-5-20251101-v1:0",
|
||
"claude-opus-4-5-20251101": "us.anthropic.claude-opus-4-5-20251101-v1:0",
|
||
"claude-opus-4-1": "us.anthropic.claude-opus-4-1-20250805-v1:0",
|
||
"claude-opus-4-20250514": "us.anthropic.claude-opus-4-20250514-v1:0",
|
||
// Claude Sonnet
|
||
"claude-sonnet-5": "us.anthropic.claude-sonnet-5-v1",
|
||
"claude-sonnet-4-6-thinking": "us.anthropic.claude-sonnet-4-6",
|
||
"claude-sonnet-4-6": "us.anthropic.claude-sonnet-4-6",
|
||
"claude-sonnet-4-5": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
||
"claude-sonnet-4-5-thinking": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
||
"claude-sonnet-4-5-20250929": "us.anthropic.claude-sonnet-4-5-20250929-v1:0",
|
||
"claude-sonnet-4-20250514": "us.anthropic.claude-sonnet-4-20250514-v1:0",
|
||
// Claude Haiku
|
||
"claude-haiku-4-5": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
|
||
"claude-haiku-4-5-20251001": "us.anthropic.claude-haiku-4-5-20251001-v1:0",
|
||
}
|