React Native Firebase
    Preparing search index...

    Interface StartTemplateChatParamsBeta

    interface StartTemplateChatParams {
        generationConfig?: GenerationConfig;
        history?: Content[];
        safetySettings?: SafetySetting[];
        systemInstruction?: string | Content | Part;
        templateId: string;
        templateVariables?: Record<string, unknown>;
        toolConfig?: ToolConfig;
        tools?: TemplateFunctionDeclarationsTool[];
    }

    Hierarchy

    Index

    Properties

    generationConfig?: GenerationConfig
    history?: Content[]
    safetySettings?: SafetySetting[]
    systemInstruction?: string | Content | Part
    templateId: string

    The ID of the server-side template to execute.

    templateVariables?: Record<string, unknown>

    A key-value map of variables to populate the template with.

    toolConfig?: ToolConfig