hashbrown

ChatResourceRef

Represents the reactive chat resource, including current messages and control methods.

API

ChatResourceRef
@typeTools
Chat.AnyTool
generatingError
Signal<Error | undefined>

Error emitted during generation frames.

isGenerating
Signal<boolean>

Indicates whether the chat is currently generating assistant output.

isLoading
Signal<boolean>

Aggregate loading flag across transport, generation, tool calls, and thread load/save.

isLoadingThread
Signal<boolean>

Indicates whether a thread load request is in flight.

isReceiving
Signal<boolean>

Indicates whether the chat is currently receiving tokens.

isRunningToolCalls
Signal<boolean>

Indicates whether the chat is running tool calls.

isSavingThread
Signal<boolean>

Indicates whether a thread save request is in flight.

isSending
Signal<boolean>

Indicates whether the chat is currently sending a user message.

lastAssistantMessage
Signal<Chat.AssistantMessage<string, Tools> | undefined>

The last assistant message for the chat.

reload
() => boolean

Remove the last assistant response and re-send the previous user message. Returns true if a reload was performed.

sendingError
Signal<Error | undefined>

Transport/request error before generation frames arrive.

sendMessage
(message: Chat.UserMessage) => void

Send a new user message to the chat.

setMessages
(messages: Chat.Message<string, Tools>[]) => void

Replace the current chat message history.

stop
(clearStreamingMessage?: boolean) => void

Stops any currently-streaming message.

threadLoadError
Signal<{
        error: string;
        stacktrace?: string;
    } | undefined>

Thread loading error, if present.

threadSaveError
Signal<{
        error: string;
        stacktrace?: string;
    } | undefined>

Thread saving error, if present.