create_document
Create new HWPX documents with customizable file names, titles, and authors for Korean document processing needs.
Instructions
새 HWPX 문서를 생성하고 선택적으로 제목/작성자를 지정합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | ||
name | Yes | 생성할 파일 이름 | |
overwrite | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"type": "string"
},
"name": {
"description": "생성할 파일 이름",
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"title": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}