Live Construction Data

See live project data and real-time changes as they happen

Connection Control

Not connected

Demo Scenarios

Select a demo scenario to see real-time updates in action:

Resource Utilization

Monitor resource allocations in real-time

Critical Path Analysis

Watch critical path calculation progress

Fragnet Generation

See schedule fragments built in real-time

Custom Events

Send custom events to the channel:

Progress Visualization

No demo running 0%
Select a demo to start

Event Log

Integration with External Tools

API Integration Available

This Construction Intelligence server supports API integration for external AI systems and tools. Connect to this Server-Sent Events (SSE) endpoint:

/api/events/[channel_name]
Example Integration:
// JavaScript example
const eventSource = new EventSource('/api/events/system?client_id=YOUR_CLIENT_ID');

eventSource.addEventListener('update', function(event) {
  const data = JSON.parse(event.data);
  console.log('Received update:', data);
});

// Python example
import requests
import json
import sseclient

def listen_for_events():
    response = requests.get('/api/events/system?client_id=YOUR_CLIENT_ID', 
                          stream=True)
    client = sseclient.SSEClient(response)
    for event in client.events():
        data = json.loads(event.data)
        print('Received update:', data)
}