aferiq.start()
Configura tracing pro cloud aferiq em UMA linha. Lê AFERIQ_DSN (ou AFERIQ_API_KEY + AFERIQ_INGEST_URL legacy), registra handler, ativa redação BR PII, e auto-patcheia openai/anthropic se estiverem importados. Idempotente, no-op se config ausente, seguro chamar várias vezes. Para versões antigas/uso avançado, veja também aferiq.init() (mesma assinatura sem auto-patch default).
aferiq.start(
dsn: str | None = None, # default: lê AFERIQ_DSN do env (Sentry-style)
api_key: str | None = None, # legacy: lê AFERIQ_API_KEY se DSN ausente
ingest_url: str | None = None, # legacy: lê AFERIQ_INGEST_URL se DSN ausente
verbose: bool = False, # imprime resumo do setup no boot
) -> bool # True = handler registrado, False = config ausente
# start() chama init() + auto-patch dos SDKs (openai/anthropic) que estão
# importados. Equivalente a init(auto_patch=True). Idempotente.