Stream
Sub-15ms intent events over WebSocket or SSE.
Everything you need to route intent into your own models and products. Typed SDKs, a streaming API and a quickstart that runs in five minutes.
The ring decodes intent on-device and emits an abstracted event: a short text, a confidence score and a privacy scope. Your app never sees raw neural signal.
Sub-15ms intent events over WebSocket or SSE.
Send intents to any model, local or hosted.
Return a response and Cortex renders it as thought.
@cortex/sdkWeb, Node, EdgeCortexKitiOS, visionOS, macOScortex-sdkResearch and pipelines1$ npm i @cortex/sdk2$ npx cortex pair // pairs the ring on your temple
/v1/intentsStream intents from a paired ring in real time./v1/intents/:id/resolveAttach a model response to an intent./v1/ringsList rings paired with the current account./v1/sessionsOpen a thought session with privacy scope.1import { Cortex } from '@cortex/sdk'23const ring = await Cortex.connect({ scope: 'private' })45ring.on('intent', async (thought) => {6 const answer = await model.run(thought.text)7 await thought.resolve(answer)8})