v0.2.3 Core tier 10/5/5 split + dynamic health version

This commit is contained in:
local
2026-05-11 21:53:50 -05:00
parent 07fe14010c
commit 6797aae404
8 changed files with 138 additions and 15 deletions
+10 -1
View File
@@ -62,7 +62,16 @@ export const configFile = FileHelper.json(
// "Adjust Tier Quotas" action without a code change or restart.
relay_tier_quotas_json: z.string().default(
JSON.stringify({
core: { lifetime: 5, monthly: null, geminiCapMonthly: null },
// Core: 10 lifetime credits total — first 5 served via Gemini
// (operator's cloud spend), final 5 fall through to operator
// hardware so the user can keep going on free tier without
// costing the operator more cloud $.
core: {
lifetime: 10,
geminiCapLifetime: 5,
monthly: null,
geminiCapMonthly: null,
},
pro: { lifetime: null, monthly: 50, geminiCapMonthly: 25 },
max: { lifetime: null, monthly: null, geminiCapMonthly: 50 },
}),