pi-freeflow 1.4.5 → 1.4.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/config.ts +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-freeflow",
3
3
  "type": "module",
4
- "version": "1.4.5",
4
+ "version": "1.4.7",
5
5
  "description": "Thin provider for OMP/Pi — model list + dumb relay proxy + log; host pi-ai owns thinking/normalization",
6
6
  "main": "extensions/index.ts",
7
7
  "types": "src/index.ts",
package/src/config.ts CHANGED
@@ -53,8 +53,8 @@ export const VERCEL_API = "https://api.vercel.com";
53
53
 
54
54
  // ── Catalog & Logging constants ─────────────────────────────────────
55
55
  export const CATALOG_CACHE_TTL_MS = 86_400_000; // 24 hours — delegate to host fetchDynamicModels
56
- export const LOG_MAX_BYTES = 5 * 1024 * 1024; // 5MB
57
- export const LOG_MAX_FILES = 3;
56
+ export const LOG_MAX_BYTES = 10 * 1024 * 1024; // 10MB per file
57
+ export const LOG_MAX_FILES = 10; // 10 archived + current ≈ 110MB max (≈100MB per your request, rotated, not single 100MB blob)
58
58
 
59
59
  // ── Rate Limit Maxima ───────────────────────────────────────────────
60
60
  export const RATE_LIMIT_MAX: Record<Upstream, number> = {