llm-relay 0.56.0 → 0.58.0
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/dist/candidates.d.ts +2 -2
- package/dist/cli.js +6 -4
- package/dist/cli.js.map +1 -1
- package/dist/context-limits.d.ts +31 -1
- package/dist/context-limits.js +86 -1
- package/dist/context-limits.js.map +1 -1
- package/dist/dashboard/.vite/manifest.json +2 -2
- package/dist/dashboard/assets/index-Bqtx14ES.css +1 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/refusal-interpretation.js +125 -4
- package/dist/refusal-interpretation.js.map +1 -1
- package/dist/server.js +48 -13
- package/dist/server.js.map +1 -1
- package/dist/target-facts.d.ts +6 -5
- package/dist/target-facts.js +5 -3
- package/dist/target-facts.js.map +1 -1
- package/package.json +1 -1
- package/dist/dashboard/assets/index-B_lGhkan.css +0 -1
- /package/dist/dashboard/assets/{index-DWy2986E.js → index-CetZdLCA.js} +0 -0
package/dist/candidates.d.ts
CHANGED
|
@@ -129,8 +129,8 @@ export interface Candidate {
|
|
|
129
129
|
/**
|
|
130
130
|
* What this deployment (or its provider, or its group) has STATED about itself — the learned
|
|
131
131
|
* facts from `target-facts.ts`, each with the scope it applies at. The measurement kinds
|
|
132
|
-
* (`context-limit`, `rate-limit-rpm|rpd|tpm|tpd`) also carry `value`: the ceiling
|
|
133
|
-
* stated. Display-only — nothing here reorders or gates a candidate.
|
|
132
|
+
* (`context-limit`, `max-output`, `rate-limit-rpm|rpd|tpm|tpd`) also carry `value`: the ceiling
|
|
133
|
+
* itself, as stated. Display-only — nothing here reorders or gates a candidate.
|
|
134
134
|
*/
|
|
135
135
|
facts: Array<{
|
|
136
136
|
kind: string;
|
package/dist/cli.js
CHANGED
|
@@ -2230,6 +2230,7 @@ const FACT_MEANING = {
|
|
|
2230
2230
|
"credential-invalid": "the provider says this key is bad — every deployment behind it demoted",
|
|
2231
2231
|
"rate-limited": "throughput throttled by the provider — demoted, never evicted",
|
|
2232
2232
|
"context-limit": "a ceiling this deployment stated about itself — a measurement, never a demotion",
|
|
2233
|
+
"max-output": "a ceiling this deployment stated about itself — a measurement, never a demotion",
|
|
2233
2234
|
"rate-limit-rpm": "a ceiling this deployment stated about itself — a measurement, never a demotion",
|
|
2234
2235
|
"rate-limit-rpd": "a ceiling this deployment stated about itself — a measurement, never a demotion",
|
|
2235
2236
|
"rate-limit-tpm": "a ceiling this deployment stated about itself — a measurement, never a demotion",
|
|
@@ -2431,10 +2432,11 @@ export function runEligibility(sub, arg) {
|
|
|
2431
2432
|
if (sc.kind === "group") {
|
|
2432
2433
|
process.stdout.write(` covers: ${sc.members.join(", ")}\n`);
|
|
2433
2434
|
}
|
|
2434
|
-
// ⚠ The full proposal travels — reset AND costClasses. This call
|
|
2435
|
-
//
|
|
2436
|
-
//
|
|
2437
|
-
//
|
|
2435
|
+
// ⚠ The full proposal travels — reset AND costClasses. This call omitted `costClasses` from
|
|
2436
|
+
// the day the flag was introduced (`7412435`, v0.52.0), so the status listing printed an
|
|
2437
|
+
// accept command WIDER than the proposal it echoed — the silent-widening hazard
|
|
2438
|
+
// `eligibilityAcceptCommand`'s own comment warns about. (v0.55.2 fixed the separate
|
|
2439
|
+
// store-persistence half in `acceptInterpretation`; it never touched this file.)
|
|
2438
2440
|
process.stdout.write(` accept with: ${eligibilityAcceptCommand(i + 1, p.signature, p.proposed.class, sc, p.proposed.reset, p.proposed.costClasses)}\n`);
|
|
2439
2441
|
}
|
|
2440
2442
|
});
|