claude-sdk-proxy 3.2.0 → 3.2.1

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": "claude-sdk-proxy",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "Anthropic Messages API proxy backed by Claude Agent SDK — use Claude Max with any API client",
5
5
  "type": "module",
6
6
  "main": "./src/proxy/server.ts",
@@ -15,6 +15,6 @@ export const DEFAULT_PROXY_CONFIG: ProxyConfig = {
15
15
  host: "127.0.0.1",
16
16
  debug: process.env.CLAUDE_PROXY_DEBUG === "1" || process.env.OPENCODE_CLAUDE_PROVIDER_DEBUG === "1",
17
17
  stallTimeoutMs: parseInt(process.env.CLAUDE_PROXY_STALL_TIMEOUT_MS ?? "120000", 10),
18
- maxDurationMs: parseInt(process.env.CLAUDE_PROXY_MAX_DURATION_MS ?? "600000", 10), // 10 minutes
18
+ maxDurationMs: parseInt(process.env.CLAUDE_PROXY_MAX_DURATION_MS ?? "3600000", 10), // 1 hour
19
19
  maxOutputChars: parseInt(process.env.CLAUDE_PROXY_MAX_OUTPUT_CHARS ?? "500000", 10), // 500KB
20
20
  }