{% set nodes = [
('🔒','Input Sanitizer','safety'),
('🧠','Planner Agent','agent'),
('💻','Coder Agent','agent'),
('✅','Validator','agent'),
('📋','Audit Logger','gov'),
] %}
{% for icon, label, kind in nodes %}
{% set colors = {'safety':'#431407:#fb923c','agent':'#0f1e3d:#7ab3f0','gov':'#1a1a2e:#a5b4fc'} %}
{% set bg, fg = colors[kind].split(':') %}
{{icon}}
{{label}}
{% if not loop.last %}
→
{% endif %}
{% endfor %}
→
📦
Generated Code
Describe your coding task
Try:
{% set examples = [
'Write a binary search tree with insert, delete, and traversal',
'Build a Python decorator that retries on exception with backoff',
'Implement an LRU cache using OrderedDict',
'Write a CSV parser that handles quoted fields and escaped commas',
] %}
{% for ex in examples %}
{% endfor %}