You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for rendering diagrams from text definitions inside fenced code blocks, complementing the existing chart blocks (which handle data visualization).
Motivation
Research talks frequently need structural/flow diagrams — model architectures, training pipelines, system diagrams, timelines. Currently these require external image files. Text-based diagrams would be git-friendly, agent-drivable, and consistent with Colloquium's markdown-native philosophy.
Proposed syntax
graph LR
A[Training Data] --> B[SFT]
B --> C[Reward Model]
C --> D[RLHF]
D --> E[Aligned Model]
Loading
Options
Mermaid.js — most popular, broad diagram type support (flowcharts, sequence, Gantt, state, mindmap, quadrant). Single JS file, CDN-loadable. Already used by GitHub markdown rendering.
Summary
Add support for rendering diagrams from text definitions inside fenced code blocks, complementing the existing chart blocks (which handle data visualization).
Motivation
Research talks frequently need structural/flow diagrams — model architectures, training pipelines, system diagrams, timelines. Currently these require external image files. Text-based diagrams would be git-friendly, agent-drivable, and consistent with Colloquium's markdown-native philosophy.
Proposed syntax
graph LR A[Training Data] --> B[SFT] B --> C[Reward Model] C --> D[RLHF] D --> E[Aligned Model]Options
Use cases for research talks
Implementation notes