chore(presets): remove LemonData provider and demote SudoCode to regular provider

- LemonData: delete the provider preset from all apps (claude, claude-desktop,
  codex, gemini, hermes, opencode, openclaw), remove partner promotion copy
  (zh/en/ja/zh-TW), icon index/metadata entries, sponsor ads in all READMEs,
  and the logo/icon PNG assets.
- SudoCode: drop the isPartner flag and partnerPromotionKey across all app
  presets and remove the now-orphaned partner promotion copy; it stays as a
  regular third_party provider, keeping its icon.
This commit is contained in:
Jason
2026-06-11 23:15:11 +08:00
parent 22ecd2d611
commit 4f355970e1
19 changed files with 0 additions and 197 deletions
@@ -689,8 +689,6 @@ export const claudeDesktopProviderPresets: ClaudeDesktopProviderPreset[] = [
apiFormat: "anthropic",
modelRoutes: passthroughRoutes(),
endpointCandidates: ["https://sudocode.us", "https://sudocode.run"],
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
},
{
@@ -970,20 +968,6 @@ export const claudeDesktopProviderPresets: ClaudeDesktopProviderPreset[] = [
icon: "novita",
iconColor: "#000000",
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
category: "third_party",
baseUrl: "https://api.lemondata.cc",
apiKeyField: "ANTHROPIC_API_KEY",
mode: "direct",
apiFormat: "anthropic",
modelRoutes: passthroughRoutes(),
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
},
{
name: "Nvidia",
websiteUrl: "https://build.nvidia.com",
-18
View File
@@ -743,8 +743,6 @@ export const providerPresets: ProviderPreset[] = [
},
endpointCandidates: ["https://sudocode.us", "https://sudocode.run"],
category: "third_party",
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
},
{
@@ -1107,22 +1105,6 @@ export const providerPresets: ProviderPreset[] = [
icon: "openai",
iconColor: "#000000",
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
apiKeyField: "ANTHROPIC_API_KEY",
settingsConfig: {
env: {
ANTHROPIC_BASE_URL: "https://api.lemondata.cc",
ANTHROPIC_API_KEY: "",
},
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
},
{
name: "Nvidia",
websiteUrl: "https://build.nvidia.com",
-18
View File
@@ -971,8 +971,6 @@ wire_api = "responses"
requires_openai_auth = true`,
endpointCandidates: ["https://sudocode.us/v1", "https://sudocode.run/v1"],
apiFormat: "openai_responses",
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
},
{
@@ -1226,22 +1224,6 @@ model_auto_compact_token_limit = 9000000`,
icon: "eflowcode",
iconColor: "#000000",
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
category: "third_party",
auth: generateThirdPartyAuth(""),
config: generateThirdPartyConfig(
"lemondata",
"https://api.lemondata.cc/v1",
"gpt-5.5",
),
endpointCandidates: ["https://api.lemondata.cc/v1"],
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
},
{
name: "PIPELLM",
websiteUrl: "https://code.pipellm.ai",
-21
View File
@@ -164,8 +164,6 @@ export const geminiProviderPresets: GeminiProviderPreset[] = [
model: "gemini-3.1-flash-lite",
description: "SudoCode",
category: "third_party",
isPartner: true,
partnerPromotionKey: "sudocode",
endpointCandidates: ["https://sudocode.us", "https://sudocode.run"],
icon: "sudocode",
},
@@ -336,25 +334,6 @@ export const geminiProviderPresets: GeminiProviderPreset[] = [
icon: "eflowcode",
iconColor: "#000000",
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
settingsConfig: {
env: {
GOOGLE_GEMINI_BASE_URL: "https://api.lemondata.cc",
GEMINI_MODEL: "gemini-3.5-flash",
},
},
baseURL: "https://api.lemondata.cc",
model: "gemini-3.5-flash",
description: "LemonData",
category: "third_party",
isPartner: true,
partnerPromotionKey: "lemondata",
endpointCandidates: ["https://api.lemondata.cc"],
icon: "lemondata",
},
{
name: "CherryIN",
websiteUrl: "https://open.cherryin.ai",
-21
View File
@@ -916,8 +916,6 @@ export const hermesProviderPresets: HermesProviderPreset[] = [
],
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
suggestedDefaults: {
model: { default: "gpt-5.5", provider: "sudocode" },
@@ -1241,25 +1239,6 @@ export const hermesProviderPresets: HermesProviderPreset[] = [
model: { default: "claude-opus-4-8", provider: "eflowcode" },
},
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
settingsConfig: {
name: "lemondata",
base_url: "https://api.lemondata.cc/v1",
api_key: "",
api_mode: "chat_completions",
models: [{ id: "gpt-5.5", name: "GPT-5.5" }],
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
suggestedDefaults: {
model: { default: "gpt-5.5", provider: "lemondata" },
},
},
{
name: "TheRouter",
websiteUrl: "https://therouter.ai",
-38
View File
@@ -1667,8 +1667,6 @@ export const openclawProviderPresets: OpenClawProviderPreset[] = [
],
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
templateValues: {
apiKey: {
@@ -2177,42 +2175,6 @@ export const openclawProviderPresets: OpenClawProviderPreset[] = [
},
},
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
settingsConfig: {
baseUrl: "https://api.lemondata.cc/v1",
apiKey: "",
api: "openai-completions",
models: [
{
id: "gpt-5.5",
name: "GPT-5.5",
contextWindow: 400000,
},
],
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
templateValues: {
apiKey: {
label: "API Key",
placeholder: "",
editorValue: "",
},
},
suggestedDefaults: {
model: {
primary: "lemondata/gpt-5.5",
},
modelCatalog: {
"lemondata/gpt-5.5": { alias: "GPT-5.5" },
},
},
},
// ========== Cloud Providers ==========
{
name: "AWS Bedrock",
-30
View File
@@ -1374,8 +1374,6 @@ export const opencodeProviderPresets: OpenCodeProviderPreset[] = [
},
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "sudocode",
icon: "sudocode",
templateValues: {
apiKey: {
@@ -1714,34 +1712,6 @@ export const opencodeProviderPresets: OpenCodeProviderPreset[] = [
},
},
},
{
name: "LemonData",
websiteUrl: "https://lemondata.cc",
apiKeyUrl: "https://lemondata.cc/r/FFX1ZDUP",
settingsConfig: {
npm: "@ai-sdk/openai-compatible",
name: "LemonData",
options: {
baseURL: "https://api.lemondata.cc/v1",
apiKey: "",
setCacheKey: true,
},
models: {
"gpt-5.5": { name: "GPT-5.5" },
},
},
category: "third_party",
isPartner: true,
partnerPromotionKey: "lemondata",
icon: "lemondata",
templateValues: {
apiKey: {
label: "API Key",
placeholder: "",
editorValue: "",
},
},
},
{
name: "AWS Bedrock",
websiteUrl: "https://aws.amazon.com/bedrock/",