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

# Embeddings

> NE-Embed weights are live. HTTP on the licensed image.

<Info>Status: **Live** as [NE-Embed](https://huggingface.co/MWirelabs/ne-embed). HTTP `POST /v1/embeddings` ships on the licensed image, on request.</Info>

Open weights: `MWirelabs/ne-embed` (CC-BY-4.0). Used by NE-Agent. Not a substitute for Lemka speech.

```
POST https://<HOST>/v1/embeddings
```

### Auth

```
Authorization: Bearer <API_KEY>
```

### Request body

| Field      | Type                | Required | Description    |
| ---------- | ------------------- | -------- | -------------- |
| `input`    | string or string\[] | Yes      | Text to embed. |
| `language` | string              | No       | Language hint. |

### Response

```json theme={null}
{
  "embeddings": [[0.01, 0.02]],
  "request_id": "req_8f2a1c"
}
```
