Strips saliency thresholds, window counters, signal generation, and route filtering from all perception event definitions and EventRegistry. Events now emit raw data directly via onRawEvent callback without conscious/reflex/debug routing or threshold-based filtering. Removes WindowCounter, SaliencySnapshot, and related timer/slot logic.
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
// Re-export public API
|
|
export { DebugService } from './debug-service'
|
|
export { DebugServer } from './server'
|
|
export type {
|
|
BlackboardEvent,
|
|
ClientCommand,
|
|
DebugMessage,
|
|
LLMTraceEvent,
|
|
LogEvent,
|
|
QueueEvent,
|
|
ServerEvent,
|
|
} from './types'
|