qwenproxy-cli 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qwenproxy-cli",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
4
4
  "description": "High-performance OpenAI & Anthropic compatible API gateway for Qwen with multi-account rotation, interactive TUI, and resilient tool calling.",
5
5
  "main": "src/index.ts",
6
6
  "bin": {
package/src/api/server.ts CHANGED
@@ -740,12 +740,6 @@ export async function startServer(options?: {
740
740
  console.warn(
741
741
  `⚠️ [Server] Standby account login failed: ${maskEmail(account.email)} (quarantined)`,
742
742
  );
743
- const { markAccountRateLimited } = await import("../core/account-manager.ts");
744
- markAccountRateLimited(
745
- account.id,
746
- 24 * 3600 * 1000,
747
- "AuthFailed: Standby validation failed",
748
- );
749
743
  }
750
744
  } catch (error) {
751
745
  failed++;