Skip to main content
Reactor makes working with, and using Realtime AI a breeze. Build powerful Realtime AI applications in only minutes, and scale them globally leveraging our world-class GPU cloud. Our SDKs and platform are built for application developers: Reactor comes with all the tools you need to write revolutionary Realtime AI applications, but without the overhead of having to maintain a Realtime AI streaming stack of your own.

Example Usage

// Initialize the Reactor client
const reactor = new Reactor({
  insecureApiKey: process.env.REACTOR_API_KEY,
  modelName: "matrix-2",
});

// Connect
await reactor.connect();

// Move forward while looking up
await reactor.sendMessage({
  type: "control",
  data: {
    keyboard_key: "W",
    mouse_key: "I"
  }
});
I