Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions bin/pagespace.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,9 @@ async function runOnboarding() {
const credPath = writeCredentials(buildCredentialRecord({ token, apiUrl: base }));
if (state.defaultDrive) process.env.PAGESPACE_DRIVE = state.defaultDrive;
const allModels = state.models ?? [];
if (allModels.length > 0) process.env.PAGESPACE_MODEL_PAGES = allModels.map((m) => m.id).join(",");
console.log(` ✓ drive: ${state.defaultDrive || "(none)"}`);
if (allModels.length > 0) {
console.log(` ✓ ${allModels.length} agent model(s): ${allModels.map((m) => m.name).join(", ")}`);
console.log(` ✓ ${allModels.length} agent model(s) discovered: ${allModels.map((m) => m.name).join(", ")}`);
} else {
console.log(" · no agent models found — set PAGESPACE_MODEL_PAGES manually if needed.");
}
Expand Down
Loading