PruningStrategy

org.llm4s.agent.PruningStrategy
See thePruningStrategy companion trait

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

case class Custom(fn: Seq[Message] => Seq[Message]) extends PruningStrategy

Custom pruning function. Receives all messages and returns the subset to keep. The function should be pure (no side effects) and deterministic.

Custom pruning function. Receives all messages and returns the subset to keep. The function should be pure (no side effects) and deterministic.

Value parameters

fn

Function that takes messages and returns pruned messages

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
case object MiddleOut extends PruningStrategy

Remove messages from the middle, keeping start and end. Useful for preserving both initial context and recent exchanges.

Remove messages from the middle, keeping start and end. Useful for preserving both initial context and recent exchanges.

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
MiddleOut.type
case object OldestFirst extends PruningStrategy

Remove oldest messages first (FIFO). Preserves system message (if configured) and most recent messages.

Remove oldest messages first (FIFO). Preserves system message (if configured) and most recent messages.

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Self type
case class RecentTurnsOnly(turns: Int) extends PruningStrategy

Keep only the most recent N complete turns (user+assistant pairs). Drops everything older than the specified number of turns.

Keep only the most recent N complete turns (user+assistant pairs). Drops everything older than the specified number of turns.

Value parameters

turns

Number of recent turns to keep

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror