For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DASHBOARDPLAYGROUNDDOCSCOMMUNITYLOG IN
Guides and conceptsAPI ReferenceRelease NotesLLMUCookbooks
Guides and conceptsAPI ReferenceRelease NotesLLMUCookbooks
LogoLogodocs
DASHBOARDPLAYGROUNDDOCSCOMMUNITYLOG IN

Release Notes

August 28, 2025
August 28, 2025
Was this page helpful?
Edit this page
Previous

Announcing Cohere's Command A Reasoning Model

Next
Built with

Announcing Cohere's Command A Translate Model

We’re excited to announce the release of Command A Translate, Cohere’s first machine translation model. It achieves state-of-the-art performance at producing accurate, fluent translations across 23 languages.

Key Features

  • 23 supported languages: English, French, Spanish, Italian, German, Portuguese, Japanese, Korean, Chinese, Arabic, Russian, Polish, Turkish, Vietnamese, Dutch, Czech, Indonesian, Ukrainian, Romanian, Greek, Hindi, Hebrew, and Persian
  • 111 billion parameters for superior translation quality
  • 16K token context length (8K input + 8K output) for handling longer texts
  • Optimized for deployment on 1-2 GPUs (A100s/H100s)
  • Secure deployment options for sensitive data translation

Getting Started

The model is available immediately through Cohere’s Chat API endpoint. You can start translating text with simple prompts or integrate it programmatically into your applications.

1from cohere import ClientV2
2
3co = ClientV2(api_key="<YOUR API KEY>")
4
5response = co.chat(
6 model="command-a-translate-08-2025",
7 messages=[
8 {
9 "role": "user",
10 "content": "Translate this text to Spanish: Hello, how are you?",
11 }
12 ],
13)

Availability

Command A Translate (command-a-translate-08-2025) is now available for all Cohere users through our standard API endpoints. For enterprise customers, private deployment options are available to ensure maximum security and control over your translation workflows.

For more detailed information about Command A Translate, including technical specifications and implementation examples, visit our model documentation.