linkedin_sentiment_render_report_html
Render HTML sentiment reports from LinkedIn post data with sentiment badges, engagement stats, and author cards using Jinja2 templates—no LLM needed for fast deterministic output.
Instructions
Renders a polished HTML sentiment report from LinkedIn post data. No LLM required — uses Jinja2 templates for fast, deterministic rendering with sentiment badges, engagement stats, and author cards.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| posts_json | Yes | JSON array of LinkedIn post objects (from the Search LinkedIn Posts action output), or a variable reference like {{linkedin_posts}}. | {{linkedin_posts}} |
| sentiments | No | Optional JSON object mapping postId to sentiment label (e.g. {"postId123": "Positive"}). If omitted, sentiment is auto-classified from post content. | |
| report_title | No | Title displayed at the top of the report. | LinkedIn Post Sentiment Analysis |
| output_variable_name | Yes | Variable name to store the rendered HTML report. | sentiment_report_html |