feat(presets): add RelaxyCode provider presets

Add RelaxyCode as a new third-party provider with support for:
- Claude Code preset (Anthropic native protocol)
- Codex preset (gpt-5.5 model)
- Claude Desktop preset (direct mode with passthrough routes)

RelaxyCode is an enterprise-grade AI programming platform providing
unified access to Claude Code, Codex, and Gemini CLI models.
This commit is contained in:
Jason
2026-05-15 17:38:26 +08:00
parent 18ffddbfa5
commit 3fd38b0a3d
3 changed files with 37 additions and 0 deletions
@@ -555,6 +555,17 @@ export const claudeDesktopProviderPresets: ClaudeDesktopProviderPreset[] = [
partnerPromotionKey: "runapi",
icon: "runapi",
},
{
name: "RelaxyCode",
websiteUrl: "https://www.relaxycode.com",
apiKeyUrl: "https://www.relaxycode.com/register",
category: "third_party",
baseUrl: "https://www.relaxycode.com",
mode: "direct",
apiFormat: "anthropic",
modelRoutes: passthroughRoutes(),
icon: "claude",
},
{
name: "Cubence",
websiteUrl: "https://cubence.com",
+13
View File
@@ -600,6 +600,19 @@ export const providerPresets: ProviderPreset[] = [
partnerPromotionKey: "runapi",
icon: "runapi",
},
{
name: "RelaxyCode",
websiteUrl: "https://www.relaxycode.com",
apiKeyUrl: "https://www.relaxycode.com/register",
settingsConfig: {
env: {
ANTHROPIC_BASE_URL: "https://www.relaxycode.com",
ANTHROPIC_AUTH_TOKEN: "",
},
},
category: "third_party",
icon: "claude",
},
{
name: "Cubence",
websiteUrl: "https://cubence.com",
+13
View File
@@ -216,6 +216,19 @@ requires_openai_auth = true`,
partnerPromotionKey: "runapi",
icon: "runapi",
},
{
name: "RelaxyCode",
websiteUrl: "https://www.relaxycode.com",
apiKeyUrl: "https://www.relaxycode.com/register",
category: "third_party",
auth: generateThirdPartyAuth(""),
config: generateThirdPartyConfig(
"relaxycode",
"https://www.relaxycode.com/v1",
"gpt-5.5",
),
icon: "claude",
},
{
name: "Cubence",
websiteUrl: "https://cubence.com",