Skip to main content

Documentation Index

Fetch the complete documentation index at: https://abxbus.archivebox.io/llms.txt

Use this file to discover all available pages before exploring further.

Events are strongly typed and validated in both runtimes. Repository example files:
from typing import Any
from abxbus import BaseEvent

class OrderCreatedEvent(BaseEvent[dict[str, Any]]):
    order_id: str
    customer_id: str
    total_amount: float
  • Python payload validation is powered by Pydantic models.
  • TypeScript payload and result validation is powered by Zod schemas.