load_document
Load and validate a Markdown document from a specified file path, with customizable validation strictness levels for accuracy and compliance.
Instructions
Load and analyze a Markdown document from a file path.
Args:
document_path: Path to the Markdown file (supports absolute, relative, and ~ expansion)
validation_level: Validation strictness - "STRICT", "NORMAL", or "PERMISSIVE"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_path | Yes | ||
validation_level | No | NORMAL |
Input Schema (JSON Schema)
{
"properties": {
"document_path": {
"title": "Document Path",
"type": "string"
},
"validation_level": {
"default": "NORMAL",
"title": "Validation Level",
"type": "string"
}
},
"required": [
"document_path"
],
"title": "load_documentArguments",
"type": "object"
}