feat(config): add MiniMax provider and update existing presets

- Add MiniMax provider for Claude with extended timeout configuration
- Update KAT-Coder URLs and model names to versioned variants (Pro V1/Air V1)
- Unify PackyCode domain from codex.packycode.com to www.packyapi.com
- Remove redundant comment in Zhipu GLM configuration
This commit is contained in:
Jason
2025-11-02 21:51:14 +08:00
parent cb83089866
commit faeca6b6ce
2 changed files with 28 additions and 11 deletions

View File

@@ -72,18 +72,18 @@ export const codexProviderPresets: CodexProviderPreset[] = [
},
{
name: "PackyCode",
websiteUrl: "https://codex.packycode.com/",
websiteUrl: "https://www.packyapi.com",
category: "third_party",
auth: generateThirdPartyAuth(""),
config: generateThirdPartyConfig(
"packycode",
"https://codex-api.packycode.com/v1",
"https://www.packyapi.com/v1",
"gpt-5-codex",
),
// Codex 请求地址候选(用于地址管理/测速)
endpointCandidates: [
"https://codex-api.packycode.com/v1",
"https://codex-api-slb.packycode.com/v1",
"https://www.packyapi.com/v1",
"https://api-slb.packyapi.com/v1",
],
},
{