clawmoney 0.15.17 → 0.15.18
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/commands/relay-setup.js +13 -13
- package/package.json +1 -1
|
@@ -253,28 +253,28 @@ export async function relaySetupCommand() {
|
|
|
253
253
|
const dailyLimitChoice = await select({
|
|
254
254
|
message: "Daily quota share per model? (applies independently to each model you register)",
|
|
255
255
|
options: [
|
|
256
|
-
{
|
|
257
|
-
value: 6,
|
|
258
|
-
label: "~10% · Minimal",
|
|
259
|
-
hint: "barely touches your subscription, leaves nearly all of it for personal use",
|
|
260
|
-
},
|
|
261
256
|
{
|
|
262
257
|
value: 15,
|
|
263
|
-
label: "~25% ·
|
|
264
|
-
hint: "
|
|
258
|
+
label: "~25% · Light",
|
|
259
|
+
hint: "share a quarter, leaves 75% for your personal use",
|
|
265
260
|
},
|
|
266
261
|
{
|
|
267
262
|
value: 30,
|
|
268
|
-
label: "~50% ·
|
|
263
|
+
label: "~50% · Balanced (recommended)",
|
|
269
264
|
hint: "splits each model's quota evenly between you and the relay",
|
|
270
265
|
},
|
|
266
|
+
{
|
|
267
|
+
value: 45,
|
|
268
|
+
label: "~75% · Heavy",
|
|
269
|
+
hint: "most of your subscription goes to relay, 25% reserved for personal use",
|
|
270
|
+
},
|
|
271
271
|
{
|
|
272
272
|
value: 60,
|
|
273
273
|
label: "~100% · Full",
|
|
274
|
-
hint: "dedicates your subscription to relay
|
|
274
|
+
hint: "dedicates your subscription to relay — best for accounts you don't use personally",
|
|
275
275
|
},
|
|
276
276
|
],
|
|
277
|
-
initialValue:
|
|
277
|
+
initialValue: 30,
|
|
278
278
|
});
|
|
279
279
|
if (isCancel(dailyLimitChoice)) {
|
|
280
280
|
cancel("Setup cancelled");
|
|
@@ -286,9 +286,9 @@ export async function relaySetupCommand() {
|
|
|
286
286
|
// label the user picked, so what they see in the summary matches what
|
|
287
287
|
// they answered in the prompt.
|
|
288
288
|
const limitLabel = {
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
289
|
+
15: "~25% (Light)",
|
|
290
|
+
30: "~50% (Balanced)",
|
|
291
|
+
45: "~75% (Heavy)",
|
|
292
292
|
60: "~100% (Full)",
|
|
293
293
|
};
|
|
294
294
|
log.step(chalk.bold("Summary"));
|