entroly

Entroly Limitations

Entroly is a local context control plane. It can reduce what you send, preserve more useful context under a budget, and surface verification signals. It does not make provider calls free, guarantee perfect answers, or override provider terms.

What Entroly Does Not Guarantee

Best-Fit Workloads

Poor-Fit Workloads

How To Measure Honestly

Use local commands first:

entroly simulate --budget 4096
entroly perf --budget 4096 --json
entroly verify-claims

These commands do not call an LLM. They estimate local context reduction and optimizer latency. They are not a bill guarantee because they exclude output tokens, provider cache hit rates, retries, tool-use overhead, and model-specific pricing changes.

For live traffic, inspect response headers such as:

Provider invoices and provider usage metadata remain the billing source of truth.

Session Rescue and Cache Safety

Session rescue runs only for traffic routed through entroly proxy. It does not edit a host application’s stored transcript, terminate the host’s loop, or recover a session that never sends another request through Entroly.

The guard preserves ordinary user messages and recent turns. If old recoverable tool output is insufficient to bring a request under the safety watermark, the proxy returns an actionable 413 rather than silently deleting user evidence or forwarding a likely provider rejection.

Recovery is local, not magic: the session-rescue JSON store contains the full original tool output in plaintext. Losing or deleting that store removes Entroly’s recovery path. Protect it with filesystem permissions, source-control exclusions, retention policy, and backups appropriate for the underlying data.

Live-zone layout and exact context matching improve prefix stability but do not guarantee provider cache hits or savings. Provider thresholds, TTL, pricing, routing, and account behavior remain authoritative. See runaway-session rescue and prompt-cache safety.

Image Inputs

Image optimization is opt-in. The default behavior is to preserve image bytes and only report estimates/recommendations. When enabled, Entroly gates any image rewrite on estimated token savings and a quality floor.

References for current formulas and token-count behavior:

Context Receipts

Context Receipts are an audit trail for local context selection. They improve inspectability, but they do not prove that the selected context is complete or that an answer is legally, financially, medically, or operationally correct. Each receipt includes a deterministic risk_summary so these boundaries are visible in the artifact instead of hidden in marketing copy.

Compliance Checklist

Before production use:

  1. Confirm your provider and tool terms permit the chosen proxy, wrapper, or SDK path.
  2. Run entroly doctor --privacy.
  3. Run provider-shape tests for the APIs you use.
  4. Start in audit/observe mode, inspect headers, then enable stronger mutation paths deliberately.
  5. Keep benchmark claims tied to committed artifacts and dated reproduction commands.