clawmoney 0.15.28 → 0.15.29
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.
|
@@ -201,10 +201,7 @@ export async function relaySetupCommand() {
|
|
|
201
201
|
log.warn(`${cli}: no recommended models found — skipping`);
|
|
202
202
|
continue;
|
|
203
203
|
}
|
|
204
|
-
log.step(`${chalk.bold(cli)}:
|
|
205
|
-
for (const m of recommended) {
|
|
206
|
-
log.message(chalk.dim(` · ${m}`));
|
|
207
|
-
}
|
|
204
|
+
log.step(`${chalk.bold(cli)}: ${recommended.length} models ${chalk.dim("— " + recommended.join(", "))}`);
|
|
208
205
|
for (const model of recommended) {
|
|
209
206
|
const p = API_PRICES[model];
|
|
210
207
|
registrations.push({
|