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

    Interface PersonaChatResult

    Result of a persona chat interaction, including LLM text and emotion data.

    interface PersonaChatResult {
        response: AgentResponse;
        state?: PersonaState;
        text: string;
    }
    Index

    Properties

    Properties

    response: AgentResponse

    Emotion engine response with VAD, discrete emotion, and side effects.

    state?: PersonaState

    Persona state at the time of interaction (if available).

    text: string

    LLM-generated response text.