docs-devsite/ai.starttemplatechatparams.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Params for TemplateGenerativeModel.startChat()<!-- -->.
<b>Signature:</b>
export interface StartTemplateChatParams extends Omit<StartChatParams, 'tools'>
<b>Extends:</b> Omit<StartChatParams<!-- -->, 'tools'>
| Property | Type | Description |
|---|---|---|
| templateId | string | <b><i>(Public Preview)</i></b> The ID of the server-side template to execute. |
| templateVariables | Record<string, unknown> | <b><i>(Public Preview)</i></b> A key-value map of variables to populate the template with. |
| tools | TemplateTool<!-- -->[] | <b><i>(Public Preview)</i></b> |
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
The ID of the server-side template to execute.
<b>Signature:</b>
templateId: string;
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
A key-value map of variables to populate the template with.
<b>Signature:</b>
templateVariables?: Record<string, unknown>;
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
<b>Signature:</b>
tools?: TemplateTool[];