mokshak's picture
Deploy Vera deterministic bot
aec2fdf verified
raw
history blame contribute delete
342 Bytes
from __future__ import annotations
from app.composer import compose as _compose
def compose(category: dict, merchant: dict, trigger: dict, customer: dict | None = None) -> dict:
"""Offline challenge contract: deterministic compose(category, merchant, trigger, customer?)."""
return _compose(category, merchant, trigger, customer)