allexgraph-events
v0.1.0-alpha
Published
Event system for AllexGraph runtime
Readme
AllexGraph Events
Event system package for the AllexGraph AI runtime framework.
Features
- EventBus
- Runtime Events
- Event Constants
- Runtime Observability
Installation
npm install allexgraph-eventsExample
import {
EventBus
} from "allexgraph-events"
const events =
new EventBus()
events.on(
"runtime:start",
() => {
console.log(
"Runtime started"
)
}
)