analyze_document
Evaluate Markdown file structure and generate insights based on specified validation strictness, ensuring document integrity and correctness.
Instructions
Analyze document structure and provide insights.
Args:
document_path: Path to the Markdown file
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": "analyze_documentArguments",
"type": "object"
}