analyze_text
Perform detailed morphological analysis of Japanese text to evaluate sentence complexity, part-of-speech distribution, and vocabulary diversity. Analyze input text for linguistic insights.
Instructions
テキストの詳細な形態素解析と言語的特徴の分析を行います。文の複雑さ、品詞の割合、語彙の多様性などを解析します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | 分析するテキスト |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "分析するテキスト",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}