set_workspace
Configures the default directory for reading and writing HWPX documents, enabling organized file operations and automatic backups.
Instructions
문서를 읽고 쓸 기본 디렉터리를 설정합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create | No | ||
path | Yes | 워크스페이스 디렉터리 |
Input Schema (JSON Schema)
{
"properties": {
"create": {
"default": true,
"type": "boolean"
},
"path": {
"description": "워크스페이스 디렉터리",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}