create_document_template
Generate structured document templates for knowledge bases with AI-enhanced metadata, formatting, and priority tagging to streamline content creation and organization.
Instructions
Create a properly structured document template for knowledge base with AI-generated metadata and formatting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Document content for AI analysis and metadata generation | |
key_points | No | Additional manual key points (will be merged with AI-generated points) | |
priority | No | Priority level for the document | medium |
related | No | List of related document IDs or references | |
source_type | No | Type of source content | markdown |
summary | No | Brief summary description of the document content | |
tags | No | Additional manual tags (will be merged with AI-generated tags) | |
title | Yes | Document title for the knowledge base entry | |
use_ai_enhancement | No | Use AI to generate intelligent tags and key points |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"default": "",
"description": "Document content for AI analysis and metadata generation",
"title": "Content",
"type": "string"
},
"key_points": {
"default": [],
"description": "Additional manual key points (will be merged with AI-generated points)",
"items": {
"type": "string"
},
"title": "Key Points",
"type": "array"
},
"priority": {
"default": "medium",
"description": "Priority level for the document",
"pattern": "^(high|medium|low)$",
"title": "Priority",
"type": "string"
},
"related": {
"default": [],
"description": "List of related document IDs or references",
"items": {
"type": "string"
},
"title": "Related",
"type": "array"
},
"source_type": {
"default": "markdown",
"description": "Type of source content",
"pattern": "^(markdown|code|config|documentation|tutorial)$",
"title": "Source Type",
"type": "string"
},
"summary": {
"default": "",
"description": "Brief summary description of the document content",
"title": "Summary",
"type": "string"
},
"tags": {
"default": [],
"description": "Additional manual tags (will be merged with AI-generated tags)",
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"title": {
"description": "Document title for the knowledge base entry",
"title": "Title",
"type": "string"
},
"use_ai_enhancement": {
"default": true,
"description": "Use AI to generate intelligent tags and key points",
"title": "Use Ai Enhancement",
"type": "boolean"
}
},
"required": [
"title"
],
"type": "object"
}