# Glossary

What each word means in a response.

**Shared vocabulary**

```mermaid
graph LR
  c0("Ask")
  c1("Search")
  c2("Workbooks")
  t0(["account"])
  t0 --- c0
  t0 --- c1
  t0 --- c2
  t1(["workbook"])
  t1 --- c0
  t1 --- c2
  classDef cap fill:#fffdf2,stroke:#eeb900,stroke-width:1px,color:#14161a
  classDef term fill:#f2eefd,stroke:#6d28d9,stroke-width:1px,color:#6d28d9
  class c0,c1,c2 cap
  class t0,t1 term
```

## account

One user's balance, plan and status — the thing a charge is made against.

## actor

Whoever a request is acting as: a user, a key, and the scopes that key carries.

## hit

One row the index returned for a query: an entity, its facts, and the score that put it where it is.

## intent

What a query was read as before the index saw it — device targets, formats, size ceilings and kind steers, separated from the subject.

## meter

The running count of what one request cost, charged once when the request finishes.

## rerank

Order a retrieved list with a cross-encoder that reads the query and the candidate together.

## retrieve

Gather candidates from the index for a planned question.

## workbook

An answer packed as something that runs: a notebook, a pinned environment, the model file, an MCP server and a SKILL.md.
