World Model Kit
Global state representation of the entire system environment and entities.
0/5 complete
Configuration
World Update Pipeline
Ingest sensor streams800ms
Update entity states1000ms
Update relations700ms
Consistency check500ms
Broadcast updates300ms
Integration Code
import { createWorldModel } from 'agent-tools-kit/world-modeling'
const world = createWorldModel({
representation: 'graph-based',
autoUpdate: true,
})
await world.observe(sensorData)
const state = world.getCurrentState()
console.log('Entities:', state.entities.size)
console.log('Relations:', state.relations.size)