docs: replace vague provenance prose with recorded facts

This commit is contained in:
Turtle
2026-08-09 15:35:02 +08:00
parent 8c124f84b6
commit 9704749b01
380 changed files with 946 additions and 874 deletions
+2 -2
View File
@@ -93,7 +93,7 @@ const modelPolicy: z<ModelCompactPolicyConfig> = z.object({
/**
* Dependency-light compaction backend using `ctx.tokenMeter` for pressure,
* retention, provenance, and summary-convergence pricing.
* retention, cited source events, and summary-convergence pricing.
*
* `summarize()` is the sole subclass customization hook; the replay and durable
* mutation strategy stays fixed so every pricing decision uses the singleton
@@ -230,7 +230,7 @@ export class BasicCompactService extends CompactService {
* @param input - replayed conversation prefix (system, tools, and leading messages) to condense.
* @param agent - supplies routed-model history, fallback model, and session id.
* @param signal - optional cancellation forwarded to the adapter.
* @returns safe text summary blocks and exact auxiliary-call provenance.
* @returns safe text summary blocks and the exact auxiliary call envelope and output.
*/
protected async summarize(
input: SummarizationInput,
+1 -1
View File
@@ -403,7 +403,7 @@ function assertSelectedSpanStable(
}
}
/** Append one already-summarized provenance and replacement body without yielding. */
/** Append one completed summary record and replacement body without yielding. */
function commitCompactionBody(
session: Session,
startEvent: SessionEvent<'compact/start'>,
@@ -84,7 +84,7 @@ export interface SummarizationInput {
readonly messages: readonly Message[]
}
/** Safe summary content plus the exact auxiliary call envelope recorded in provenance. */
/** Safe summary content plus the exact auxiliary call envelope recorded with it. */
export type SummaryResult = {
summary: ContentBlock[]
provider: string
@@ -116,7 +116,7 @@ export type SummaryResult = {
* @param input - replayed conversation prefix (system, tools, and leading messages) to condense.
* @param agent - supplies routed-model history, fallback model, and session id.
* @param signal - optional cancellation forwarded to the adapter.
* @returns safe text-only summary blocks and exact call provenance.
* @returns safe text-only summary blocks and the exact call envelope and output.
*/
export async function summarizeWithLlm(
ctx: Context,