Exclude AgentExecutorBlock from builder blocks

This commit is contained in:
Krzysztof Czerwinski
2026-01-27 18:59:57 +09:00
parent a733dd5b4b
commit 1ea47eacbd

View File

@@ -120,6 +120,9 @@ def get_blocks(
# Skip disabled blocks
if block.disabled:
continue
# Skip excluded blocks
if block.id in EXCLUDED_BLOCK_IDS:
continue
# Skip blocks that don't match the category
if category and category not in {c.name.lower() for c in block.categories}:
continue