feat: rename summarize command to compact and update related descriptions for session compression

This commit is contained in:
Bohdan Triapitsyn
2026-01-08 21:10:38 +02:00
parent 49fb01f42d
commit 699fc7596a
4 changed files with 26 additions and 7 deletions
@@ -144,7 +144,7 @@ const ChatMessage: React.FC<ChatMessageProps> = ({
return message.parts.map((part) => {
const rawPart = part as Record<string, unknown>;
if (rawPart.type === 'compaction') {
return { type: 'text', text: '/summarize' } as Part;
return { type: 'text', text: '/compact' } as Part;
}
return part;
});