content/docs/07-reference/02-ai-sdk-ui/32-prune-messages.mdx
pruneMessages()The pruneMessages function is used to prune or filter an array of ModelMessage objects. This is useful for reducing message context (to save tokens), removing intermediate reasoning, or trimming tool calls and empty messages before sending to an LLM.
import { pruneMessages, streamText } from 'ai';
__PROVIDER_IMPORT__;
export async function POST(req: Request) {
const { messages } = await req.json();
const prunedMessages = pruneMessages({
messages,
reasoning: 'before-last-message',
toolCalls: 'before-last-2-messages',
emptyMessages: 'remove',
});
const result = streamText({
model: __MODEL__,
messages: prunedMessages,
});
return result.toUIMessageStreamResponse();
}
<Snippet text={import { pruneMessages } from "ai"} prompt={false} />
<PropertiesTable
content={[
{
name: 'messages',
type: 'ModelMessage[]',
description: 'An array of ModelMessage objects to prune.',
},
{
name: 'reasoning',
type: 'all' | 'before-last-message' | 'none',
description:
'How to remove reasoning content from assistant messages. Default: "none".',
},
{
name: 'toolCalls',
type: 'all' | 'before-last-message' | 'before-last-\${number}-messages' | 'none' | Array<{ type: 'all' | 'before-last-message' | 'before-last-\${number}-messages'; tools?: string[] }>,
description:
'How to prune tool call/results/approval content. Can specify a strategy string or an array for per-tool fine control. Default: [] (empty array, equivalent to "none").',
},
{
name: 'emptyMessages',
type: 'keep' | 'remove',
description:
'Whether to keep or remove messages whose content is empty after pruning. Default: "remove".',
},
]}
/>
An array of ModelMessage objects, pruned according to the provided options.
<PropertiesTable content={[ { name: 'ModelMessage[]', type: 'Array', description: 'The pruned list of ModelMessage objects', }, ]} />
import { pruneMessages } from 'ai';
const pruned = pruneMessages({
messages,
reasoning: 'all', // Remove all reasoning parts
toolCalls: 'before-last-message', // Remove tool calls except those in the last message
});
'all' to remove all, 'before-last-message' to keep reasoning in the last message, or 'none' to retain all reasoning.'all': Prune all such content.'before-last-message': Prune except in the last message.'before-last-N-messages': Prune except in the last N messages.'none': Do not prune.[{ type: 'before-last-message', tools: ['search', 'calculator'] }] to prune only specific tools.'remove' (default) to exclude messages that have no content after pruning.Tip:
pruneMessagesis typically used prior to sending a context window to an LLM to reduce message/token count, especially after a series of tool-calls and approvals.
For advanced usage and the full list of possible message parts, see ModelMessage and pruneMessages implementation.