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
4 changes: 4 additions & 0 deletions assistant/src/runtime/routes/conversation-routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1493,6 +1493,10 @@ export async function handleSendMessage(
: ("content-source" as const);
effectiveContent = buildScanFirstMessage(scanUrl, scanVariant);
// Fall through to normal inference path below
} else if (isWakeUp && body.onboarding?.cohort === "content-automation") {
effectiveContent = "I want to write articles that rank better in GEO";
// Fall through to normal inference path — the bootstrap template
// and geo-writing skill handle this message.
} else if (isWakeUp) {
const cannedGreeting = getCannedFirstGreeting(body.onboarding ?? undefined);

Expand Down
Loading