Documentation Index
Fetch the complete documentation index at: https://docs.reactor.inc/llms.txt
Use this file to discover all available pages before exploring further.

Changed
- Per-second and per-hour pricing in dollars. Model pricing is now displayed as US-dollar rates on the Pricing & Billing page.
New
- Pricing & billing docs. Published Pricing & Billing, covering session pricing, idle vs. active billing, and recoverable-state behavior.
- Beta status callouts. Added a banner across docs and the Overview noting that Reactor is in beta. APIs and pricing may evolve.
New
- Token TTL with
expires_after. Auth tokens now carry anexpires_afterfield so clients can refresh proactively instead of waiting for a 401. See Authentication.
New
- File uploads in the Python SDK.
reactor-sdknow supportsupload_file()returning aFileRefthat can be passed intosend_command(). - File uploads in the JavaScript SDK.
uploadFile()andFileRefare available in@reactor-team/js-sdkfor passing files (images, audio, blobs) as command arguments. - New concept page: File Uploads documents the upload-then-reference pattern in both SDKs.
Breaking
- Token endpoint is now POST. The auth-token endpoint moved from
GETtoPOSTto allow request-body parameters. Update any direct API callers; the SDKs handle this automatically once upgraded.
Breaking
- New SDK protocol. Wire-level protocol overhaul shipped in
@reactor-team/js-sdk2.7 andreactor-sdk0.4. Older SDK versions will no longer connect. Upgrade to the latest release. - Removed
fetchInsecureToken()and JWT helpers. The development-only insecure token helpers were removed; all auth now flows through the standard token endpoint.
Improved
- Maple theme refresh. Docs site updated to Mintlify’s Maple theme with Lucide icons, new codeblock styling, and refreshed colors.
- Navigation split into separate “SDK” and “API Reference” tabs.
Breaking
- API renames in
@reactor-team/js-sdk2.6.0. Several public methods and types were renamed for consistency with the Python SDK. Update import paths and call sites.
New
- Helios launch. Reactor’s first interactive real-time video generation model, built on a 14B-parameter Diffusion Transformer. Produces a continuous infinite stream you can steer with prompts and reference images.
- Helios prompt guide. A dedicated Prompt Guide covering scene composition, transitions, and steering techniques.
Improved
- Renamed “Realtime AI” → “Realtime Video AI” across the docs to better reflect what Reactor does. No API or SDK changes.
New
- Python SDK launched.
reactor-sdkis now available on PyPI, async-first, with parity for sessions, commands, and message handling. See Using the SDK.
Breaking
sendCommand()replacessendMessage(). The command API was renamed to clarify the distinction between commands (client → model) and messages (model → client). Update allsendMessagecall sites. See Commands and messages.- Removed message queueing. Commands now have explicit
waitingstate instead of implicit queueing. Applications can decide whether to drop, replace, or buffer in-flight commands.
Breaking
- JWT auth replaces
insecureApikey. All client connections now require a short-lived JWT minted server-side from your API key. TheinsecureApikeydevelopment flow is removed. - New API Reference section. Published a complete API Reference covering the
Reactorclass, React components, hooks, types, and events.
New
- Reactor docs site launched. Initial release with Overview and Quickstart. Ported from the legacy readme.io site.