briefcase-python 2.4.1

Python bindings for Briefcase AI
Documentation
"""
Central event emission helpers.

emit() dispatches a BriefcaseEvent to all configured sinks
(webhook + event_bus) according to BriefcaseConfig.

Helper factories:
  emit_low_confidence(decision, confidence, threshold)
  emit_drift_detected(decision, details)
"""

from __future__ import annotations

import asyncio
from typing import Any, Dict, Optional

from briefcase.config import BriefcaseConfig
from briefcase.events.types import BriefcaseEvent


async def emit(event: BriefcaseEvent) -> None:
    """Dispatch *event* to webhook and/or event_bus if configured."""
    config = BriefcaseConfig.get()

    # --- Webhook ---
    if config.webhook_url:
        from briefcase.events.webhook import WebhookEmitter

        emitter = WebhookEmitter(
            url=config.webhook_url,
            secret=config.webhook_secret or "",
            subscribed_events=config.subscribed_events or [],
        )
        await emitter.emit(event)

    # --- Event bus (e.g. KafkaPublisher) ---
    if config.event_bus is not None:
        bus = config.event_bus
        if asyncio.iscoroutinefunction(getattr(bus, "emit", None)):
            await bus.emit(event)
        elif hasattr(bus, "publish"):
            publish = bus.publish
            if asyncio.iscoroutinefunction(publish):
                await publish(event)
            else:
                publish(event)


async def emit_low_confidence(
    decision: Any,
    confidence: float,
    threshold: float,
) -> None:
    """Emit a 'decision.low_confidence' event."""
    decision_id = (
        getattr(decision, "decision_id", None)
        or getattr(decision, "id", None)
        or ""
    )
    event = BriefcaseEvent(
        event_type="decision.low_confidence",
        decision_id=str(decision_id),
        payload={
            "confidence": confidence,
            "threshold": threshold,
        },
    )
    await emit(event)


async def emit_drift_detected(
    decision: Any,
    details: Optional[Dict[str, Any]] = None,
) -> None:
    """Emit a 'drift.detected' event."""
    decision_id = (
        getattr(decision, "decision_id", None)
        or getattr(decision, "id", None)
        or ""
    )
    event = BriefcaseEvent(
        event_type="drift.detected",
        decision_id=str(decision_id),
        payload=details or {},
    )
    await emit(event)