Member Junction
    Preparing search index...

    A message from the agent to display to the user.

    interface AgentMessage {
        Content: string;
        ConversationID: string;
        IsStreaming: boolean;
        Role: "assistant" | "system";
        Timestamp: Date;
    }
    Index

    Properties

    Content: string

    The message content

    ConversationID: string

    The conversation this message belongs to

    IsStreaming: boolean

    Whether this message is still being streamed

    Role: "assistant" | "system"

    Optional role (usually 'assistant')

    Timestamp: Date

    Timestamp of the message