PropositionSummaryDto

data class PropositionSummaryDto(val id: String, val text: String, val confidence: Double, val status: String, val mentions: List<EntityMentionSummaryDto>, val grounding: List<String>)

A lean proposition summary — the common shape every discovery result maps down to.

Grounding is carried as opaque string chunk ids only; no RAG or store types cross this boundary.

Constructors

Link copied to clipboard
constructor(id: String, text: String, confidence: Double, status: String, mentions: List<EntityMentionSummaryDto>, grounding: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

the proposition's confidence score

Link copied to clipboard

the grounding chunk ids as opaque strings

Link copied to clipboard
val id: String

the proposition's opaque id

Link copied to clipboard

the entity mentions in this proposition, summarized

Link copied to clipboard

the proposition's lifecycle status name

Link copied to clipboard

the proposition statement