0943aeb2df
The summarize-historical-email grounding produced generic, boilerplate objections with no quotes and no source traceability (the minimize step abstracts away the actual email text; the newest-N corpus carries little real objection signal, so the model pattern-completes). Pulled the page (ObjectionsPage component + nav + dispatch). The redaction boundary is kept (reusable for proactive outreach); the dormant /api/architect/ground route is left in place but has no UI trigger. Pivoting to proactive outreach / messaging. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
791 B
TypeScript
18 lines
791 B
TypeScript
import { VersionInfo } from '@start9labs/start-sdk'
|
|
|
|
// Remove the LP Objections page. The summarize-historical-email grounding it ran
|
|
// produced generic, unverifiable output with no quotes or source traceability, so it
|
|
// is pulled from the UI. The redaction boundary it used is kept (reusable for the
|
|
// proactive-outreach work); the backend /api/architect/ground route is left dormant
|
|
// (no UI trigger). No schema change.
|
|
export const v_0_1_0_67 = VersionInfo.of({
|
|
version: '0.1.0:67',
|
|
releaseNotes: {
|
|
en_US: [
|
|
'Removed the LP Objections page — its historical email summary produced generic,',
|
|
'unverifiable output. We are pivoting to proactive outreach and messaging instead.',
|
|
].join(' '),
|
|
},
|
|
migrations: { up: async () => {}, down: async () => {} },
|
|
})
|