Inline Visualizer: Local AI Models Can Now Render Interactive HTML Visualizations

Inline Visualizer is a plugin for Open WebUI that gives local AI models the ability to render interactive HTML/SVG visualizations directly in chat, with two-way communication between visual elements and the AI model.
What It Does
The plugin provides models with a design system and rendering tool. Models write HTML/SVG fragments, which the tool wraps in a themed shell with dark mode support, rendering them inline in chat. A JavaScript bridge allows elements inside visualizations to send messages back to the chat interface.
Key Features
- Works with any model that supports tool calling: Qwen, Mistral, Gemma, DeepSeek, Gemini, Claude, GPT
- BSD-3 licensed - fork, modify, use as you want
- No iframes-within-iframes, no external services, no API keys required
- Interactive elements can send messages back to the AI model
Example Use Cases
- Architecture diagrams where clicking a node asks the AI about that component
- Chart.js dashboards with proper dark/light mode theming
- Interactive quizzes where the AI grades your answers
- Preference forms that collect choices and send them to the model
- Explainers with expandable sections and hover effects
- Literally any HTML/SVG/JS the model can write
Requirements
- Open WebUI (self-hosted)
- Any model with tool calling support
- Less than 1 minute to paste two files and follow installation setup
Performance Considerations
The creator notes that performance depends on your model's tokens per second (TPS). With single digit TPS, you might wait about a minute for rendered artifacts to appear. The demo uses Claude Haiku for speed, but the tool has been tested with Qwen3.5 27b (slower but functional).
Installation
The plugin (tool + skill) is available at https://github.com/Classic298/open-webui-plugins. Installation tutorial is in the plugin's folder README.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Jake Benchmark v1: Local LLM Performance Testing for OpenClaw AI Agents
A developer tested 7 local LLMs as AI agents with OpenClaw using 22 practical tasks including email processing, meeting scheduling, and phishing detection. Results ranged from 59.4% for Qwen 27B to 1.6% for Nemotron 30B, with detailed conversation logs available.

Astryx: Meta's Open Source Design System with 150+ Components, Customizable and AI-Agent Ready
Meta's Astryx design system is now open source, featuring 150+ React/StyleX components, CLI scaffolding, MCP support, and 13,000+ apps already using it internally. Currently in beta.

Commitment Issues: A Tool That Analyzes and 'Buries' Unfinished GitHub Repos
A developer built a tool called Commitment Issues that analyzes GitHub repositories to determine if they're abandoned, generates a 'death certificate,' and extracts the final commit message as 'last words.' The tool uses heuristics like commit frequency, last activity, and stars vs momentum, and was prototyped using Claude.

Local dashboard tracks Claude Code usage with token costs, tool calls, and session analytics
A developer built a local dashboard that reads Claude Code's JSONL session files to visualize token usage, estimated costs, tool call breakdowns, and session history. The tool runs entirely on your machine with an Express API and React dashboard.