canUseSaiaBench static method

bool canUseSaiaBench()

Saia benchmark runner (neom_ia_bench).

Admin-only for now. The bench is wired behind this gate so the product owner can dogfood it personally against real providers (Gemini, Claude, GPT, Ollama) before opening it to paying tiers.

To open it up later without touching call sites, extend the body:

static bool canUseSaiaBench() {
  if (isAdmin) return true;
  return isPlatinumOrAbove(); // ← step 1: platinum+
  // return isPremiumOrAbove(); // ← step 2: premium+
  // return true; // ← step 3: public
}

Implementation

static bool canUseSaiaBench() {
  return isAdmin;
}