better-ccflare 3.5.30 → 3.5.32
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/README.md +7 -0
- package/dist/better-ccflare +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -186,6 +186,12 @@ RETRY_ATTEMPTS=3 # Number of retry attempts
|
|
|
186
186
|
RETRY_DELAY_MS=1000 # Initial retry delay in milliseconds
|
|
187
187
|
RETRY_BACKOFF=2 # Retry backoff multiplier
|
|
188
188
|
|
|
189
|
+
# Overload retry (529 no-reset in-place retry before account cooldown)
|
|
190
|
+
CCFLARE_OVERLOAD_RETRY_ENABLED=true # Set to "false" to disable (default: true)
|
|
191
|
+
CCFLARE_OVERLOAD_RETRY_MAX_ATTEMPTS=2 # Total attempts incl. original (default: 2)
|
|
192
|
+
CCFLARE_OVERLOAD_RETRY_BASE_MS=750 # Backoff base in ms; 0 = no sleep (default: 750)
|
|
193
|
+
CCFLARE_OVERLOAD_RETRY_MAX_MS=3000 # Backoff ceiling in ms (default: 3000)
|
|
194
|
+
|
|
189
195
|
# Health endpoint
|
|
190
196
|
HEALTH_DETAIL_ENABLED=false # Enable ?detail=1 on /health to expose per-account status (default: off, set true for internal monitoring)
|
|
191
197
|
|
|
@@ -833,6 +839,7 @@ Thanks to the contributors who have improved better-ccflare:
|
|
|
833
839
|
|
|
834
840
|
- [@zionts](https://github.com/zionts) — fix false "integrity check failed" banner on large DBs; adaptive incremental vacuum; payload retention default reduction ([#259](https://github.com/tombii/better-ccflare/pull/259))
|
|
835
841
|
- [@zenprocess](https://github.com/zenprocess) — optional `X-Anthropic-Agent-Id` header for explicit per-agent attribution ([#260](https://github.com/tombii/better-ccflare/pull/260))
|
|
842
|
+
- [@StartupBros](https://github.com/StartupBros) — surface Codex SSE `error`/`response.failed` events to clients instead of fabricating empty success turns ([#274](https://github.com/tombii/better-ccflare/pull/274)); synthesize safe `count_tokens` responses for Codex without upstream calls or OAuth refresh ([#275](https://github.com/tombii/better-ccflare/pull/275)); sanitize Codex tool-call inputs at the Anthropic compatibility boundary ([#277](https://github.com/tombii/better-ccflare/pull/277)); align Codex tool-call semantics so tool loops work correctly with Anthropic-compatible clients ([#278](https://github.com/tombii/better-ccflare/pull/278)); inject a continuation nudge after Codex replays Skill tool results so the model resumes the original request instead of stalling ([#279](https://github.com/tombii/better-ccflare/pull/279))
|
|
836
843
|
|
|
837
844
|
## License
|
|
838
845
|
|
package/dist/better-ccflare
CHANGED
|
Binary file
|
package/package.json
CHANGED