Implement S03 follow-up draft context loop

This commit is contained in:
2026-03-24 11:05:41 +01:00
parent b5b430947b
commit 0cacb4e51b
10 changed files with 645 additions and 26 deletions
+12
View File
@@ -99,6 +99,18 @@ export interface ReadinessResponse {
reminders: string[];
}
export interface FollowUpDraft {
subject: string;
body: string;
reason: string;
suggestedSendOn: string;
contextSummary: string;
contextSignals: string[];
threadSubject?: string | null;
lastCorrespondenceFrom?: string | null;
lastCorrespondenceAt?: string | null;
}
export interface ApplicationPackageResponse {
tailoredCvText: string;
coverLetterDraft?: string | null;