@n8n/n8n-nodes-langchain
Version:
28 lines (27 loc) • 715 B
JSON
{
"type": "object",
"description": "The input item's original fields passed through unchanged, plus the added sentimentAnalysis object",
"required": ["sentimentAnalysis"],
"properties": {
"sentimentAnalysis": {
"type": "object",
"required": ["category"],
"properties": {
"category": {
"type": "string",
"description": "The detected sentiment category, e.g. Positive/Neutral/Negative"
},
"strength": {
"type": "number",
"description": "Present only when detailed results are enabled"
},
"confidence": {
"type": "number",
"description": "Present only when detailed results are enabled"
}
}
}
},
"additionalProperties": true,
"version": 1
}