Create from Template
gamma_from_templateRemix an existing Gamma template to quickly generate customized presentations, documents, or webpages with specific instructions and variables.
Instructions
Create new content by remixing an existing Gamma template.
This tool uses Gamma's Remix feature to create a new version of existing content with customizations. Useful for creating variations of proven templates.
PARAMETERS:
templateId (required): ID of the existing Gamma to use as template
prompt: Additional instructions for customization
variables: Key-value pairs for dynamic content substitution
folderId: Folder to save the result
waitForCompletion: If true, waits for completion
RETURNS: Same as gamma_generate
EXAMPLE: { templateId: "gamma_xyz789", prompt: "Update for Q1 2025 results", variables: { "company_name": "Acme Corp", "quarter": "Q1 2025" } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | No | Additional instructions for customizing the template content. | |
| folderId | No | Folder ID to save the remixed version to. | |
| variables | No | Key-value pairs to substitute in the template. Use for dynamic content like names, dates, or custom values. | |
| templateId | Yes | The ID of an existing Gamma to use as template. Find this in the Gamma URL or use gamma_list_folders to browse. | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for structured data | markdown |
| waitForCompletion | No | If true, poll until generation completes and return the final URL. |