Interface UserContext

Represents the contextual information about the user interacting with the GMI. UserContext

interface UserContext {
    userId: string;
    skillLevel?: string;
    preferences?: Record<string, any>;
    pastInteractionSummary?: string;
    currentSentiment?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

userId: string
skillLevel?: string
preferences?: Record<string, any>
pastInteractionSummary?: string
currentSentiment?: string