/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * template: "template", * templateId: "template_id" * } */ export interface CreateContextTemplateRequest { /** The template content (max 1200 characters). */ template: string; /** Unique identifier for the template (max 100 characters). */ templateId: string; }