CLASSEVE
RouteLearn
Learn

Plain answers.

The technology behind our products, explained without the fog — what each thing is, how it actually works, and what to look for. Every page starts with a straight answer.

Terms

What is an AI computer operator?

An AI computer operator is an AI agent that operates a computer on your behalf: you give it an instruction in plain language — spoken or typed — and it works through the steps itself, clicking, typing, and moving between applications, instead of just telling you what to do.

What is a credential firewall for AI agents?

A credential firewall is a security layer between an AI agent and your real secrets. The agent only ever sees dummy keys; a local, deny-by-default proxy swaps in the real credential just before the request leaves — and only for destinations you have allow-listed — while logging every request for audit.

What is on-device transcription?

On-device transcription is speech-to-text that runs entirely on your own hardware: a speech model on your CPU or GPU converts microphone audio into text locally, so the audio is never uploaded to a server. After the model is set up, transcription itself can run without a network connection.

What is an MCP server?

An MCP server is a program that exposes tools and data to AI assistants through the Model Context Protocol (MCP), an open standard for connecting AI applications to external capabilities. The assistant calls the server's tools — search this, fetch that, analyze this — and uses the results in its answer or its work.

What is a code graph?

A code graph is a structured representation of a codebase where functions, types, and modules are nodes, and relationships — calls, imports, dependencies, effects — are edges. Instead of reading files one at a time, a tool or AI agent queries the graph: who calls this, what does it touch, what breaks if it changes.

Can you run an LLM without a GPU?

Yes — language models can run on an ordinary CPU with no GPU at all. The keys are quantization (storing weights in ~4 bits instead of 16, shrinking memory several-fold) and CPU-native code paths such as hand-written AVX2 kernels. The result is private, local inference on everyday laptops — at smaller model sizes and lower speeds than datacenter GPUs.

What is live speech translation?

Live speech translation listens to speech in one language and produces text or speech in another as the conversation happens — near-realtime, not after the fact. Modern implementations pair speech recognition with translation models; the meaningful differences are latency, accuracy, and where your audio is processed.

What is prompt injection?

Prompt injection is an attack where instructions are hidden inside content an AI system reads — a web page, an email, a file — so the model treats the attacker's text as commands. Because language models process instructions and data in the same stream, a fully reliable fix doesn't exist yet; practical defense means limiting what a confused agent can do.

What is a coding agent?

A coding agent is an AI system that works on software the way a developer does: it reads the codebase, plans a change, edits files, runs builds and tests, reads the failures, and iterates until the task is done. Unlike autocomplete, it operates in a loop with tools — the model decides the next action, executes it, and learns from the result.

What is dictation software — and how do you choose it?

Dictation software converts your speech into text and types it into whatever application you're using — documents, chat, email, code. The differences that actually matter when choosing: where the audio is processed (cloud vs on your device), what the software does to your words afterwards (a deterministic clean-up or a generative rewrite), whether usage is limited or metered, which platforms are covered, and whether you pay once, monthly, or eventually own it.