hashbrown

UiAssistantMessage

A message from the assistant that includes rendered UI components. Extends the base assistant message with UI-specific content.

API

export type UiAssistantMessage<
  Tools extends  Chat.AnyTool ,
> =  Chat.AssistantMessage <
   UiChatSchema ,
  Tools
> & {
  ui:  React.ReactElement [] | null;
};
UiAssistantMessage
@typeTools
Chat.AnyTool