# `Condukt.Compactor.Sliding`
[🔗](https://github.com/tuist/condukt/blob/0.16.5/lib/condukt/compactor/sliding.ex#L1)

Keeps the last N messages of the conversation.

Tool results whose originating tool call has been dropped are also removed,
since most providers reject orphaned tool results.

## Options

- `:keep` - number of trailing messages to retain (default: `20`).

## Example

    MyApp.Agent.start_link(
      compactor: {Condukt.Compactor.Sliding, keep: 40}
    )

---

*Consult [api-reference.md](api-reference.md) for complete listing*
