Merge branch 'KIN-UI-020-backend_dev'

This commit is contained in:
Gros Frumos 2026-03-18 21:45:11 +02:00
commit 487aee0055

View file

@ -11,10 +11,10 @@ from datetime import datetime
from typing import Any
VALID_TASK_STATUSES = [
VALID_TASK_STATUSES = frozenset({
"pending", "in_progress", "review", "done",
"blocked", "decomposed", "cancelled", "revising",
]
})
VALID_COMPLETION_MODES = {"auto_complete", "review"}