analyze_file
Analyze Japanese text files for detailed morphological and linguistic features, including sentence complexity, part-of-speech distribution, and vocabulary diversity.
Instructions
ファイルの詳細な形態素解析と言語的特徴の分析を行います。文の複雑さ、品詞の割合、語彙の多様性などを解析します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 分析するファイルのパス(Windows形式かWSL/Linux形式の絶対パスを推奨) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "分析するファイルのパス(Windows形式かWSL/Linux形式の絶対パスを推奨)",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}