← Lesson
The Coordination Tax
Joeven
Run
Reset
Python loads on first run
def ready_to_split(spec): need = ["schema", "who_next", "memory_acl", "team_eval", "loop_cap"] missing = [k for k in need if not spec.get(k)] return {"ok": not missing, "missing": missing} thin = {"schema": True, "who_next": False} full = { "schema": True, "who_next": True, "memory_acl": True, "team_eval": True, "loop_cap": True, } print(ready_to_split(thin)) print(ready_to_split(full))
Run to execute this in your browser. Nothing is sent to a server.