sync
Some checks are pending
format / format (push) Waiting to run
snapshot / publish (push) Waiting to run
test / test (push) Waiting to run

This commit is contained in:
Dax Raad 2025-10-22 18:49:46 -04:00
parent 8bf0ac5362
commit b23af5abe0
2 changed files with 8 additions and 0 deletions

View file

@ -570,6 +570,9 @@ function UserMessage(props: {
</For>
</box>
</Show>
<Show when={props.message.summary}>
<text>EXPERIMENTAL: {props.message.summary!.text}</text>
</Show>
<text>
{sync.data.config.username ?? "You"}{" "}
<Show

View file

@ -610,6 +610,10 @@ export type UserMessage = {
time: {
created: number
}
summary?: {
diffs: Array<FileDiff>
text: string
}
}
export type ProviderAuthError = {
@ -652,6 +656,7 @@ export type AssistantMessage = {
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError
system: Array<string>
finish?: string
parentID: string
modelID: string
providerID: string
mode: string