diff --git a/apps/website/content/docs/chat/api/api-docs.json b/apps/website/content/docs/chat/api/api-docs.json index 3e8ca3771..80d2ca410 100644 --- a/apps/website/content/docs/chat/api/api-docs.json +++ b/apps/website/content/docs/chat/api/api-docs.json @@ -1456,40 +1456,6 @@ ], "methods": [] }, - { - "name": "ChatCheckpointMarkerComponent", - "kind": "class", - "description": "", - "params": [], - "examples": [], - "properties": [ - { - "name": "checkpointId", - "type": "InputSignal", - "description": "", - "optional": false - }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, - { - "name": "isActive", - "type": "InputSignal", - "description": "", - "optional": false - }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - } - ], - "methods": [] - }, { "name": "ChatCitationCardTemplateDirective", "kind": "class", @@ -1581,12 +1547,6 @@ "description": "True iff there's a current (last-index) assistant message that's\nstill streaming. The bubble's own caret already signals loading;\nwe suppress the floor typing-indicator in that case so the user\ndoesn't see two loading affordances at once.\n\nMatches the same `streaming + current` condition the bubble uses\nto enable `.chat-message__caret`:\n `agent().isLoading() && i === agent().messages().length - 1`\n `i === agent().messages().length - 1`\n\nRestricted to assistant role because the caret only renders on\nassistant bubbles (`:host([data-role=\"assistant\"][data-current=...\n ][data-streaming=...])`).", "optional": false }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "Bubbled from chat-message gutter markers when the user requests a checkpoint fork.", - "optional": false - }, { "name": "genuiToolNames", "type": "InputSignal", @@ -1659,12 +1619,6 @@ "description": "", "optional": false }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "Bubbled from chat-message gutter markers when the user requests a checkpoint replay.", - "optional": false - }, { "name": "resolvedStore", "type": "Signal", @@ -1721,19 +1675,6 @@ } ], "methods": [ - { - "name": "checkpointFor", - "signature": "checkpointFor(msg: Message)", - "description": "Returns the checkpoint id associated with an AI message, if the\n underlying agent exposes messageCheckpoints().", - "params": [ - { - "name": "msg", - "type": "Message", - "description": "", - "optional": false - } - ] - }, { "name": "classifyMessage", "signature": "classifyMessage(content: string, message: object)", @@ -2564,18 +2505,6 @@ "description": "", "optional": false }, - { - "name": "checkpointActive", - "type": "InputSignal", - "description": "", - "optional": false - }, - { - "name": "checkpointId", - "type": "InputSignal", - "description": "Optional checkpoint id to anchor a gutter marker. When set, a\n chat-checkpoint-marker is rendered in the left gutter and emits\n bubble through this component's replayRequested / forkRequested outputs.", - "optional": false - }, { "name": "current", "type": "InputSignal", @@ -2588,12 +2517,6 @@ "description": "", "optional": false }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "message", "type": "InputSignal", @@ -2606,12 +2529,6 @@ "description": "", "optional": false }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "role", "type": "InputSignal", @@ -2779,12 +2696,6 @@ "description": "Close the popup on Escape (default true).", "optional": false }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "modelOptions", "type": "InputSignal", @@ -2797,12 +2708,6 @@ "description": "", "optional": false }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "selectedModel", "type": "ModelSignal", @@ -3286,12 +3191,6 @@ "description": "Close the sidebar on Escape (default true).", "optional": false }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "modelOptions", "type": "InputSignal", @@ -3310,12 +3209,6 @@ "description": "", "optional": false }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "selectedModel", "type": "ModelSignal", @@ -3399,12 +3292,6 @@ "description": "", "optional": false }, - { - "name": "forkRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "isDebugStreaming", "type": "Signal", @@ -3465,12 +3352,6 @@ "description": "", "optional": false }, - { - "name": "replayRequested", - "type": "OutputEmitterRef", - "description": "", - "optional": false - }, { "name": "searchOpened", "type": "OutputEmitterRef", diff --git a/examples/chat/angular/src/app/modes/embed-mode.component.ts b/examples/chat/angular/src/app/modes/embed-mode.component.ts index a66a13c3e..7a157b6c5 100644 --- a/examples/chat/angular/src/app/modes/embed-mode.component.ts +++ b/examples/chat/angular/src/app/modes/embed-mode.component.ts @@ -17,8 +17,6 @@ import { WelcomeSuggestionsComponent } from './welcome-suggestions.component'; [modelOptions]="shell.modelOptions()" [selectedModel]="shell.model()" (selectedModelChange)="shell.onModelChange($event)" - (replayRequested)="shell.onTimelineReplay($event)" - (forkRequested)="shell.onTimelineFork($event)" > diff --git a/examples/chat/angular/src/app/modes/popup-mode.component.ts b/examples/chat/angular/src/app/modes/popup-mode.component.ts index 2274f1495..25208dced 100644 --- a/examples/chat/angular/src/app/modes/popup-mode.component.ts +++ b/examples/chat/angular/src/app/modes/popup-mode.component.ts @@ -23,8 +23,6 @@ import { WelcomeSuggestionsComponent } from './welcome-suggestions.component'; [selectedModel]="shell.model()" [showModelPicker]="false" (selectedModelChange)="shell.onModelChange($event)" - (replayRequested)="shell.onTimelineReplay($event)" - (forkRequested)="shell.onTimelineFork($event)" > diff --git a/examples/chat/angular/src/app/modes/sidebar-mode.component.ts b/examples/chat/angular/src/app/modes/sidebar-mode.component.ts index f631e09e4..0ea3b0ec0 100644 --- a/examples/chat/angular/src/app/modes/sidebar-mode.component.ts +++ b/examples/chat/angular/src/app/modes/sidebar-mode.component.ts @@ -20,8 +20,6 @@ import { WelcomeSuggestionsComponent } from './welcome-suggestions.component'; [open]="true" [pushContent]="true" (selectedModelChange)="shell.onModelChange($event)" - (replayRequested)="shell.onTimelineReplay($event)" - (forkRequested)="shell.onTimelineFork($event)" > {{ shell.currentThreadTitle() }}