Cohere: Command A
cohere/command-aCommand A is an open-weights 111B parameter model with a 256k context window focused on delivering great performance across agentic, multilingual, and coding use cases. Compared to other leading proprietary...
Доступна через единый OpenAI-совместимый API AI Gateway: подключайтесь через привычный SDK — меняется только base_url и параметр model. Оплата в рублях, контроль расхода и данные в РФ.
Возможности:JSON-режим
Быстрый старт
Первый запрос к cohere/command-a — скопируйте и подставьте свой ключ.
from openai import OpenAI
client = OpenAI(
base_url="https://ai-gatewey.ru/v1",
api_key="sk-aigate-ваш_ключ",
)
resp = client.chat.completions.create(
model="cohere/command-a",
messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)