canUseSaiaOffline static method

bool canUseSaiaOffline()

Saia offline mode with local Ollama models.

Intentionally not gated by subscription tier. Offline sovereignty is a core product differentiator and should be available to everyone. Only the global kill-switch and admin bypass apply.

Implementation

static bool canUseSaiaOffline() {
  if (isAdmin) return true;
  return earlyAccessEnabled;
}