* One-click style presets surfaced in the bottom-left palette menu of the * follow-up speech bubble. Each entry maps to a detailed natural-language * instruction that is fed directly to the chart restyle agent (bypassing the * intent classifier — we already know this is a style change). * * Lab
| 306 | * background, title alignment, etc.). |
| 307 | */ |
| 308 | interface StylePreset { |
| 309 | key: string; |
| 310 | label: string; |
| 311 | description: string; |
| 312 | instruction: string; |
| 313 | } |
| 314 | |
| 315 | const STYLE_PRESETS: StylePreset[] = [ |
| 316 | { |
nothing calls this directly
no outgoing calls
no test coverage detected