@molroo-ai/sdk
    Preparing search index...

    Interface ChatResult

    Result of a chat interaction, including emotion data and optional observers.

    interface ChatResult {
        entityId: string;
        entityName: string;
        observers?: {
            entityId: string;
            entityName: string;
            response: AgentResponse;
        }[];
        response: AgentResponse;
        state?: State;
    }
    Index

    Properties

    entityId: string
    entityName: string
    observers?: { entityId: string; entityName: string; response: AgentResponse }[]

    Entities that overheard this chat (groupAwareness).

    response: AgentResponse
    state?: State