Vraelis
Vraelis
The AI workshop for makers
ProductLearnPricingContact
for builders

What ships, what's next, and what to integrate against.

The technical view of every Vraelis surface. Status, version, what it depends on, and how the API exposes it. For the consumer walkthrough, see the home page.

Open Platform→Jump to API

Surfaces

LIVEBETAALPHACONCEPTR&D
Surface
Category
Status
Depends on
Workshopv0.1.15
Chat, projects, files, memory, voice. Web only.
Workspace
LIVE
Chat APIMemory APIFiles APIMCP runtime
open →
Copilot (desktop)
Floating bar, hotkey, screen-aware. Not yet publicly available.
Actions
ALPHA
Workshop sessionTool use APIScreen capture
open →
Whisper
Voice in / voice out, sub-200ms target. Browser + desktop.
Voice
BETA
WebRTCSTT (whisper-large-v3)TTS
open →
Memory
Persistent facts and preferences scoped per project.
Workspace
BETA
Memory APIVector store
open →
Platform
API keys, request inspector, usage dashboard, webhooks.
Developer
ALPHA
Chat APIMCP registryWebhooks
open →
Lens
Transparent contact lens. Three render modes, off-board compute.
Optics
CONCEPT
Workshop bridgeRender protocolOptical stack
open →
Lens Day Kit
Charges two Lens pairs and the Whisper earbuds in one case.
Hardware
CONCEPT
Lens pairingWhisper hardware
open →
Whisper hardware
VRAELIS-built earbud, lives in the Day Kit case.
Hardware
R&D
Whisper protocolLens Day Kit
open →
API

OpenAI-compatible chat, plus the parts that aren't OpenAI.

Drop-in replacement for the OpenAI SDK. Chat, streaming, tool use, function calling — same shape. Beyond that: project-scoped memory, file uploads, voice in / out, and an MCP runtime that picks up any server you point at it.

POST
/v1/chat/completions
Streaming chat with tool use. OpenAI-compatible.
ALPHA
POST
/v1/projects
Create a project (scopes memory + files).
ALPHA
GET
/v1/projects/{id}/memory
List facts the model has stored.
ALPHA
POST
/v1/projects/{id}/files
Upload a file referenced by chat.
ALPHA
POST
/v1/voice/transcribe
Streaming STT, sub-200ms first-word target.
BETA
POST
/v1/voice/speak
Streaming TTS, interruptable.
BETA
POST
/v1/mcp/servers
Register an MCP server with your project.
ALPHA
POST
/v1/webhooks
Subscribe to events (HMAC-signed delivery).
ALPHA
POST
/v1/lens/render
Push a render frame to a paired Lens session.
CONCEPT
SDK

TypeScript / Python, identical surface

import Vraelis from "@vraelis/sdk";

const sx = new Vraelis({ apiKey: process.env.VRAELIS_API_KEY });

const stream = await sx.chat.completions.create({
  model: "vraelis-1",
  project: "proj_5g7",
  stream: true,
  messages: [{ role: "user", content: "summarize my open PRs" }],
  tools: [{ type: "mcp", server: "github" }],
});

for await (const chunk of stream) {
  process.stdout.write(chunk.delta.text ?? "");
}
Bearer-token auth. Per-project keys with spend caps and rate limits set in the Platform console. Streaming uses SSE; the Python SDK exposes the same async iterator shape.
Integrations

First-party connectors and any MCP server.

First-party connectors handle auth + rate limiting for the tools we ship. Anything else, point at an MCP server and the runtime picks it up automatically.

GitHub
BETA
FIRST-PARTY
Notion
BETA
FIRST-PARTY
Linear
ALPHA
FIRST-PARTY
Slack
ALPHA
FIRST-PARTY
Gmail
ALPHA
FIRST-PARTY
Figma
CONCEPT
FIRST-PARTY
Stripe
CONCEPT
FIRST-PARTY
Filesystem
LIVE
VIA MCP
Postgres
LIVE
VIA MCP
Custom MCP
LIVE
VIA MCP
Webhooks
Subscribe to anything that happens.

Completion finished, tool call invoked, key spend exceeded, project usage cap hit. HMAC-signed delivery, configurable retry, per-project endpoints.

Audit log
Every Copilot action, replayable.

What tool, what input, what output, what time. Replayable from the audit page. Most write actions are reversible for 24 hours.

Console
Keys, usage, rate limits.

Per-project keys with spend caps, request rate limits, expiry dates. Real-time tail of every request the model is handling for you.

Build on it before it ships everywhere.

The Platform is alpha. API surface is stable enough to integrate against; behavior may shift before v1. Get a key and start.

Get an API key→See the consumer story
VraelisVraelis

The adaptive AI platform. One AI, infinite shapes, a contextual interface that reshapes itself around how you actually work.

Product
ProductLearnPricingDownload
Account
DashboardDownloadUpdatesIntegrationsUsage
Company
PrivacyTermsContact
Community
Discord
© 2026 Vraelis. All rights reserved.