it's free*.ai

Cohere

Cohere의 Command 모델은 RAG를 위해 만들어졌습니다: 키 하나로 임베딩·리랭크·장문 채팅을 처리합니다. 체험 키는 만료되지 않고 카드도 필요 없지만, 라이선스는 프로토타입용이지 프로덕션이 아닙니다.

Cohere의 Command 모델은 RAG를 위해 만들어졌습니다: 키 하나로 임베딩·리랭크·장문 채팅을 처리합니다. 체험 키는 만료되지 않고 카드도 필요 없지만, 라이선스는 프로토타입용이지 프로덕션이 아닙니다.

월 1,000요청, 분당 20회이며 Command A(command-a-03-2025)는 256K 컨텍스트에 닿습니다. Command A+는 command-a-plus-05-2026입니다. OpenAI 형태의 경로는 /compatibility/v1이고 Cohere 자체 API는 /v2에 있습니다.

무료 모델
12
최대 컨텍스트
256K
무료 요금제
월 1,000요청
요구사항
이메일만, 카드 불필요

엔드포인트

기본 URLhttps://api.cohere.com/compatibility/v1
환경 변수COHERE_API_KEY
속도 제한20 requests/minute, 1,000 requests/month

코드 예시

npm install openai
import OpenAI from 'openai'

const client = new OpenAI({
  baseURL: 'https://api.cohere.com/compatibility/v1',
  apiKey: process.env.COHERE_API_KEY
})

const response = await client.chat.completions.create({
  model: 'command-a-03-2025',
  messages: [{ role: 'user', content: 'Explain closures in one paragraph.' }]
})

console.log(response.choices[0].message.content)

알아두면 좋은 점

무료로 받는 모델12