rednote_analyze_content
Analyze content for sentiment, keywords, or categories using advanced AI to extract insights from text, supporting decision-making and content strategy.
Instructions
分析内容
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysis_type | No | 分析类型 | all |
content | Yes | 内容文本 |
Input Schema (JSON Schema)
{
"properties": {
"analysis_type": {
"default": "all",
"description": "分析类型",
"enum": [
"sentiment",
"keywords",
"category",
"all"
],
"type": "string"
},
"content": {
"description": "内容文本",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}