Skip to content

Commit 05db13a

Browse files
Adds docs for launch of North Small Translate (#810)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent c26cd7f commit 05db13a

7 files changed

Lines changed: 264 additions & 1 deletion

File tree

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: Announcing Cohere's North Small Translate
3+
slug: "changelog/north-small-translate-1-0"
4+
createdAt: "Wed Sep 09 2026 09:00:00 (MST)"
5+
hidden: false
6+
description: >-
7+
This announcement covers the release of North Small Translate, Cohere's open-weights machine translation model.
8+
---
9+
10+
We're pleased to announce the release of
11+
[North Small Translate](/docs/north-small-translate-1.0), an open-weights mixture-of-experts model purpose-built
12+
for machine translation across more than 50 languages.
13+
14+
North Small Translate is designed to give researchers, developers, and enterprises flexible ways to evaluate and
15+
deploy machine translation while retaining control over their data and infrastructure.
16+
17+
## Key features
18+
19+
- **Purpose-built translation**: Optimized for machine translation across more than 50 languages and locale
20+
variants.
21+
- **Efficient MoE architecture**: 218 billion total parameters with 25 billion active parameters.
22+
- **Flexible deployment**: Available through the free-tier Chat V2 API, as FP8 open weights for non-commercial
23+
use, and through Model Vault with a commercial license.
24+
- **Private deployment**: Suggested deployment hardware is two H100 GPUs or one B200 GPU.
25+
26+
## Technical details
27+
28+
- **Model name**: `north-small-translate-1-0`
29+
- **Context length**: 16K
30+
- **License**:
31+
[Creative Commons Attribution-NonCommercial 4.0](https://creativecommons.org/licenses/by-nc/4.0/)
32+
- **Open-weights format**: FP8
33+
34+
## Availability
35+
36+
North Small Translate is available on the free tier through the [Chat V2 API](/reference/chat). The
37+
[FP8 weights](https://huggingface.co/CohereLabs/North-Small-Translate-1.0-fp8) are available on Hugging Face
38+
for non-commercial use under the CC BY-NC 4.0 license.
39+
40+
For production use, enterprises can purchase a commercial license and deploy North Small Translate through
41+
[Model Vault](/docs/model-vault).
42+
43+
For supported languages, use cases, and an API example, see the
44+
[model documentation](/docs/north-small-translate-1.0).

fern/pages/model-vault/standard/pricing.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ rates are per instance, per hour.
5252
| Command A Reasoning | $48.00 | $57.50 |
5353
| Command A+ | -- | $57.50 |
5454
| North Mini Code | -- | $57.50 |
55+
| North Small Translate | -- | $57.50 |
5556

5657
Monthly and annual commitment pricing follows the same Fixed and Flex plans described above;
5758
[contact Cohere](https://cohere.com/contact-sales) for those rates and for access. Generative access

fern/pages/model-vault/standard/supported-models.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following Cohere model families are available in a Standard Vault. For the d
1313
| Model family | Type |
1414
| --- | --- |
1515
| Command | Generative, including reasoning, multimodal, and translation variants |
16-
| North | Generative and agentic bundles, including North Mini Code |
16+
| North | Generative models, including North Mini Code and North Small Translate |
1717
| Embed | Embeddings |
1818
| Rerank | Reranker |
1919
| Parse | Vision parser |

fern/pages/models/models.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ are.
5151
generative AI. Aya Expanse covers 23 languages, and Aya Vision is fully multimodal, allowing you to pass
5252
in images and text and get a single coherent response. Both are available on the [Chat](../reference/chat)
5353
endpoint.
54+
- The North family includes purpose-built models such as
55+
[North Small Translate](north-small-translate-1.0) for machine translation and
56+
[North Mini Code](north-mini-code-1.0) for agentic coding. Both are available through the
57+
[Chat](../reference/chat) endpoint and support production deployment through Model Vault.
5458

5559
## Command
5660

@@ -91,6 +95,16 @@ In this table, we provide some important context for using Cohere Command models
9195
| `command-light` | `cohere.command-light-text-v14` | N/A | N/A | `cohere.command-light v15.6` |
9296
| `command-light-nightly` | N/A | N/A | N/A | N/A |
9397

98+
## North
99+
100+
North is Cohere's family of purpose-built generative models. North models are available on the Cohere API for
101+
evaluation and through [Model Vault](../../v2/docs/model-vault) for production deployment.
102+
103+
| Model Name | Status | Description | Modality | Context Length | Maximum Output Tokens | Endpoints |
104+
| --- | --- | --- | --- | --- | --- | --- |
105+
| `north-small-translate-1-0` | Live | [North Small Translate](north-small-translate-1.0) is a 218B total / 25B active parameter MoE model purpose-built for machine translation across more than 50 languages. | Text | 16k | 16k | [Chat](../reference/chat) |
106+
| `north-mini-code-1-0` | Live | [North Mini Code](north-mini-code-1.0) is a 30B total / 3B active parameter MoE model trained for agentic coding. | Text | 256k | 64k | [Chat](../reference/chat) |
107+
94108
## Embed
95109

96110
These models can be used to generate embeddings from text or classify it based on various parameters. Embeddings can be used for estimating semantic similarity between two sentences, choosing a sentence which is most likely to follow another sentence, or categorizing user feedback. The Representation model comes with a variety of helper functions, such as for detecting the language of an input.
Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
---
2+
title: North Small Translate
3+
slug: docs/north-small-translate-1.0
4+
hidden: false
5+
description: >-
6+
North Small Translate is a 218B total / 25B active parameter MoE model purpose-built for machine translation across more than 50 languages.
7+
image: ../../../assets/images/edb3e49-cohere_meta_image.jpg
8+
keywords: 'generative AI, Cohere, North, machine translation, multilingual AI'
9+
createdAt: 'Wed Sep 9th 2026'
10+
updatedAt: ''
11+
layout: overview
12+
---
13+
14+
import { ModelShowcase, Capability, Endpoint} from "../../../components/model-showcase"
15+
16+
<ModelShowcase model={{
17+
name: 'North Small Translate',
18+
id: 'north-small-translate-1-0',
19+
capabilities: [
20+
Capability.Multilingual,
21+
],
22+
specs: {
23+
contextWindow: '16K',
24+
maxOutputTokens: '16K',
25+
customSpecs: [
26+
{ name: 'Model Size', value: '218B total / 25B active' },
27+
{ name: 'Suggested Hardware', value: '2 × H100 or 1 × B200' },
28+
],
29+
},
30+
endpoints: [
31+
Endpoint.ChatV2,
32+
],
33+
usageMessage: <p>North Small Translate can be used in production with a commercial license through Cohere's <a href="../../v2/docs/model-vault" target="_blank" rel="noopener noreferrer">Model Vault</a>.</p>
34+
}}/>
35+
36+
## Description
37+
38+
North Small Translate is an open-weights mixture-of-experts (MoE) model purpose-built for machine translation.
39+
It has 218 billion total parameters, with 25 billion active parameters, and a 16K context length.
40+
41+
The model provides flexible deployment options for research and enterprise use. Its FP8 weights are available
42+
under the [Creative Commons Attribution-NonCommercial 4.0 license](https://creativecommons.org/licenses/by-nc/4.0/)
43+
for non-commercial use. Enterprises can purchase a commercial license and deploy the model through
44+
[Model Vault](../../v2/docs/model-vault).
45+
46+
## What can North Small Translate be used for?
47+
48+
North Small Translate is well-suited for:
49+
50+
- **Knowledge management**: Translate internal documentation, wikis, standard operating procedures, technical
51+
manuals, historical reports, and institutional knowledge.
52+
- **Safety and operations**: Translate safety manuals, emergency procedures, maintenance instructions,
53+
manufacturing procedures, incident reports, field-service documentation, and operational alerts.
54+
- **Internal communication**: Translate company announcements, leadership communications, HR policies,
55+
employee handbooks, benefits information, onboarding materials, newsletters, and intranet content.
56+
- **Localization and customer support**: Translate product content and customer communications while retaining
57+
control over where the model and data are hosted.
58+
59+
## Supported languages
60+
61+
North Small Translate supports English and more than 50 language and locale variants. Its tier-one languages are
62+
Modern Standard Arabic, German, French, Japanese, Korean, Russian, and Ukrainian.
63+
64+
<Accordion title="European languages">
65+
66+
- Bulgarian
67+
- Croatian
68+
- Czech
69+
- Danish
70+
- Dutch
71+
- Estonian
72+
- Finnish
73+
- French
74+
- German
75+
- Greek
76+
- Hungarian
77+
- Irish
78+
- Italian
79+
- Latvian
80+
- Lithuanian
81+
- Maltese
82+
- Polish
83+
- Portuguese (Portugal)
84+
- Romanian
85+
- Slovak
86+
- Slovenian
87+
- Spanish
88+
- Swedish
89+
90+
</Accordion>
91+
92+
<Accordion title="All supported languages and locale variants">
93+
94+
- Albanian
95+
- Arabic (Egyptian)
96+
- Arabic (Modern Standard)
97+
- Arabic (Saudi)
98+
- Bengali
99+
- Bulgarian
100+
- Catalan
101+
- Chinese (Simplified)
102+
- Chinese (Traditional)
103+
- Croatian
104+
- Czech
105+
- Danish
106+
- Dutch
107+
- English
108+
- Estonian
109+
- Filipino
110+
- Finnish
111+
- French
112+
- German
113+
- Greek
114+
- Hebrew
115+
- Hindi
116+
- Hungarian
117+
- Icelandic
118+
- Indonesian
119+
- Irish
120+
- Italian
121+
- Japanese
122+
- Korean
123+
- Latvian
124+
- Lithuanian
125+
- Malay
126+
- Maltese
127+
- Norwegian Bokmål
128+
- Persian
129+
- Polish
130+
- Portuguese (Portugal)
131+
- Punjabi
132+
- Romanian
133+
- Russian
134+
- Serbian (Cyrillic)
135+
- Slovak
136+
- Slovenian
137+
- Spanish
138+
- Swedish
139+
- Tamil
140+
- Telugu
141+
- Thai
142+
- Turkish
143+
- Ukrainian
144+
- Urdu
145+
- Vietnamese
146+
147+
</Accordion>
148+
149+
## Getting started
150+
151+
North Small Translate is available on the free tier through the [Chat V2 API](/reference/chat). Ask the model to
152+
translate the supplied content into a target language:
153+
154+
```python PYTHON
155+
from cohere import ClientV2
156+
157+
co = ClientV2(api_key="<YOUR_API_KEY>")
158+
159+
target_language = "French"
160+
content = "Enterprises need accurate translations of business-critical documents."
161+
162+
response = co.chat(
163+
model="north-small-translate-1-0",
164+
messages=[
165+
{
166+
"role": "user",
167+
"content": f"Translate everything that follows into {target_language}:\n\n{content}",
168+
}
169+
],
170+
)
171+
172+
print(response.message.content[0].text)
173+
```
174+
175+
## Deployment and licensing
176+
177+
- **Cohere API**: Try the model on the free tier through the Chat V2 API.
178+
- **Open weights**: Download the
179+
[FP8 model from Hugging Face](https://huggingface.co/CohereLabs/North-Small-Translate-1.0-fp8) for
180+
non-commercial use under the CC BY-NC 4.0 license.
181+
- **Commercial deployment**: Use a commercially licensed deployment through [Model Vault](../../v2/docs/model-vault).
182+
The suggested hardware is two H100 GPUs or one B200 GPU.
183+
184+
## Frequently asked questions
185+
186+
### What is machine translation?
187+
188+
Machine translation uses software to convert text from one language into another. A purpose-built generative model
189+
can act as the translation engine in an application, workflow, or translation platform.
190+
191+
### Why use a machine translation model?
192+
193+
A model gives developers control over integration, prompting, deployment, data residency, and customization.
194+
Self-hosted and private deployments can also support sovereignty requirements and reduce dependence on a fixed
195+
translation platform.
196+
197+
### When is a translation platform a better fit?
198+
199+
A translation platform wraps a model with features such as collaboration, content management, project management,
200+
and formatting. Use a platform when those workflow features are more important than direct control over the model.

fern/v1.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ navigation:
142142
path: pages/models/cohere-embed.mdx
143143
- section: North
144144
contents:
145+
- page: North Small Translate
146+
path: pages/models/north/north-small-translate-1.0.mdx
145147
- page: North Mini Code
146148
path: pages/models/north/north-mini-code-1.0.mdx
147149
- page: Rerank

fern/v2.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ navigation:
159159
path: pages/models/cohere-embed.mdx
160160
- section: North
161161
contents:
162+
- page: North Small Translate
163+
path: pages/models/north/north-small-translate-1.0.mdx
162164
- page: North Mini Code
163165
path: pages/models/north/north-mini-code-1.0.mdx
164166
- page: Rerank

0 commit comments

Comments
 (0)