addCompactContext method
Add compact mode context.
Implementation
void addCompactContext(String summary) {
addSection(
PromptSection(
name: 'compact_context',
content: '''
# Compacted Context
This conversation has been compacted. Here is the summary of prior context:
$summary''',
priority: 3,
),
);
}