PlaybookBulletItem

@Serializable
data class PlaybookBulletItem(var content: String, val id: String, var helpfulCount: Int, var harmfulCount: Int)

A single curated insight in an ACEPlaybook, living inside a PlaybookSection.

Constructors

Link copied to clipboard
constructor(content: String, section: PlaybookSection, helpfulCount: Int, harmfulCount: Int)

Creates a bullet whose id is freshly allocated within section via generateNewId.

constructor(content: String, id: String, helpfulCount: Int, harmfulCount: Int)

Types

Link copied to clipboard
object Companion

Factory helpers for PlaybookBulletItem.

Properties

Link copied to clipboard

The advice text shown to the agent in its system prompt.

Link copied to clipboard

Number of trajectories in which this bullet was tagged "harmful".

Link copied to clipboard

Number of trajectories in which this bullet was tagged "helpful".

Link copied to clipboard
val id: String

Stable identifier of the form "<sectionShortName>-<number>", used by the reflector and curator to reference this bullet.