Interface EmbedContentRequest

Params for calling GenerativeModel.embedContent

interface EmbedContentRequest {
    content: Content;
    taskType?: TaskType;
    title?: string;
}

Properties

content: Content
taskType?: TaskType
title?: string