⚠️ Internal: This API is not publically exported by the package.

Interface SessionToItemsWithContextItemsRecommendationParams

Parameters for getting recommendations using the 'session_to_items_w_ctx_items' recommendation type.

interface SessionToItemsWithContextItemsRecommendationParams {
    contextItems: ContextItem[];
    cursor?: string;
    excludeRatedItems?: boolean;
    filters?: Filter[];
    interactions?: Interaction[];
    maxResults?: number;
    ratings?: Rating[];
    reranking?: Reranking[];
    scenario?: string;
    sessionId?: string;
    skipDefaultScenario?: boolean;
    userId?: string;
    userProperties?: KeyValuePairs;
}

Properties

contextItems: ContextItem[]
cursor?: string
excludeRatedItems?: boolean
filters?: Filter[]
interactions?: Interaction[]
maxResults?: number
ratings?: Rating[]
reranking?: Reranking[]
scenario?: string
sessionId?: string
skipDefaultScenario?: boolean
userId?: string
userProperties?: KeyValuePairs