export function buildContextPrompt(basePrompt: string, summary: string | null) {
if (!summary) return basePrompt;
return `${basePrompt}\n\n${summary}\n\n\nThe above is a summary of recent interactions with this contact. Use it to maintain continuity and provide contextual responses.\nContinue the conversation using the same language and tone and follow the language direction above.\n`;
}