tiledesk-serverAgent40/100 via “real-time websocket communication with event-driven message broadcasting”
Tiledesk Server is the main API component of the Tiledesk platform 🚀 Tiledesk is an open-source alternative to Voiceflow, allowing you to build advanced LLM-powered agents with easy human-in-the-loop (HITL) when necessary.
Unique: Implements event-driven broadcasting where clients subscribe to specific event channels (request-scoped, agent-scoped) rather than receiving all events, reducing bandwidth and latency; uses Node.js EventEmitter for single-instance deployments with optional RabbitMQ for horizontal scaling
vs others: Lower latency than polling-based REST APIs (no request/response overhead), more selective than broadcast-all systems (channel-based subscriptions), and more scalable than in-memory event emitters (RabbitMQ integration for multi-instance deployments)